2026-02-12 09:58:15 +08:00
|
|
|
<template>
|
2026-03-18 15:41:09 +08:00
|
|
|
<MonthTemplate
|
|
|
|
|
:actionTypes="actionTypes"
|
|
|
|
|
:actionQueryParams="actionQueryParams"
|
|
|
|
|
:baseQueryParams="baseQueryParams"
|
|
|
|
|
:warehouseOptions="warehouseOptions"
|
|
|
|
|
/>
|
2026-02-12 09:58:15 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-03-18 15:41:09 +08:00
|
|
|
import MonthTemplate from '@/views/wms/report/template/month.vue'
|
2026-03-24 15:38:30 +08:00
|
|
|
import { suanzhaConfig } from '@/views/wms/report/js/config.js'
|
2026-02-12 09:58:15 +08:00
|
|
|
|
|
|
|
|
export default {
|
2026-03-18 15:41:09 +08:00
|
|
|
name: 'MonthReport',
|
2026-02-12 09:58:15 +08:00
|
|
|
components: {
|
2026-03-18 15:41:09 +08:00
|
|
|
MonthTemplate,
|
2026-02-12 09:58:15 +08:00
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2026-03-24 15:38:30 +08:00
|
|
|
...suanzhaConfig,
|
2026-02-12 09:58:15 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-18 15:41:09 +08:00
|
|
|
</script>
|