2026-03-18 17:07:20 +08:00
|
|
|
<template>
|
|
|
|
|
<DayTemplate
|
|
|
|
|
:actionTypes="actionTypes"
|
|
|
|
|
:actionQueryParams="actionQueryParams"
|
|
|
|
|
:baseQueryParams="baseQueryParams"
|
|
|
|
|
:warehouseOptions="warehouseOptions"
|
2026-04-11 15:36:50 +08:00
|
|
|
:productionLine="productionLine"
|
2026-03-18 17:07:20 +08:00
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import DayTemplate from '@/views/wms/report/template/day.vue'
|
2026-03-24 15:38:30 +08:00
|
|
|
import { shuangConfig } from '@/views/wms/report/js/config.js'
|
2026-03-18 17:07:20 +08:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'LossReport',
|
|
|
|
|
components: {
|
|
|
|
|
DayTemplate,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2026-03-24 15:38:30 +08:00
|
|
|
...shuangConfig,
|
2026-03-18 17:07:20 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|