2026-03-18 17:07:20 +08:00
|
|
|
<template>
|
2026-05-07 16:28:20 +08:00
|
|
|
<ActionTemplate
|
|
|
|
|
:actionType="actionType"
|
|
|
|
|
:reportType="reportType"
|
2026-04-11 15:36:50 +08:00
|
|
|
:productionLine="productionLine"
|
2026-03-18 17:07:20 +08:00
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-05-07 16:28:20 +08:00
|
|
|
import ActionTemplate from '@/views/wms/report/template/action.vue'
|
2026-03-18 17:07:20 +08:00
|
|
|
|
|
|
|
|
export default {
|
2026-05-07 16:28:20 +08:00
|
|
|
name: 'DayReport',
|
2026-03-18 17:07:20 +08:00
|
|
|
components: {
|
2026-05-07 16:28:20 +08:00
|
|
|
ActionTemplate,
|
2026-03-18 17:07:20 +08:00
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2026-05-07 16:28:20 +08:00
|
|
|
actionType: 503,
|
|
|
|
|
reportType: 'out',
|
|
|
|
|
productionLine: '拉矫线',
|
2026-03-18 17:07:20 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|