feat(wms): 新增发货单据相关展示列及状态标签
在基础面板组件中添加发货计划、发货单据和发货状态的展示列 新增showWaybill属性控制相关列的显示
This commit is contained in:
33
klp-ui/src/views/wms/coil/waybill.vue
Normal file
33
klp-ui/src/views/wms/coil/waybill.vue
Normal 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>
|
||||
Reference in New Issue
Block a user