考试题
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<div class="card_top">
|
||||
<div class="card_title">{{ item.examinationName }}</div>
|
||||
<div class="card_count">
|
||||
共<span class="col_blue">{{ item.questions.length }}</span>题
|
||||
共<span class="col_blue">{{ item.allSubjectNumber }}</span>题
|
||||
</div>
|
||||
<div class="card_statistics">
|
||||
<span>{{ item.passNumber }}</span>人通过/<span>{{ item.examinationNumber }}</span>人参与
|
||||
@@ -25,7 +25,7 @@
|
||||
</div>
|
||||
<div class="grade">{{ item.myRecord.score }}</div>
|
||||
</div>
|
||||
<div class="card_bottom col_blue" @click="handleToTest()">参加考试</div>
|
||||
<div class="card_bottom col_blue" @click="handleToTest(item.id)">参加考试</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -95,13 +95,13 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
handleToTest() {
|
||||
handleToTest(id) {
|
||||
// 没有认证
|
||||
// if('没有认证') {
|
||||
this.showAuth = true;
|
||||
// if(!this.user.areaId) {
|
||||
// this.showAuth = true;
|
||||
// 已认证
|
||||
// } else {
|
||||
// this.$emit('toTest')
|
||||
this.$emit('toTest',id)
|
||||
// }
|
||||
},
|
||||
comfirm() {
|
||||
|
||||
Reference in New Issue
Block a user