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