This commit is contained in:
wyw 2026-04-30 14:16:08 +08:00
commit dc1be97e8b
2 changed files with 9 additions and 2 deletions

View File

@ -2,8 +2,8 @@
"name" : "矿山安全生产标准化系统", "name" : "矿山安全生产标准化系统",
"appid" : "__UNI__DE7034E", //BBB1077 "appid" : "__UNI__DE7034E", //BBB1077
"description" : "厦钨矿山安全app", "description" : "厦钨矿山安全app",
"versionName" : "1.0.005", "versionName" : "1.0.006",
"versionCode" : 10005, "versionCode" : 10006,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -92,6 +92,13 @@
// TODO: id // TODO: id
extendRule(json, 'ID', 1, this.model.ID) extendRule(json, 'ID', 1, this.model.ID)
getRequest(json, "/SE/TrainingEffectEvaluationSurvey/Get").then(res => { 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 this.model = res
}) })
}, },