refactor(CoilSelector): 修改change事件返回参数包含完整钢卷信息 chore: 添加打包模块相关图标和API文件 test: 添加打包模块单元测试 docs: 更新打包模块API文档
29 lines
655 B
Vue
29 lines
655 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showAbnormal="showAbnormal" :showControl="showControl" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from '@/views/wms/coil/panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
querys: {
|
|
dataType: 1,
|
|
// orderByAbnormal: true,
|
|
warehouseId: '2035892198703349761'
|
|
// 筛选异常数量大于等于1的
|
|
// minAbnormalCount: 1
|
|
},
|
|
labelType: '2',
|
|
qrcode: false,
|
|
hideType: false,
|
|
showAbnormal: false,
|
|
showControl: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |