From dadc02819bd1261e4b46bc7fd222a45cf93595e0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=BD=95=E7=BE=8E=E8=8D=A3?=
<10755671+mei-rong-he@user.noreply.gitee.com>
Date: Wed, 15 Apr 2026 15:57:48 +0800
Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E6=94=B9=E8=AE=B0=E5=BD=95=E5=AE=A1?=
=?UTF-8?q?=E9=98=85=E6=8C=89=E9=92=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../subPages/SK/riskRectifyRecordShow.vue | 18 ++++++++++++++++--
services/apply/subPages/SK/SKServices.js | 11 +++++++++++
2 files changed, 27 insertions(+), 2 deletions(-)
diff --git a/pages/apply/subPages/SK/riskRectifyRecordShow.vue b/pages/apply/subPages/SK/riskRectifyRecordShow.vue
index 8b82aa8..50d11bf 100644
--- a/pages/apply/subPages/SK/riskRectifyRecordShow.vue
+++ b/pages/apply/subPages/SK/riskRectifyRecordShow.vue
@@ -102,6 +102,9 @@
+
+ 审阅
+
@@ -128,7 +131,8 @@
MineTypeName
} from '../../../../utils/enums.js'
import {
- GetRiskVerifyRecodrReport,
+ GetRiskVerifyRecodrReport,
+ HiddenDangerRectifyRecordShow
} from '../../../../services/apply/subPages/SK/SKServices.js'
import stepTitle from '@/components/custom/step-title.vue'
export default {
@@ -247,7 +251,17 @@
this.isLoadOK = true
},
-
+ submit() {
+ let json = {};
+ json.ID = this.model.ID;
+ json.TaskID = this.TaskID;
+ HiddenDangerRectifyRecordShow(json).then(res => {
+ uni.$showMsgFunc('操作成功!', () => {
+ uni.navigateBack()
+ },
+ 'success', 1000)
+ })
+ }
}
diff --git a/services/apply/subPages/SK/SKServices.js b/services/apply/subPages/SK/SKServices.js
index 606f691..9446998 100644
--- a/services/apply/subPages/SK/SKServices.js
+++ b/services/apply/subPages/SK/SKServices.js
@@ -451,6 +451,17 @@ export function SKRectifyNoticeShow(params) {
reject(error)
})
})
+}
+export function HiddenDangerRectifyRecordShow(params) {
+ return new Promise((resolve, reject) => {
+ request.post("/SK/SKHiddenDangerRectifyRecord/IdentityUpdate", params).then((result) => {
+ if (result.IsSuccessful) {
+ resolve(result.Data);
+ }
+ }).catch((error) => {
+ reject(error)
+ })
+ })
}
export function SKRectifyDelayApplyShow(params) {
return new Promise((resolve, reject) => {