41 lines
816 B
Vue
41 lines
816 B
Vue
|
|
<template>
|
||
|
|
<BasePage
|
||
|
|
:editNext="editNext"
|
||
|
|
:qrcode="qrcode"
|
||
|
|
:querys="querys"
|
||
|
|
:labelType="labelType"
|
||
|
|
:hideWarehouseQuery="hideWarehouseQuery"
|
||
|
|
:forceSpecialTag="forceSpecialTag"
|
||
|
|
:showControl="showControl"
|
||
|
|
:showAbnormal="showAbnormal"
|
||
|
|
:hideType="hideType"></BasePage>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import BasePage from './panels/base.vue';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
BasePage
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
qrcode: false,
|
||
|
|
querys: {
|
||
|
|
dataType: 1,
|
||
|
|
status: 0,
|
||
|
|
// OnlyScrap: true,
|
||
|
|
// materialType: '废品'
|
||
|
|
},
|
||
|
|
// 强制使用特殊标签
|
||
|
|
forceSpecialTag: 'where',
|
||
|
|
editNext: true,
|
||
|
|
hideWarehouseQuery: true,
|
||
|
|
labelType: '2',
|
||
|
|
hideType: false,
|
||
|
|
showControl: false,
|
||
|
|
showAbnormal: true,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|