feat(wms/coil): 新增发货单状态筛选视图

1. 在ship.vue页面新增isShipView参数并默认开启
2. 在base面板新增货单状态筛选 radio 组
3. 根据isShipView切换查询逻辑和表格列展示
4. 新增对应统计计数逻辑
This commit is contained in:
2026-06-18 17:00:03 +08:00
parent 7374b810c1
commit d0afe5eaaf
3 changed files with 77 additions and 7 deletions

View File

@@ -1,5 +1,13 @@
<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" :showControl="showControl" :showExportTime="showExportTime" />
<BasePage
:querys="querys"
:labelType="labelType"
:showStatus="showStatus"
:hideType="hideType"
:showControl="showControl"
:showExportTime="showExportTime"
:isShipView="isShipView"
/>
</template>
<script>
@@ -18,6 +26,7 @@ export default {
// materialType: '成品',
status: 1
},
isShipView: true,
showControl: false,
labelType: '3',
showStatus: false,