diff --git a/src/pages/appraisal/list/index.vue b/src/pages/appraisal/list/index.vue index 4ddc579..1fba10c 100644 --- a/src/pages/appraisal/list/index.vue +++ b/src/pages/appraisal/list/index.vue @@ -26,10 +26,13 @@ 下一题 + - +
{{ result.isPassed }}
@@ -46,7 +49,7 @@ - +
成绩详情
@@ -137,6 +140,16 @@ export default { this.resultVisible = true; } }, + handleClose(type) { // 处理关闭 + if (type === "result") { + this.resultVisible = false; + } else if (type === "detail") { + this.detailVisible = false; + } + clearInterval(this.timer); + this.countdown = ""; + this.isDone = true; + }, async toEvaluation() { // 再试一次 clearInterval(this.timer); this.lastOne = false; @@ -262,7 +275,7 @@ export default {