在多个coil相关视图和基础面板中添加hideType属性,用于控制MaterialSelect组件的类型显示 修复StatisticGroup组件中listMaterialCoil的dataType参数错误
26 lines
510 B
Vue
26 lines
510 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: {
|
|
// itemType: 'rubbish',
|
|
// dataType: 2
|
|
warehouseId: 111,
|
|
},
|
|
hideWarehouseQuery: true,
|
|
labelType: '3',
|
|
hideType: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |