Files
klp-oa/klp-ui/src/views/wms/delivery/canuse/index.vue
砂糖 0cfffc3adb feat(wms): 添加leftWarehouseQuery属性并优化表格显示
优化线圈信息显示格式,移除单位后缀
调整移库记录表格列宽和显示内容
修改批量调拨和技术部改判的前后状态显示格式
2026-04-25 15:59:14 +08:00

40 lines
780 B
Vue

<template>
<BasePage :qrcode="qrcode"
:querys="querys"
:labelType="labelType"
:showStatus="showStatus"
:hideType="hideType"
:showLength="showLength"
:canExportAll="canExportAll"
:leftWarehouseQuery="leftWarehouseQuery"
/>
</template>
<script>
import BasePage from '@/views/wms/coil/panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
dataType: 1,
materialType: '成品',
itemType: 'product',
status: 0,
orderBy: true
},
labelType: '3',
showStatus: true,
hideType: true,
showLength: true,
canExportAll: true,
showOrderBy: false,
leftWarehouseQuery: true
}
}
}
</script>