YNUtdPlatform/pages/YNEduApp/exam/exam.vue

240 lines
6.2 KiB
Vue
Raw Normal View History

2024-08-12 16:19:57 +08:00
<template>
<view>
2024-08-15 17:47:52 +08:00
<u-navbar title="考试" @leftClick="leftClick" placeholder />
2024-08-12 16:19:57 +08:00
<div class="tab-wrapper">
<div v-for="(item, index) in tabList" :key="index" class="tab-item" @click="handleTab(item, index)">
<div :style="{ color: activeIndex === index ? '#409eff' : '#333' }">
{{ item.name }}
</div>
<div :class="{ 'tab-line': activeIndex === index }"></div>
</div>
</div>
<div class="content">
<div v-for="(item, index) in list" :key="index" class="item-wrapper">
2024-08-23 16:00:43 +08:00
<div class="title">{{ item.name }}</div>
2024-08-12 16:19:57 +08:00
<div class="name-status">
<div class="name">
2024-08-23 16:00:43 +08:00
{{ item.userName }}
2024-08-12 16:19:57 +08:00
<div class="name-sub">指派</div>
</div>
2024-08-23 16:00:43 +08:00
<div class="status">{{ item.status == 2 ? '已考试' : '未考试' }}</div>
2024-08-12 16:19:57 +08:00
</div>
2024-08-23 16:00:43 +08:00
<div class="time">{{ item.validityDate }}</div>
2024-08-12 16:19:57 +08:00
<div class="count-total">
2024-08-23 16:00:43 +08:00
<div class="count">考试{{ item.examNum }}</div>
<div class="total">总分{{ item.passScore }}</div>
2024-08-12 16:19:57 +08:00
</div>
<div class="bt-wrapper">
2024-08-23 16:00:43 +08:00
<div class="score">得分{{ item.examScore }}</div>
<div v-if="item.examNum == 0" class="btn" @click="handleExamination(item)">开始考试</div>
<div v-else class="btn-wrapper">
<div class="btn" @click="handleExamDataList(item)">考试数据</div>
<div class="btn" @click="handleExamination(item)">重新考试</div>
</div>
2024-08-12 16:19:57 +08:00
</div>
</div>
<!-- 暂无数据 -->
<div class="no-data" v-if="list.length == 0">
<image src="/static/images/zanwuneirong.png" mode="aspectFit" />
<view class="no-data-text">暂无内容</view>
</div>
</div>
</view>
</template>
<script>
2024-08-23 16:00:43 +08:00
import { getStudentExamList } from '@/api/eduApp/index'
2024-08-12 16:19:57 +08:00
export default {
data() {
return {
tabList: [{ name: '全部' }, { name: '待考' }, { name: '已考' }, { name: '缺考' }],
activeIndex: 0,
list: [],
// 全部列表
2024-08-23 16:00:43 +08:00
allList: [],
2024-08-12 16:19:57 +08:00
// 待考列表
waitList: [],
// 已考列表
alreadyList: [],
// 缺考列表
absentList: []
}
},
mounted() {
2024-08-23 16:00:43 +08:00
this.getList()
2024-08-12 16:19:57 +08:00
},
methods: {
2024-08-23 16:00:43 +08:00
async getList() {
const params = {
userId: 31,
source: 1
}
const res = await getStudentExamList(params)
// 根据 status 区分
this.list = this.allList
this.allList = this.list = res.data
this.waitList = res.data.filter(item => item.status === 1)
this.alreadyList = res.data.filter(item => item.status === 2)
},
2024-08-12 16:19:57 +08:00
handleTab(item, index) {
this.activeIndex = index
if (index === 0) {
this.list = this.allList
} else if (index === 1) {
this.list = this.waitList
} else if (index === 2) {
this.list = this.alreadyList
} else if (index === 3) {
this.list = this.absentList
}
},
// 开始考试
2024-08-23 16:00:43 +08:00
handleExamination(item) {
// examCount 1: 不限次 2: 及格终止 3: 自定义
if (item.examCount == 2 && item.results == 1) {
uni.showToast({
title: '此考试及格终止, 考试以及格, 无需再次考试',
icon: 'none'
})
return
} else if (item.examCount == 3 && item.examNum >= item.examCustom) {
uni.showToast({
title: '此考试有次数限制, 考试次数已达上限, 无法再考试了',
icon: 'none'
})
return
}
const params = {
id: item.id, // 试卷id
name: item.name, // 试卷名称
validityDate: item.validityDate, // 考试期限
cutNum: item.cutNum, // 切屏次数
responseTime: item.responseTime, // 考试时长
examNum: item.examNum, // 考试次数
examCount: item.examCount, // 考试次数类型
examCustom: item.examCustom // 自定义考试次数
}
2024-08-12 16:19:57 +08:00
uni.navigateTo({
2024-08-23 16:00:43 +08:00
url: `/pages/YNEduApp/exam/beforeExam?params=${JSON.stringify(params)}`
2024-08-12 16:19:57 +08:00
})
2024-08-15 17:47:52 +08:00
uni.removeStorageSync('from')
uni.setStorageSync('from', '/pages/YNEduApp/exam/exam')
},
leftClick() {
uni.navigateTo({
url: '/pages/YNEduApp/index/index'
})
2024-08-23 16:00:43 +08:00
},
// 考试数据
handleExamDataList(item) {
console.log('🚀 ~ handleExamDataList ~ item:', item)
const params = {
examId: item.id,
}
uni.navigateTo({
url: `/pages/YNEduApp/exam/examinationList?params=${JSON.stringify(params)}`
})
2024-08-12 16:19:57 +08:00
}
}
}
</script>
<style lang="scss" scoped>
.tab-wrapper {
display: flex;
justify-content: space-around;
2024-08-19 17:53:53 +08:00
/* background: #fff; */
2024-08-12 16:19:57 +08:00
margin-bottom: 10px;
.tab-item {
width: 25%;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 0;
.tab-line {
margin-top: 5px;
width: 30%;
height: 2px;
background-color: #409eff;
transition: width 0.3s;
}
}
}
.content {
padding: 0 10px;
.item-wrapper {
background: #fff;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
.title {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}
.name-status {
display: flex;
justify-content: space-between;
.name {
display: flex;
.name-sub {
margin-left: 5px;
color: #999;
}
}
.status {
color: #409eff;
}
}
.time {
color: #999;
margin-top: 10px;
}
.count-total {
display: flex;
justify-content: space-between;
margin-top: 10px;
.count {
color: #999;
}
.total {
color: #999;
}
}
.bt-wrapper {
display: flex;
justify-content: space-between;
margin-top: 10px;
.score {
color: #999;
}
2024-08-23 16:00:43 +08:00
.btn-wrapper {
display: flex;
}
2024-08-12 16:19:57 +08:00
.btn {
2024-08-23 16:00:43 +08:00
margin-left: 5px;
2024-08-12 16:19:57 +08:00
padding: 5px 10px;
background: #409eff;
color: #fff;
border-radius: 5px;
}
}
}
.no-data {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 100px;
.no-data-text {
margin-top: 10px;
color: #999;
}
}
}
</style>