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" : "矿山安全生产标准化系统",
"appid" : "__UNI__DE7034E", //BBB1077
"description" : "厦钨矿山安全app",
"versionName" : "1.0.005",
"versionCode" : 10005,
"versionName" : "1.0.006",
"versionCode" : 10006,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

@ -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
})
},