feat(wms/coil): 新增发货单状态筛选视图
1. 在ship.vue页面新增isShipView参数并默认开启 2. 在base面板新增货单状态筛选 radio 组 3. 根据isShipView切换查询逻辑和表格列展示 4. 新增对应统计计数逻辑
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user