This commit is contained in:
@fawn-nine
2024-08-28 10:28:12 +08:00
parent 48a5c3400e
commit 3227a6542a
6 changed files with 26 additions and 13 deletions

View File

@@ -59,18 +59,24 @@
</view>
</view>
<!-- <view class="optionsBox" >
<view class="">
<view class="gotoExams" >
<text>去考试</text>
</view>
<view class="flex_box flex_between">
<view class="">
<view class="gotoExams" @click="getTestPaper">
<text>去考试</text>
</view>
<view class="">
<text>卷面成绩60</text><text class="small_btn retake border_radius_10">再考一次</text>
</view>
</view>
</view>
<view class="chengji">
<view>总成绩为<text class="scoreNumber greenScore">90</text> <text class="c999">50考试分+40平时表现分</text></view>
<view style="margin-top: 20rpx;">恭喜您获得<text class="greenScore">A证</text> <text class="small_btn border_radius_10 zhengshu">查看证书</text></view>
<view >恭喜您获得<text class="greenScore">A证</text> <text class="small_btn border_radius_10 zhengshu">查看证书</text></view>
<view style="margin-top: 20rpx; text-align: center;">很遗憾您的成绩未达标</view>
<view class="" style="margin-top: 20rpx; text-align: center;">
<text class="small_btn chongxiu border_radius_10">加入新班级重修</text>
</view>
<view style="margin-top: 20rpx;">总成绩为<text class="scoreNumber greenScore">90</text> <text class="c999">50考试分+40平时表现分</text></view>
</view>
</view> -->
</view>
@@ -270,7 +276,7 @@
<view class="arryItemSub" v-for="(item,index) in admins.scorer" :key="index">
<template v-if="item.user != null">
<text>{{item.user.nickname != null && item.user.nickname != '' ? item.user.nickname : '匿名用户'}}</text>
<text>({{item.user.tel}}) </text>
<text>({{item.user.tel}}),</text>
</template>
</view>
</template>
@@ -468,6 +474,10 @@
},
},
methods: {
getTestPaper(){
},
changeZheDie(item, index){
this.taskList[index].zhedie = !this.taskList[index].zhedie
@@ -1537,4 +1547,5 @@
background-color: #f4a2a6;
}
}
.retake{border: 1px solid #5049cf; color: #5049cf;}
</style>