Files
klp-oa/klp-ui/src/views/wms/coil/ship.vue
砂糖 97c9a3741a refactor(wms/coil): 优化卷号匹配与表格布局,调整功能按钮权限
1.  修复卷号匹配字段名不统一问题,将encoilid改为coilId适配新逻辑
2.  调整CoilSelector的列名从镀铬卷号改为工序卷号
3.  调整base.vue表格列位置与注释代码,新增correctButton参数控制数据修正按钮
4.  在ship.vue中传入correctButton参数,优化发货页面功能
2026-06-26 11:43:52 +08:00

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>