refactor(wms/post): 优化售后与流程页面功能

1. 调整售后列表页拖拽面板初始尺寸与标题
2. 新增部门参数传递与处理逻辑到售后相关页面
3. 移除售后意见页的部门切换 tabs 相关代码
4. 新增盘库、排产、设备维修流程文档
This commit is contained in:
2026-06-23 14:35:45 +08:00
parent 2490f487fd
commit 6265292cbb
4 changed files with 92 additions and 50 deletions

View File

@@ -126,6 +126,7 @@ export default {
queryParams: {
pageNum: 1,
pageSize: 10,
deptId: undefined,
complaintNo: undefined,
executeStatus: undefined
},
@@ -140,6 +141,7 @@ export default {
};
},
created() {
this.queryParams.deptId = this.$route.query.deptId != null ? Number(this.$route.query.deptId) : undefined;
this.getList();
},
methods: {
@@ -149,6 +151,9 @@ export default {
if (params.executeStatus === '' || params.executeStatus === undefined) {
delete params.executeStatus;
}
if (params.deptId === '' || params.deptId === undefined || params.deptId === null) {
delete params.deptId;
}
let complaintNoFilter = params.complaintNo;
delete params.complaintNo;
listPlanExecuteRel(params).then(response => {