From 4275b824087a836aeb302c91f63b4874e1284a95 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Mon, 18 Nov 2024 15:56:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/elExam/userExam/view.html | 25 ++++++------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html b/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html index 7b7fbe6..b5e8a20 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/view.html @@ -26,7 +26,7 @@ - 考试状态:{{ item.userTime}} + 考试状态:{{ item.stateName}} @@ -47,25 +47,26 @@ }, mounted(){ this.paperList = this.updatedPaperList - this.getCityList() }, computed: { updatedPaperList() { - return this.paperList.map(paper => { - const match = this.examStateList.find(function (item){ - item.dictValue == paper.state + return this.paperList.map(function(paper) { + var match = this.examStateList.find(function(item) { + return item.dictValue == paper.state; }); if (match) { var newPaper = {}; for (var key in paper) { - newPaper[key] = paper[key]; + if (paper.hasOwnProperty(key)) { + newPaper[key] = paper[key]; + } } newPaper.stateName = match.dictLabel; return newPaper; } else { return paper; } - }); + }.bind(this)); } }, methods:{ @@ -79,16 +80,6 @@ const seconds = ('0' + date.getSeconds()).slice(-2); return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; }, - getCityList(){ - $.ajax({ - url: ctx + "system/area/getSysAreaList", - type: 'GET', - data:this.params , - success:((res)=>{ - this.CityList = res.data.filter(obj => obj.id === '36625'); - }) , - }); - }, } })