Merge remote-tracking branch 'origin/hangao' into hangao

hangao
wangxy 5 months ago
commit 3a0ca6a79f

@ -6,31 +6,36 @@
</head> </head>
<body class="white-bg"> <body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app"> <div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
<el-card v-for="item in paperList" style="margin-bottom: 10px; line-height: 30px;"> <div v-if="paperList.length > 0">
<el-card v-for="item in paperList" style="margin-bottom: 10px; line-height: 30px;">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12"> <el-col :span="12">
考试时间:{{ formatDate(item.createTime) }} 考试时间:{{ formatDate(item.createTime) }}
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
考试用时:{{ item.userTime }}分钟 考试用时:{{ item.userTime }}分钟
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
考试得分:{{ item.userScore }} 考试得分:{{ item.userScore }}
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
是否合格:{{ item.userScore > item.qualifyScore ?'是':'否' }} 是否合格:{{ item.userScore > item.qualifyScore ?'是':'否' }}
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
考试状态:{{ item.stateName}} 考试状态:{{ item.stateName}}
</el-col> </el-col>
</el-row>
</el-row>
<el-empty v-else description="暂无数据"></el-empty>
</el-card>
</div>
<el-card v-else class="left-card">
<el-empty description="暂无数据"></el-empty>
</el-card> </el-card>
</div> </div>
</div> </div>

Loading…
Cancel
Save