26 lines
477 B
Vue
26 lines
477 B
Vue
|
|
<template>
|
||
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import BasePage from './panels/base.vue';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
BasePage
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
qrcode: false,
|
||
|
|
querys: {
|
||
|
|
dataType: 1,
|
||
|
|
materialType: '成品',
|
||
|
|
status: 1
|
||
|
|
},
|
||
|
|
labelType: '3',
|
||
|
|
showStatus: false,
|
||
|
|
hideType: false,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|