1. 在ship.vue页面新增isShipView参数并默认开启 2. 在base面板新增货单状态筛选 radio 组 3. 根据isShipView切换查询逻辑和表格列展示 4. 新增对应统计计数逻辑
38 lines
669 B
Vue
38 lines
669 B
Vue
<template>
|
|
<BasePage
|
|
:querys="querys"
|
|
:labelType="labelType"
|
|
:showStatus="showStatus"
|
|
:hideType="hideType"
|
|
:showControl="showControl"
|
|
:showExportTime="showExportTime"
|
|
:isShipView="isShipView"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
name: "Exp-Coil",
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
// materialType: '成品',
|
|
status: 1
|
|
},
|
|
isShipView: true,
|
|
showControl: false,
|
|
labelType: '3',
|
|
showStatus: false,
|
|
hideType: false,
|
|
showExportTime: true,
|
|
}
|
|
}
|
|
}
|
|
</script> |