2025-11-25 14:41:35 +08:00
|
|
|
<template>
|
2026-06-18 17:00:03 +08:00
|
|
|
<BasePage
|
|
|
|
|
:querys="querys"
|
|
|
|
|
:labelType="labelType"
|
|
|
|
|
:showStatus="showStatus"
|
|
|
|
|
:hideType="hideType"
|
|
|
|
|
:showControl="showControl"
|
|
|
|
|
:showExportTime="showExportTime"
|
|
|
|
|
:isShipView="isShipView"
|
|
|
|
|
/>
|
2025-11-25 14:41:35 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import BasePage from './panels/base.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
2026-05-15 16:36:27 +08:00
|
|
|
name: "Exp-Coil",
|
2025-11-25 14:41:35 +08:00
|
|
|
components: {
|
|
|
|
|
BasePage
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
qrcode: false,
|
|
|
|
|
querys: {
|
|
|
|
|
dataType: 1,
|
2025-12-16 09:52:46 +08:00
|
|
|
// materialType: '成品',
|
2025-11-25 14:41:35 +08:00
|
|
|
status: 1
|
|
|
|
|
},
|
2026-06-18 17:00:03 +08:00
|
|
|
isShipView: true,
|
2025-11-28 11:02:19 +08:00
|
|
|
showControl: false,
|
2025-11-25 14:41:35 +08:00
|
|
|
labelType: '3',
|
|
|
|
|
showStatus: false,
|
|
|
|
|
hideType: false,
|
2025-12-02 15:52:35 +08:00
|
|
|
showExportTime: true,
|
2025-11-25 14:41:35 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|