2025-10-29 14:33:26 +08:00
|
|
|
<template>
|
2025-12-29 16:22:18 +08:00
|
|
|
<BasePage :qrcode="qrcode"
|
|
|
|
|
:querys="querys"
|
|
|
|
|
:labelType="labelType"
|
|
|
|
|
:showStatus="showStatus"
|
|
|
|
|
:hideType="hideType"
|
|
|
|
|
:showLength="showLength" />
|
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
|
|
|
dataType: 1,
|
2025-11-25 14:41:35 +08:00
|
|
|
materialType: '成品',
|
2025-12-10 13:17:41 +08:00
|
|
|
itemType: 'product',
|
2025-11-25 14:41:35 +08:00
|
|
|
status: 0
|
2025-10-30 14:36:01 +08:00
|
|
|
},
|
2025-10-31 15:07:03 +08:00
|
|
|
labelType: '3',
|
|
|
|
|
showStatus: true,
|
2025-12-10 13:17:41 +08:00
|
|
|
hideType: true,
|
2025-12-29 16:22:18 +08:00
|
|
|
showLength: true,
|
2025-10-29 14:33:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|