- 添加分条报表相关配置及视图组件 - 优化标签打印尺寸及布局 - 增加实测厚度字段及相关展示逻辑 - 重构报表数据获取逻辑,统一处理异常情况 - 完善分条操作表单,增加异常信息管理
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> |