From 88f3b8e2a6936f0c729721ccabe68a0ec632f964 Mon Sep 17 00:00:00 2001
From: zzyuan <781948537@qq.com>
Date: Thu, 18 Dec 2025 15:10:25 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E7=A8=8B=E7=AE=A1=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../certificateExam/index.vue | 22 +++++++++++++++----
.../certificateRequest/index.vue | 22 +++++++++++++++----
2 files changed, 36 insertions(+), 8 deletions(-)
diff --git a/src/views/certificate/certificateReturnManage/certificateExam/index.vue b/src/views/certificate/certificateReturnManage/certificateExam/index.vue
index 23e61f4..34ed162 100644
--- a/src/views/certificate/certificateReturnManage/certificateExam/index.vue
+++ b/src/views/certificate/certificateReturnManage/certificateExam/index.vue
@@ -201,12 +201,19 @@
流程
-
-
+
+
+
+
+ {{item.createBy}}
+ {{item.processName}}
+
+
- 同意
- 拒绝
+ 未处理
+ 同意
+ 拒绝
{{item.createTime}}
{{item.createTime}}
@@ -285,6 +292,7 @@
fileNames:[],
openFile:false,
checkProcess:[],
+ activeIndex:1,
dialogVisible:false,//图片弹窗
dialogImageUrl:"",//图片弹窗
openView:false,//查看弹窗
@@ -332,6 +340,12 @@
}
applyCheckProcessApi(param).then(response => {
this.checkProcess = response.data||[];
+ let index = response.data.findIndex(v=>v.checkState==0)
+ if(index==-1){
+ this.activeIndex = 3
+ }else{
+ this.activeIndex = index
+ }
});
},
/** 审批按钮操作 */
diff --git a/src/views/certificate/certificateReturnManage/certificateRequest/index.vue b/src/views/certificate/certificateReturnManage/certificateRequest/index.vue
index e285505..652d493 100644
--- a/src/views/certificate/certificateReturnManage/certificateRequest/index.vue
+++ b/src/views/certificate/certificateReturnManage/certificateRequest/index.vue
@@ -389,12 +389,19 @@
流程
-
-
+
+
+
+
+ {{item.createBy}}
+ {{item.processName}}
+
+
- 同意
- 拒绝
+ 未处理
+ 同意
+ 拒绝
{{item.createTime}}
{{item.createTime}}
@@ -530,6 +537,7 @@
fileNames:[],
openFile:false,//查看附件
checkProcess:[],
+ activeIndex:1,
dialogVisible:false,//图片弹窗
dialogImageUrl:"",//图片弹窗
openView:false,//查看弹窗
@@ -757,6 +765,12 @@
}
applyCheckProcessApi(param).then(response => {
this.checkProcess = response.data||[];
+ let index = response.data.findIndex(v=>v.checkState==0)
+ if(index==-1){
+ this.activeIndex = 3
+ }else{
+ this.activeIndex = index
+ }
});
},
//查看弹窗