25 lines
489 B
Vue
25 lines
489 B
Vue
<template>
|
|
<MonthTemplate
|
|
:actionTypes="actionTypes"
|
|
:actionQueryParams="actionQueryParams"
|
|
:baseQueryParams="baseQueryParams"
|
|
:warehouseOptions="warehouseOptions"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import MonthTemplate from '@/views/wms/report/template/month.vue'
|
|
import { suanzhaConfig } from '@/views/wms/report/js/config.js'
|
|
|
|
export default {
|
|
name: 'MonthReport',
|
|
components: {
|
|
MonthTemplate,
|
|
},
|
|
data() {
|
|
return {
|
|
...suanzhaConfig,
|
|
}
|
|
}
|
|
}
|
|
</script> |