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