- 新增钢卷去向标签(WhereTag)及相关配置 - 在base.vue中添加钢卷去向选择功能 - 新增异常信息查看弹窗组件(abnormal.vue) - 新增多个仓库视图页面(mini.vue, scrap.vue等) - 在发货单组件中新增Excel导出功能 - 优化标签打印功能,支持多种标签类型 - 修复报表查询时间参数问题
41 lines
816 B
Vue
41 lines
816 B
Vue
<template>
|
|
<BasePage
|
|
:editNext="editNext"
|
|
:qrcode="qrcode"
|
|
:querys="querys"
|
|
:labelType="labelType"
|
|
:hideWarehouseQuery="hideWarehouseQuery"
|
|
:forceSpecialTag="forceSpecialTag"
|
|
:showControl="showControl"
|
|
:showAbnormal="showAbnormal"
|
|
:hideType="hideType"></BasePage>
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
status: 0,
|
|
// OnlyScrap: true,
|
|
// materialType: '废品'
|
|
},
|
|
// 强制使用特殊标签
|
|
forceSpecialTag: 'where',
|
|
editNext: true,
|
|
hideWarehouseQuery: true,
|
|
labelType: '2',
|
|
hideType: false,
|
|
showControl: false,
|
|
showAbnormal: true,
|
|
}
|
|
}
|
|
}
|
|
</script> |