修改成绩详情

pg_adapter
dshclm 9 months ago
parent f0dd18b904
commit 6d581fd090

@ -27,7 +27,7 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
考试状态:{{ item.state | paperStateFilter }} 考试状态:{{ item.stateName}}
</el-col> </el-col>
</el-row> </el-row>
@ -38,13 +38,27 @@
<th:block th:include="include :: footer" /> <th:block th:include="include :: footer" />
<th:block th:include="include :: element-js" /> <th:block th:include="include :: element-js" />
<script th:inline="javascript"> <script th:inline="javascript">
var examStateDatas = [[${@dict.getType('sys_exam_state')}]];
var app = new Vue({ var app = new Vue({
el: '#app', el: '#app',
data: { data: {
paperList: [] paperList: [[${list}]],
examStateList:examStateDatas
}, },
mounted(){ mounted(){
this.paperList = [[${list}]]; this.paperList = this.updatedPaperList
},
computed: {
updatedPaperList() {
return this.paperList.map(paper => {
const match = this.examStateList.find(item => item.dictValue == paper.state);
if (match) {
return { ...paper, stateName: match.dictLabel };
} else {
return paper;
}
});
}
}, },
methods:{ methods:{
formatDate(dateString) { formatDate(dateString) {

Loading…
Cancel
Save