feat(wms): 为BasePage组件添加hideType属性

在多个coil相关视图和基础面板中添加hideType属性,用于控制MaterialSelect组件的类型显示
修复StatisticGroup组件中listMaterialCoil的dataType参数错误
This commit is contained in:
砂糖
2025-11-01 13:19:12 +08:00
parent 6cb591a7ce
commit f4df08972b
6 changed files with 18 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" />
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" :hideType="hideType" />
</template>
<script>
@@ -18,7 +18,8 @@ export default {
warehouseId: 111,
},
hideWarehouseQuery: true,
labelType: '3'
labelType: '3',
hideType: false,
}
}
}