Files
klp-oa/klp-ui/src/views/wms/coil/abnormal.vue

27 lines
559 B
Vue
Raw Normal View History

<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showAbnormal="showAbnormal" :showControl="showControl" />
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
querys: {
dataType: 1,
// 筛选异常数量大于等于1的
minAbnormalCount: 1
},
labelType: '2',
qrcode: false,
hideType: false,
showAbnormal: true,
showControl: false,
}
}
}
</script>