2026-03-04 16:15:13 +08:00
|
|
|
<template>
|
|
|
|
|
<BasePage
|
|
|
|
|
:qrcode="qrcode"
|
|
|
|
|
:showWaybill="showWaybill"
|
2026-03-10 13:33:30 +08:00
|
|
|
:showNewExport="showNewExport"
|
2026-03-04 16:15:13 +08:00
|
|
|
: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,
|
|
|
|
|
includeBindInfo: true,
|
|
|
|
|
// materialType: '成品',
|
|
|
|
|
// status: 1
|
|
|
|
|
},
|
|
|
|
|
showControl: false,
|
|
|
|
|
labelType: '3',
|
|
|
|
|
showStatus: false,
|
|
|
|
|
hideType: false,
|
|
|
|
|
showExportTime: false,
|
|
|
|
|
showWaybill: true,
|
2026-03-10 13:33:30 +08:00
|
|
|
showNewExport: true,
|
2026-03-04 16:15:13 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|