月结客户出货统计调整

This commit is contained in:
wuteng 2025-11-12 10:23:11 +08:00
parent 3981bd821c
commit 652b53e704
2 changed files with 16 additions and 5 deletions

View File

@ -339,8 +339,10 @@ export default {
},
created() {
// console.log("====>queryParams====>",this.$route.query.query);
this.queryParams =JSON.parse(this.$route.query.query);
this.getList();
if(this.$route.query.query){
this.queryParams =JSON.parse(this.$route.query.query);
this.getList();
}
},
methods: {
/** 查询结算总账单列表 */

View File

@ -97,7 +97,7 @@
<el-table-column :label="$t('陆运')" align="center" prop="land" width="100" >
<el-table-column :label="$t('票数')" align="center" prop="landTickets" min-width="120" >
<template slot-scope="scope">
<span @click="handleShowBillList(scope.row,3)">{{ scope.row.landTickets }}</span>
<span @click="handleShowBillList(scope.row,'3,5')">{{ scope.row.landTickets }}</span>
</template>
</el-table-column>
<el-table-column :label="$t('实际重量')" align="center" prop="landWeight" min-width="120" />
@ -105,11 +105,20 @@
<el-table-column :label="$t('进口')" align="center" prop="import" width="100" >
<el-table-column :label="$t('票数')" align="center" prop="importTickets" min-width="120" >
<template slot-scope="scope">
<span @click="handleShowBillList(scope.row,4)">{{ scope.row.importTickets }}</span>
<span @click="handleShowBillList(scope.row,'import')">{{ scope.row.importTickets }}</span>
</template>
</el-table-column>
<el-table-column :label="$t('实际重量')" align="center" prop="importWeight" min-width="120" />
<el-table-column :label="$t('实际重量')" align="center" prop="importWeight" min-width="120" />
</el-table-column>
<el-table-column :label="$t('海运')" align="center" prop="sea" width="100" >
<el-table-column :label="$t('票数')" align="center" prop="seaTickets" min-width="120" >
<template slot-scope="scope">
<span @click="handleShowBillList(scope.row,4)">{{ scope.row.seaTickets }}</span>
</template>
</el-table-column>
<el-table-column :label="$t('实际重量')" align="center" prop="seaWeight" min-width="120" />
</el-table-column>
</xd-table>
</div>