2026-03-18 17:07:20 +08:00
|
|
|
<template>
|
|
|
|
|
<YearTemplate
|
|
|
|
|
:actionTypes="actionTypes"
|
|
|
|
|
:actionQueryParams="actionQueryParams"
|
|
|
|
|
:baseQueryParams="baseQueryParams"
|
|
|
|
|
:warehouseOptions="warehouseOptions"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import YearTemplate from '@/views/wms/report/template/year.vue'
|
2026-03-24 15:38:30 +08:00
|
|
|
import { tuozhiConfig } from '@/views/wms/report/js/config.js'
|
2026-03-18 17:07:20 +08:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'YearReport',
|
|
|
|
|
components: {
|
|
|
|
|
YearTemplate,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2026-03-24 15:38:30 +08:00
|
|
|
...tuozhiConfig,
|
2026-03-18 17:07:20 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|