25 lines
474 B
Vue
25 lines
474 B
Vue
<template>
|
|
<DayTemplate
|
|
:actionTypes="actionTypes"
|
|
:actionQueryParams="actionQueryParams"
|
|
:baseQueryParams="baseQueryParams"
|
|
:warehouseOptions="warehouseOptions"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import DayTemplate from '@/views/wms/report/template/day.vue'
|
|
import { dugeConfig } from '@/views/wms/report/js/config.js'
|
|
|
|
export default {
|
|
name: 'LossReport',
|
|
components: {
|
|
DayTemplate,
|
|
},
|
|
data() {
|
|
return {
|
|
...dugeConfig,
|
|
}
|
|
}
|
|
}
|
|
</script> |