月结客户出货统计调整

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() { created() {
// console.log("====>queryParams====>",this.$route.query.query); // console.log("====>queryParams====>",this.$route.query.query);
this.queryParams =JSON.parse(this.$route.query.query); if(this.$route.query.query){
this.getList(); this.queryParams =JSON.parse(this.$route.query.query);
this.getList();
}
}, },
methods: { 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="land" width="100" >
<el-table-column :label="$t('票数')" align="center" prop="landTickets" min-width="120" > <el-table-column :label="$t('票数')" align="center" prop="landTickets" min-width="120" >
<template slot-scope="scope"> <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> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('实际重量')" align="center" prop="landWeight" min-width="120" /> <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="import" width="100" >
<el-table-column :label="$t('票数')" align="center" prop="importTickets" min-width="120" > <el-table-column :label="$t('票数')" align="center" prop="importTickets" min-width="120" >
<template slot-scope="scope"> <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> </template>
</el-table-column> </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>
<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> </xd-table>
</div> </div>