|
@@ -5,6 +5,7 @@
|
|
|
<div v-if="dataShow" key="data">
|
|
|
<van-list v-model="loading" :finished="finished" finished-text="没有更多数据了~" @load="getList">
|
|
|
<van-cell-group class="section" v-for="(item, index) in dataList" :key="index">
|
|
|
+ <van-cell :value="item.examBaseName" title="考级名称" />
|
|
|
<van-cell :value="item.actualExamStartTime" title="考试日期" />
|
|
|
<van-cell title="专业等级" >
|
|
|
<template #default>
|
|
@@ -35,7 +36,7 @@
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<van-cell title="考试结果" :border="!item.isShow" >
|
|
|
- <span v-if="item.result" :class="item.result == 'FAIL' ? 'error' : 'success'">{{ item.result | resultType }}</span>
|
|
|
+ <span v-if="item.result && item.examStatus === 'RESULT_CONFIRM'" :class="item.result == 'FAIL' ? 'error' : 'success'">{{ item.result | resultType }}</span>
|
|
|
<span v-else>暂无</span>
|
|
|
</van-cell>
|
|
|
<!-- <transition name="fade"> -->
|