2025-10-29 14:33:26 +08:00
|
|
|
<template>
|
2025-11-01 13:19:12 +08:00
|
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" />
|
2025-10-29 14:33:26 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import BasePage from './panels/base.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
BasePage
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
qrcode: false,
|
|
|
|
|
querys: {
|
2025-11-11 15:04:12 +08:00
|
|
|
// itemType: 'product',
|
|
|
|
|
dataType: 1,
|
2025-11-11 18:20:40 +08:00
|
|
|
materialType: '成品'
|
2025-10-30 14:36:01 +08:00
|
|
|
},
|
2025-10-31 15:07:03 +08:00
|
|
|
labelType: '3',
|
|
|
|
|
showStatus: true,
|
2025-11-01 13:19:12 +08:00
|
|
|
hideType: true,
|
2025-10-29 14:33:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|