feat(wms): 新增发货单据相关展示列及状态标签

在基础面板组件中添加发货计划、发货单据和发货状态的展示列
新增showWaybill属性控制相关列的显示
This commit is contained in:
砂糖
2026-03-04 16:15:13 +08:00
parent f26960e4c7
commit 341606c051
3 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<template>
<BasePage
:qrcode="qrcode"
:showWaybill="showWaybill"
:querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" :showControl="showControl" :showExportTime="showExportTime" />
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
dataType: 1,
includeBindInfo: true,
// materialType: '成品',
// status: 1
},
showControl: false,
labelType: '3',
showStatus: false,
hideType: false,
showExportTime: false,
showWaybill: true,
}
}
}
</script>