From 49ed66d24bcdd6eeffb2cca18004426ad44a4916 Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: 星期一, 19 九月 2022 17:49:15 +0800
Subject: [PATCH] Default Changelist
---
src/views/specialWorkSystem/workTicket/myApproval/index.vue | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/src/views/specialWorkSystem/workTicket/myApproval/index.vue b/src/views/specialWorkSystem/workTicket/myApproval/index.vue
index ffd01b4..2d3e22c 100644
--- a/src/views/specialWorkSystem/workTicket/myApproval/index.vue
+++ b/src/views/specialWorkSystem/workTicket/myApproval/index.vue
@@ -418,7 +418,7 @@
if (res.data.code === '200') {
ElMessage({
type: 'success',
- message: res.data.msg
+ message: '取消成功!'
});
getListByPage();
} else {
@@ -468,6 +468,12 @@
return state.departmentRecursionList.find((i: { depId: number }) => i.depId === Number(item))?.depName;
});
}
+ if(state.details.workDetail.csDepId){
+ state.details.workDetail.csDepId = state.departmentRecursionList.find((i: { depId: number }) => i.depId === Number(state.details.workDetail.csDepId))?.depName;
+ }
+ if(state.details.workDetail.operationDepId){
+ state.details.workDetail.operationDepId = state.departmentRecursionList.find((i: { depId: number }) => i.depId === Number(state.details.workDetail.operationDepId))?.depName;
+ }
if(state.details.workDetail.gbPath){
state.details.workDetail.gbPath = state.details.workDetail.gbPath.split(',')
}
--
Gitblit v1.9.2