提交修改

hangao
dshclm 5 months ago
parent a4a218786d
commit 4275b82408

@ -26,7 +26,7 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
考试状态:{{ item.userTime}} 考试状态:{{ item.stateName}}
</el-col> </el-col>
</el-row> </el-row>
@ -47,25 +47,26 @@
}, },
mounted(){ mounted(){
this.paperList = this.updatedPaperList this.paperList = this.updatedPaperList
this.getCityList()
}, },
computed: { computed: {
updatedPaperList() { updatedPaperList() {
return this.paperList.map(paper => { return this.paperList.map(function(paper) {
const match = this.examStateList.find(function (item){ var match = this.examStateList.find(function(item) {
item.dictValue == paper.state return item.dictValue == paper.state;
}); });
if (match) { if (match) {
var newPaper = {}; var newPaper = {};
for (var key in paper) { for (var key in paper) {
newPaper[key] = paper[key]; if (paper.hasOwnProperty(key)) {
newPaper[key] = paper[key];
}
} }
newPaper.stateName = match.dictLabel; newPaper.stateName = match.dictLabel;
return newPaper; return newPaper;
} else { } else {
return paper; return paper;
} }
}); }.bind(this));
} }
}, },
methods:{ methods:{
@ -79,16 +80,6 @@
const seconds = ('0' + date.getSeconds()).slice(-2); const seconds = ('0' + date.getSeconds()).slice(-2);
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; 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');
}) ,
});
},
} }
}) })
</script> </script>

Loading…
Cancel
Save