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