|
@@ -197,16 +197,16 @@
|
|
|
{{ scope.row.printNum ? '已打单(' + scope.row.printNum + ')' : '未打单' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="是否上楼" prop="isUp" min-width="160" show-overflow-tooltip >
|
|
|
- <template v-slot="row">
|
|
|
- {{ row.isUp=='YES'?'是':'否' }}
|
|
|
+ <el-table-column align="left" label="是否上楼" prop="isUp" min-width="160" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.isUp == 'YES' ? '是' : '否' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="是否卸货" prop="isDischarge" min-width="160" show-overflow-tooltip >
|
|
|
- <template v-slot="row">
|
|
|
- {{ row.isDischarge=='YES'?'是':'否' }}
|
|
|
+ <el-table-column align="left" label="是否卸货" prop="isDischarge" min-width="160" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.isDischarge == 'YES' ? '是' : '否' }}
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="left" label="信息密钥" prop="informationKey" min-width="120" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<CopyButton :copyText="scope.row.informationKey" />
|
|
@@ -512,9 +512,9 @@ export default {
|
|
|
exParams() {
|
|
|
return {
|
|
|
...this.screenForm,
|
|
|
- correspondId:this.screenForm.warehouse,
|
|
|
- takerId: this.screenForm.manId,
|
|
|
- status: this.screenForm.status,
|
|
|
+ correspondId: this.screenForm.warehouse,
|
|
|
+ takerId: this.screenForm.manId,
|
|
|
+ status: this.screenForm.status
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -590,9 +590,8 @@ export default {
|
|
|
getLogisticsId(e) {
|
|
|
if (this.companyList.length) {
|
|
|
const item = this.companyList.find(k => k.id === e)
|
|
|
- this.screenForm.company = item.logisticsCompany
|
|
|
+ this.screenForm.company = item.logisticsCompany
|
|
|
}
|
|
|
-
|
|
|
},
|
|
|
// 获取仓库列表
|
|
|
getWarehouseList() {
|