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