2025-10-28 19:01:57 +08:00
|
|
|
<template>
|
2025-11-01 13:19:12 +08:00
|
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" />
|
2025-10-28 19:01:57 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-10-29 14:33:26 +08:00
|
|
|
import BasePage from './panels/base.vue';
|
2025-10-28 19:01:57 +08:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
2025-10-29 14:33:26 +08:00
|
|
|
BasePage
|
2025-10-28 19:01:57 +08:00
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2025-10-29 14:33:26 +08:00
|
|
|
qrcode: true,
|
|
|
|
|
querys: {
|
2025-10-31 11:52:45 +08:00
|
|
|
dataType: 1,
|
2025-11-11 15:04:12 +08:00
|
|
|
// itemType: 'raw_material'
|
|
|
|
|
materialType: '原料'
|
2025-10-30 14:36:01 +08:00
|
|
|
},
|
2025-11-01 13:19:12 +08:00
|
|
|
labelType: '2',
|
|
|
|
|
hideType: true
|
2025-10-28 19:01:57 +08:00
|
|
|
}
|
|
|
|
|
}
|
2025-10-29 14:33:26 +08:00
|
|
|
}
|
|
|
|
|
</script>
|