|
@@ -30,7 +30,35 @@
|
|
|
"
|
|
|
>
|
|
|
<template #icon>
|
|
|
- <div class="icon-blue">{{ index + 1 }}</div>
|
|
|
+ <div class="icon-red">{{ index + 1 }}</div>
|
|
|
+ </template>
|
|
|
+ </van-cell>
|
|
|
+
|
|
|
+ <van-cell
|
|
|
+ title-class="uni-app-fontsize-paragraph"
|
|
|
+ class="cell"
|
|
|
+ :title="
|
|
|
+ item.excellIssueName ||
|
|
|
+ item.placeIssueName ||
|
|
|
+ item.classIssueName ||
|
|
|
+ item.sequeIssueName
|
|
|
+ "
|
|
|
+ is-link
|
|
|
+ center
|
|
|
+ v-for="(item, index) in classDataSpecial"
|
|
|
+ :key="index"
|
|
|
+ :border="false"
|
|
|
+ @click="
|
|
|
+ () => {
|
|
|
+ goExercise({
|
|
|
+ excellIssueName: item.excellIssueName,
|
|
|
+ sort: 2,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <template #icon>
|
|
|
+ <div class="icon-red">{{ '新' }}</div>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<!-- <van-cell
|
|
@@ -85,6 +113,7 @@
|
|
|
<div class="icon-red">{{ index + 1 }}</div>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
+
|
|
|
</div>
|
|
|
<div style="height: 40rpx; width: 750rpx"></div>
|
|
|
<m-classify-tip :content="classifyTip"></m-classify-tip>
|
|
@@ -103,6 +132,7 @@ export default {
|
|
|
"模拟考试能连续5次以上达到96分左右,即可参加考试",
|
|
|
"如果模拟考试达不到要求,请把右边的选学题也学习一遍",
|
|
|
],
|
|
|
+ classDataSpecial:[],
|
|
|
classDataRight: [],
|
|
|
classDataLeft: [],
|
|
|
query: {
|
|
@@ -159,10 +189,10 @@ export default {
|
|
|
api.exam
|
|
|
.studentQuestionInfoSelectJxQuestionInfo({
|
|
|
...this.query,
|
|
|
- excellIssueName: "新增",
|
|
|
+ excellIssueName: "新",
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- this.classDataLeft = [...this.classDataLeft, ...res.data];
|
|
|
+ this.classDataSpecial = [...res.data];
|
|
|
});
|
|
|
});
|
|
|
}
|
|
@@ -217,8 +247,8 @@ export default {
|
|
|
align-content: flex-start;
|
|
|
align-items: flex-start;
|
|
|
flex-wrap: wrap;
|
|
|
- flex-direction: column;
|
|
|
-
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
.cell {
|
|
@@ -241,8 +271,8 @@ export default {
|
|
|
margin-right: 10rpx;
|
|
|
}
|
|
|
.icon-red {
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
+ width: 50rpx;
|
|
|
+ height: 50rpx;
|
|
|
background: red;
|
|
|
border-radius: 50%;
|
|
|
font-weight: 500;
|