月结客户出货统计调整
This commit is contained in:
parent
3981bd821c
commit
652b53e704
@ -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: {
|
||||
/** 查询结算总账单列表 */
|
||||
|
||||
@ -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>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user