25 lines
480 B
Vue
25 lines
480 B
Vue
|
|
<template>
|
||
|
|
<TeamTemplate
|
||
|
|
:actionTypes="actionTypes"
|
||
|
|
:actionQueryParams="actionQueryParams"
|
||
|
|
:baseQueryParams="baseQueryParams"
|
||
|
|
:warehouseOptions="warehouseOptions"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import TeamTemplate from '@/views/wms/report/template/team.vue'
|
||
|
|
import { splitConfig } from '@/views/wms/report/js/config.js'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'TeamReport',
|
||
|
|
components: {
|
||
|
|
TeamTemplate,
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
...splitConfig,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|