|
@@ -153,16 +153,16 @@
|
|
{{ scope.row.printNum ? '已打单' : '未打单' }}
|
|
{{ scope.row.printNum ? '已打单' : '未打单' }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</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>
|
|
</template>
|
|
</el-table-column>
|
|
</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>
|
|
</template>
|
|
- </el-table-column>
|
|
|
|
|
|
+ </el-table-column>
|
|
<el-table-column align="left" label="打单日期" prop="printTime" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="left" label="打单日期" prop="printTime" min-width="160" show-overflow-tooltip />
|
|
<el-table-column align="left" label="信息密钥" prop="informationKey" min-width="100" show-overflow-tooltip>
|
|
<el-table-column align="left" label="信息密钥" prop="informationKey" min-width="100" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -374,8 +374,8 @@ export default {
|
|
takerPhone: this.screenForm.takerPhone,
|
|
takerPhone: this.screenForm.takerPhone,
|
|
createBy: this.screenForm.createBy,
|
|
createBy: this.screenForm.createBy,
|
|
takerId: this.screenForm.takerId,
|
|
takerId: this.screenForm.takerId,
|
|
- printStartTime: this.screenForm.printTime?this.screenForm.printTime[0]:'',
|
|
|
|
- printEndTime: this.screenForm.printTime?this.screenForm.printTime[1]:'',
|
|
|
|
|
|
+ printStartTime: this.screenForm.printTime ? this.screenForm.printTime[0] : '',
|
|
|
|
+ printEndTime: this.screenForm.printTime ? this.screenForm.printTime[1] : '',
|
|
salesOrderId: this.screenForm.salesOrderId
|
|
salesOrderId: this.screenForm.salesOrderId
|
|
}
|
|
}
|
|
}
|
|
}
|