38 lines
704 B
Vue
38 lines
704 B
Vue
|
|
<template>
|
||
|
|
<BasePage :qrcode="qrcode"
|
||
|
|
:querys="querys"
|
||
|
|
:labelType="labelType"
|
||
|
|
:showStatus="showStatus"
|
||
|
|
:hideType="hideType"
|
||
|
|
:showLength="showLength"
|
||
|
|
:canExportAll="canExportAll"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import BasePage from '@/views/wms/coil/panels/base.vue';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
BasePage
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
qrcode: false,
|
||
|
|
querys: {
|
||
|
|
dataType: 1,
|
||
|
|
materialType: '成品',
|
||
|
|
itemType: 'product',
|
||
|
|
status: 0,
|
||
|
|
orderBy: true
|
||
|
|
},
|
||
|
|
labelType: '3',
|
||
|
|
showStatus: true,
|
||
|
|
hideType: true,
|
||
|
|
showLength: true,
|
||
|
|
canExportAll: true,
|
||
|
|
showOrderBy: false,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|