|
|
|
@ -26,7 +26,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
考试状态:{{ item.userTime}}
|
|
|
|
|
考试状态:{{ item.stateName}}
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
@ -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) {
|
|
|
|
|
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');
|
|
|
|
|
}) ,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|