- 将查询参数中的 updateBy 改为 createBy 以匹配实际业务需求 - 移除不再使用的 selectType 参数 - 优化员工信息页面显示,调整离职时间展示 - 提取公共的 fetch 逻辑到单独文件 - 重构报表查询逻辑,使用 Promise.all 并行请求 - 调整钢卷文档页面,增加创建人选择功能
25 lines
460 B
Vue
25 lines
460 B
Vue
<template>
|
|
<LossTemplate
|
|
:actionTypes="actionTypes"
|
|
:actionQueryParams="actionQueryParams"
|
|
></LossTemplate>
|
|
</template>
|
|
|
|
<script>
|
|
import LossTemplate from '@/views/wms/report/template/loss.vue'
|
|
|
|
export default {
|
|
name: 'LossReport',
|
|
components: {
|
|
LossTemplate,
|
|
},
|
|
data() {
|
|
return {
|
|
actionTypes: [11, 120],
|
|
actionQueryParams: {
|
|
createBy: 'suanzhakuguan'
|
|
},
|
|
}
|
|
}
|
|
}
|
|
</script> |