1. 修复卷号匹配字段名不统一问题,将encoilid改为coilId适配新逻辑 2. 调整CoilSelector的列名从镀铬卷号改为工序卷号 3. 调整base.vue表格列位置与注释代码,新增correctButton参数控制数据修正按钮 4. 在ship.vue中传入correctButton参数,优化发货页面功能
40 lines
729 B
Vue
40 lines
729 B
Vue
<template>
|
|
<BasePage
|
|
:querys="querys"
|
|
:labelType="labelType"
|
|
:showStatus="showStatus"
|
|
:hideType="hideType"
|
|
:showControl="showControl"
|
|
:showExportTime="showExportTime"
|
|
:isShipView="isShipView"
|
|
:correctButton="correctButton"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
name: "Exp-Coil",
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
// materialType: '成品',
|
|
status: 1
|
|
},
|
|
isShipView: true,
|
|
showControl: false,
|
|
labelType: '3',
|
|
showStatus: false,
|
|
hideType: false,
|
|
showExportTime: true,
|
|
correctButton: true,
|
|
}
|
|
}
|
|
}
|
|
</script> |