From a9c8264a9250b85838afec22b90af63c73b8cd7a Mon Sep 17 00:00:00 2001 From: yunkexin <760754045@qq.com> Date: Wed, 29 Apr 2026 08:41:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 4 ++-- pages/apply/subPages/SE/6trainReportEdit.vue | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 0a27f18..709ba9c 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name" : "矿山安全生产标准化系统", "appid" : "__UNI__DE7034E", //BBB1077 "description" : "厦钨矿山安全app", - "versionName" : "1.0.005", - "versionCode" : 10005, + "versionName" : "1.0.006", + "versionCode" : 10006, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/pages/apply/subPages/SE/6trainReportEdit.vue b/pages/apply/subPages/SE/6trainReportEdit.vue index 856b4fd..f50d8a2 100644 --- a/pages/apply/subPages/SE/6trainReportEdit.vue +++ b/pages/apply/subPages/SE/6trainReportEdit.vue @@ -92,6 +92,13 @@ // TODO: id 未获取 extendRule(json, 'ID', 1, this.model.ID) getRequest(json, "/SE/TrainingEffectEvaluationSurvey/Get").then(res => { + if (res.Nav_ResultList && res.Nav_ResultList.length) { + res.Nav_ResultList.forEach(item => { + if (item.EVALUATION_RESULT === undefined || item.EVALUATION_RESULT === null) { + item.EVALUATION_RESULT = 0 + } + }) + } this.model = res }) },