合包管理对应字段
This commit is contained in:
parent
baaac998a3
commit
0799a3acce
@ -141,13 +141,13 @@
|
|||||||
<dict-tag :options="dict.type.emis_pack_status" :value="scope.row.packStatus"/>
|
<dict-tag :options="dict.type.emis_pack_status" :value="scope.row.packStatus"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :label="$t('操作网点')" align="center" prop="sendStiteCode" min-width="100" />
|
<el-table-column :label="$t('操作网点')" align="center" prop="createSiteName" min-width="100" />
|
||||||
<el-table-column :label="$t('是否可拆')" align="center" prop="blUnpack" min-width="100">
|
<el-table-column :label="$t('是否可拆')" align="center" prop="blUnpack" min-width="100">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ scope.row.blUnpack == "1" ? "是" : "否" }}</span>
|
<span>{{ scope.row.blUnpack == "1" ? "是" : "否" }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :label="$t('操作员')" align="center" prop="opMan" min-width="100" />
|
<el-table-column :label="$t('操作员')" align="center" prop="createByName" min-width="100" />
|
||||||
<el-table-column :label="$t('票数')" align="center" prop="totalWaybillQty" min-width="100" />
|
<el-table-column :label="$t('票数')" align="center" prop="totalWaybillQty" min-width="100" />
|
||||||
<el-table-column :label="$t('件数')" align="center" prop="totalParcelQty" min-width="100" />
|
<el-table-column :label="$t('件数')" align="center" prop="totalParcelQty" min-width="100" />
|
||||||
<el-table-column :label="$t('实际重量')" align="center" prop="totalWeight" min-width="100" />
|
<el-table-column :label="$t('实际重量')" align="center" prop="totalWeight" min-width="100" />
|
||||||
@ -589,6 +589,14 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
const end = new Date()
|
||||||
|
const start = new Date()
|
||||||
|
start.setHours(0,0,0,0)
|
||||||
|
end.setHours(23,59,59,0)
|
||||||
|
this.dateTimeRange=[start,end];
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -952,12 +960,14 @@ export default {
|
|||||||
this.tempExistCoPackWayBillList = resList.rows;//临时存储,用于运单号校验
|
this.tempExistCoPackWayBillList = resList.rows;//临时存储,用于运单号校验
|
||||||
this.tempCoPackInfo = resData;
|
this.tempCoPackInfo = resData;
|
||||||
for(let p = 0; p < resList.rows.length;p++){
|
for(let p = 0; p < resList.rows.length;p++){
|
||||||
let resd = await getWaybillDetail(resList.rows[p].billCode);
|
// let resd = await getWaybillDetail(resList.rows[p].billCode);
|
||||||
if(!resd || resd.code != 200){
|
// if(!resd || resd.code != 200){
|
||||||
this.$message.error(resd && resd.msg || "未知错误");
|
// this.$message.error(resd && resd.msg || "未知错误");
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
this.emisCoPackDetail.push(resd.data);
|
// this.emisCoPackDetail.push(resd.data);
|
||||||
|
;
|
||||||
|
this.emisCoPackDetail.push(resList.rows[p].waybillDetail);
|
||||||
}
|
}
|
||||||
this.computeTotal();
|
this.computeTotal();
|
||||||
this.currentId=null;
|
this.currentId=null;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user