| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776 |
- <template>
- <el-container v-if="show">
- <el-header style="margin-top: 60px">
- <el-row>
- <el-col :span="18" :offset="3" style="border-bottom: 1px solid #f5f5f5">
- <span class="startExam">开始考试</span>
- <span class="examTitle">距离考试结束还有:</span>
- <span style="color: red;font-size: 18px;">{{ duration | timeFormat }}</span>
- <el-button
- type="warning"
- round
- style="background-color: #ffd550;float: right;color: black;font-weight: 800"
- @click="uploadExamToAdmin"
- >提交试卷
- </el-button>
- </el-col>
- </el-row>
- </el-header>
- <el-main>
- <el-row>
- <el-col :span="18" :offset="3">
- <el-col :span="16">
- <el-card style="min-height: 500px">
- <!-- 题目信息 -->
- <div>
- <span v-if="questionList[curIndex].questionType === 1">【单选题】</span>
- <span v-else-if="questionList[curIndex].questionType === 2">【多选题】</span>
- <span v-else-if="questionList[curIndex].questionType === 3">【不定项选择题】</span>
- <span v-else-if="questionList[curIndex].questionType === 4">【判断题】</span>
- <span v-else-if="questionList[curIndex].questionType === 5">【填空题】</span>
- <span v-else-if="questionList[curIndex].questionType === 6">【问答题】</span>
- <span v-else-if="questionList[curIndex].questionType === 7">【理解题】</span>
- <span v-else>【综合题】</span>
- <br>
- <br>
- <i class="num">{{ curIndex + 1 }}</i>
- <span>{{ questionList[curIndex].questionContent }}:</span>
- </div>
- <!--题目中的配图-->
- <img
- v-for="url in questionList[curIndex].images"
- :src="url"
- title="点击查看大图"
- alt="题目图片"
- style="width: 100px;height: 100px;cursor: pointer"
- @click="showBigImg(url)"
- >
- <!-- 单选和判断题候选答案列表 -->
- <div
- v-show="questionList[curIndex].questionType === 1
- || questionList[curIndex].questionType === 4"
- style="margin-top: 25px"
- >
- <div class="el-radio-group">
- <label
- v-for="(item,index) in questionList[curIndex].answer"
- :class="index === userAnswer[curIndex] ? 'active' : ''"
- @click="checkSingleAnswer(index)"
- >
- <span>{{ optionName[index] + '、' + item.answer }}</span>
- <img
- v-for="i2 in item.images"
- v-if="item.images !== null"
- style="position: absolute;left:100%;top:50%;transform: translateY(-50%);width: 40px;height: 40px;float: right;cursor: pointer;"
- title="点击查看大图"
- :src="i2"
- alt=""
- @mouseover="showBigImg(i2)"
- >
- </label>
- </div>
- </div>
- <!-- 多选和不定项选择题的候选答案列表 -->
- <div
- v-show="questionList[curIndex].questionType === 2
- || questionList[curIndex].questionType === 3"
- style="margin-top: 25px"
- >
- <div class="el-radio-group">
- <label
- v-for="(item,index) in questionList[curIndex].answer"
- :class="(userAnswer[curIndex]+'').indexOf(index+'') !== -1? 'active' : ''"
- @click="selectedMultipleAnswer(index)"
- >
- <span>{{ optionName[index] + '、' + item.answer }}</span>
- <img
- v-for="i2 in item.images"
- v-if="item.images !== null"
- style="position: absolute;left:100%;top:50%;transform: translateY(-50%);
- width: 40px;height: 40px;float: right;cursor: pointer;"
- title="点击查看大图"
- :src="i2"
- alt=""
- @mouseover="showBigImg(i2)"
- >
- </label>
- </div>
- </div>
- <!-- 填空题和问答题的回答区 -->
- <div
- v-show="questionList[curIndex].questionType === 5
- || questionList[curIndex].questionType === 6"
- style="margin-top: 25px"
- >
- <el-input
- v-model="userAnswer[curIndex]"
- type="textarea"
- :rows="8"
- placeholder="请输入答案"
- />
- </div>
- <!-- 综合题的回答区 -->
- <div
- v-show="questionList[curIndex].questionType === 8"
- style="margin-top: 25px"
- >
- <el-input
- v-model="userAnswer[curIndex]"
- type="textarea"
- :rows="8"
- placeholder="请输入答案"
- />
- </div>
- <!-- 上一题和下一题按钮 -->
- <div style="margin-top: 25px">
- <el-button type="primary" icon="el-icon-back" :disabled="curIndex<1" @click="curIndex--">上一题</el-button>
- <el-button
- type="primary"
- icon="el-icon-right"
- :disabled="curIndex>=questionList.length-1"
- @click="curIndex++"
- >下一题
- </el-button>
- </div>
- </el-card>
- </el-col>
- <!-- 答题卡 -->
- <el-col :span="7" :offset="1">
- <el-card>
- <div>
- <p style="font-size: 18px;">答题卡</p>
- <div style="margin-top: 25px">
- <span
- style="background-color: rgb(238,238,238);padding: 5px 10px 5px 10px;margin-left: 15px"
- >未作答</span>
- <span
- style="background-color: rgb(87,148,247);color: white;padding: 5px 10px 5px 10px;margin-left: 15px"
- >已作答</span>
- </div>
- </div>
- <!-- 单选的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">单选题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 1"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 1 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- <!-- 多选的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">多选题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 2"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 2 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- <!-- 不定项选择题的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">多选题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 3"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 3 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- <!-- 判断题的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">判断题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 4"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 4 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- <!-- 填空题的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">填空题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 5"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 5 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- <!-- 问答题的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">问答题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 6"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 6 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- <!-- 综合题的答题卡 -->
- <div style="margin-top: 25px">
- <p style="font-size: 18px;">综合题</p>
- <el-button
- v-for="item in questionList.length"
- v-show="questionList[item-1].questionType === 8"
- :key="item"
- style="margin-top: 10px;margin-left: 15px"
- size="mini"
- :class="questionList[item-1].questionType === 8 && userAnswer[item-1] !== undefined ?
- 'done' : userAnswer[item-1] === undefined ? curIndex === (item-1) ? 'orange' : 'noAnswer' : 'noAnswer'"
- @click="curIndex = item-1"
- >{{ item }}
- </el-button>
- </div>
- </el-card>
- </el-col>
- </el-col>
- </el-row>
- <video
- id="video"
- muted="muted"
- style="float:right;position: fixed;top: 80%;left: 85%"
- width="200px"
- height="200px"
- autoplay="autoplay"
- />
- <canvas id="canvas" hidden width="200px" height="200px" />
- </el-main>
- <!--图片回显-->
- <el-dialog :visible.sync="bigImgDialog" @close="bigImgDialog = false">
- <img style="width: 100%" :src="bigImgUrl">
- </el-dialog>
- </el-container>
- </template>
- <script>
- import { submitExamPaper, getExamInfoById, getQuestionByPaperId } from '@/api/exam'
- export default {
- name: 'ExamCard',
- filters: {
- ellipsis(value) {
- if (!value) return ''
- const max = 50
- if (value.length > max) {
- return value.slice(0, max) + '...'
- }
- return value
- },
- timeFormat(time) {
- // 分钟
- var minute = time / 60
- var minutes = parseInt(minute)
- if (minutes < 10) {
- minutes = '0' + minutes
- }
- // 秒
- var second = time % 60
- var seconds = Math.round(second)
- if (seconds < 10) {
- seconds = '0' + seconds
- }
- return `${minutes}:${seconds}`
- }
- },
- data() {
- return {
- // 当前考试的信息
- examInfo: {},
- // 当前的考试题目
- questionList: [
- {
- questionType: ''
- }
- ],
- // 当前题目的索引值
- curIndex: 0,
- // 控制大图的对话框
- bigImgDialog: false,
- // 当前要展示的大图的url
- bigImgUrl: '',
- // 用户选择的答案
- userAnswer: [],
- // 页面数据加载
- loading: {},
- // 页面绘制是否开始
- show: false,
- // 答案的选项名abcd数据
- optionName: ['A', 'B', 'C', 'D', 'E', 'F', 'G'],
- // 考试总时长
- duration: 0,
- // 摄像头对象
- mediaStreamTrack: null,
- // 诚信照片的url
- takePhotoUrl: [],
- // 摄像头是否开启
- cameraOn: false
- }
- },
- watch: {
- // 监控考试的剩余时间
- async duration(newVal) {
- const examDuration = {
- duration: newVal,
- timestamp: Date.now()
- }
- localStorage.setItem('examDuration' + this.examInfo.examId, JSON.stringify(examDuration))
- // 摄像头数据
- const constraints = {
- video: {
- width: 200,
- height: 200
- },
- audio: false
- }
- // 通过调用摄像头判断用户是否中途关闭摄像头
- /* const promise = navigator.mediaDevices.getUserMedia(constraints)
- promise.catch((back) => {
- this.cameraOn = false
- })*/
- if (!this.cameraOn) { // 如果摄像头未开启,就再次调用开启
- this.getCamera()
- }
- // 考试时间结束, 自动提交试卷
- if (newVal < 1) {
- /* if (this.cameraOn) {
- // 结束的时候拍照上传一张
- await this.takePhoto()
- this.closeCamera()
- }*/
- this.submitUserPayload(true)
- }
- }
- },
- created() {
- this.getExamInfo()
- // 页面数据加载的等待状态栏
- this.loading = this.$loading({
- body: true,
- lock: true,
- text: '数据拼命加载中,(*╹▽╹*)',
- spinner: 'el-icon-loading'
- })
- // 开启摄像头
- window.onload = () => {
- setTimeout(() => {
- this.getCamera()
- }, 1000)
- // 生成3次时间点截图
- const times = []
- for (let i = 0; i < 2; i++) {
- times.push(Math.ceil(Math.random() * this.duration * 1000))
- }
- times.push(10000)
- // 一次考试最多3次随机的诚信截图
- times.forEach(item => {
- window.setTimeout(() => {
- this.takePhoto()
- }, item)
- })
- }
- },
- mounted() {
- // 关闭浏览器窗口的时候移除 localstorage的时长
- var userAgent = navigator.userAgent // 取得浏览器的userAgent字符串
- var isOpera = userAgent.indexOf('Opera') > -1 // 判断是否Opera浏览器
- var isIE = userAgent.indexOf('compatible') > -1 && userAgent.indexOf('MSIE') > -1 && !isOpera // 判断是否IE浏览器
- var isIE11 = userAgent.indexOf('rv:11.0') > -1 // 判断是否是IE11浏览器
- var isEdge = userAgent.indexOf('Edge') > -1 && !isIE // 判断是否IE的Edge浏览器
- if (!isIE && !isEdge && !isIE11) { // 兼容chrome和firefox
- var _beforeUnload_time = 0; var _gap_time = 0
- var is_fireFox = navigator.userAgent.indexOf('Firefox') > -1// 是否是火狐浏览器
- window.onunload = function() {
- _gap_time = new Date().getTime() - _beforeUnload_time
- if (_gap_time <= 5) {
- localStorage.removeItem('examDuration' + this.examInfo.examId)
- } else { // 谷歌浏览器刷新
- }
- }
- window.onbeforeunload = function() {
- _beforeUnload_time = new Date().getTime()
- if (is_fireFox) { // 火狐关闭执行
- } else { // 火狐浏览器刷新
- }
- }
- }
- },
- methods: {
- // 查询当前考试的信息
- getExamInfo() {
- const paperId = this.$route.params.paperId
- getExamInfoById(paperId).then((resp) => {
- if (resp.code === 0) {
- this.examInfo = resp.data
- // 设置定时(秒)
- try {
- const examDuration = JSON.parse(localStorage.getItem('examDuration' + this.examInfo.examId) || '{}')
- if (examDuration.duration === 0 || Date.now() >= (examDuration.timestamp ||
- Date.now()) + (examDuration.duration * 1000 || Date.now())) {
- localStorage.removeItem('examDuration' + this.examInfo.examId)
- }
- this.duration = Math.min(JSON.parse(
- localStorage.getItem('examDuration' + this.examInfo.examId) || '{}').duration ||
- this.examInfo.examDuration * 60, this.examInfo.examDuration * 60)
- } catch (e) {
- localStorage.removeItem('examDuration' + this.examInfo.examId)
- }
- // 考试剩余时间定时器
- this.timer = window.setInterval(() => {
- if (this.duration > 0) this.duration--
- }, 1000)
- var paperId = this.examInfo.examId
- this.getQuestionInfo1(paperId)
- }
- })
- },
- // 查询考试的题目信息
- async getQuestionInfo1(paperId) {
- await getQuestionByPaperId(paperId).then(resp => {
- if (resp.code === 0) {
- this.questionList = resp.data || []
- // 重置问题的顺序 单选 多选 判断 简答
- this.questionList = this.questionList.sort(function(a, b) {
- return a.questionType - b.questionType
- })
- }
- })
- this.loading.close()
- this.show = true
- },
- // 点击展示高清大图
- showBigImg(url) {
- console.log('show big')
- console.log(url)
- this.bigImgUrl = url
- this.bigImgDialog = true
- },
- // ****************************************************************************************************************
- // 检验单选题的用户选择的答案
- checkSingleAnswer(index) {
- this.$set(this.userAnswer, this.curIndex, index)
- },
- // 多选题用户的答案选中
- selectedMultipleAnswer(index) {
- if (this.userAnswer[this.curIndex] === undefined) { // 当前是多选的第一个答案
- this.$set(this.userAnswer, this.curIndex, index)
- } else if (String(this.userAnswer[this.curIndex]).split(',').includes(index + '')) { // 取消选中
- const newArr = []
- String(this.userAnswer[this.curIndex]).split(',').forEach(item => {
- if (item !== '' + index) newArr.push(item)
- })
- if (newArr.length === 0) {
- this.$set(this.userAnswer, this.curIndex, undefined)
- } else {
- this.$set(this.userAnswer, this.curIndex, newArr.join(','))
- // 答案格式化顺序DBAC -> ABCD
- this.userAnswer[this.curIndex] = String(this.userAnswer[this.curIndex]).split(',').sort(function(a, b) {
- return a - b
- }).join(',')
- }
- } else if (!((this.userAnswer[this.curIndex] + '').split(',').includes(index + ''))) { // 第n个答案
- this.$set(this.userAnswer, this.curIndex, this.userAnswer[this.curIndex] += ',' + index)
- // 答案格式化顺序DBAC -> ABCD
- this.userAnswer[this.curIndex] = String(this.userAnswer[this.curIndex]).split(',').sort(function(a, b) {
- return a - b
- }).join(',')
- }
- },
- // ****************************************************************************************************************
- // 调用摄像头
- getCamera() {
- const constraints = {
- video: {
- width: 200,
- height: 200
- },
- audio: false
- }
- // 获得video摄像头
- const video = document.getElementById('video')
- /* const promise = navigator.mediaDevices.getUserMedia(constraints)
- promise.then((mediaStream) => {
- this.mediaStreamTrack = typeof mediaStream.stop === 'function' ? mediaStream : mediaStream.getTracks()[1]
- video.srcObject = mediaStream
- video.play()
- this.cameraOn = true
- }).catch((back) => {
- this.$message({
- duration: 1500,
- message: '请开启摄像头权限o(╥﹏╥)o!',
- type: 'error'
- })
- })*/
- },
- // 拍照
- async takePhoto() {
- if (this.cameraOn) { // 摄像头是否开启 开启了才执行上传信用图片
- // 获得Canvas对象
- const video = document.getElementById('video')
- const canvas = document.getElementById('canvas')
- const ctx = canvas.getContext('2d')
- ctx.drawImage(video, 0, 0, 200, 200)
- // toDataURL --- 可传入'image/png'---默认, 'image/jpeg'
- const img = document.getElementById('canvas').toDataURL()
- // 构造post的form表单
- const formData = new FormData()
- // convertBase64UrlToBlob函数是将base64编码转换为Blob
- formData.append('file', this.base64ToFile(img, 'examTakePhoto.png'))
- // 上传阿里云OSS
- /* await ossUtils.uploadImage(formData).then((resp) => {
- if (resp.code === 0) this.takePhotoUrl.push(resp.data)
- })*/
- }
- },
- // 关闭摄像头
- closeCamera() {
- const stream = document.getElementById('video').srcObject
- const tracks = stream.getTracks()
- tracks.forEach(function(track) {
- track.stop()
- })
- document.getElementById('video').srcObject = null
- },
- // 将摄像头截图的base64串转化为file提交后台
- base64ToFile(urlData, fileName) {
- const arr = urlData.split(',')
- const mime = arr[0].match(/:(.*?);/)[1]
- const bytes = atob(arr[1]) // 解码base64
- let n = bytes.length
- const ia = new Uint8Array(n)
- while (n--) {
- ia[n] = bytes.charCodeAt(n)
- }
- return new File([ia], fileName, { type: mime })
- },
- // ****************************************************************************************************************
- // 上传用户考试信息进入后台
- async uploadExamToAdmin() {
- console.log(this.userAnswer)
- if (this.cameraOn) await this.takePhoto()// 结束的时候拍照上传一张
- // 正则
- var reg = new RegExp('-', 'g')
- // 去掉用户输入的非法分割符号(-),保证后端接受数据处理不报错
- this.userAnswer.forEach((item, index) => {
- // 简答题答案处理
- if (this.questionList[index].questionType === 5 ||
- this.questionList[index].questionType === 6 ||
- this.questionList[index].questionType === 7) {
- this.userAnswer[index] = item.replace(reg, ' ')
- }
- })
- // 标记题目是否全部做完
- let flag = true
- for (let i = 0; i < this.userAnswer.length; i++) { // 检测用户是否题目全部做完
- if (this.userAnswer[i] === undefined) {
- flag = false
- }
- }
- // 如果用户所有答案的数组长度小于题目长度,这个时候也要将标志位置为false
- if (this.userAnswer.length < this.questionList.length) {
- flag = false
- }
- // 题目未做完
- if (!flag) {
- this.$confirm('当前试题暂未做完, 是否继续提交o(╥﹏╥)o ?', 'Tips', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.submitUserPayload(false)
- }).catch(() => {
- this.$notify({
- title: 'Tips',
- message: '继续加油! *^▽^*',
- type: 'success',
- duration: 2000
- })
- })
- } else { // 当前题目做完了
- if (this.cameraOn) {
- // 结束的时候拍照上传一张
- await this.takePhoto()
- this.closeCamera()
- }
- this.submitUserPayload(false)
- }
- },
- submitUserPayload(autoSubmit) {
- var msg = '考试结束了捏 *^▽^*'
- if (autoSubmit) {
- msg = '考试时间结束,已为您自动提交 *^▽^*'
- }
- const userPayload = {}
- userPayload.questionIds = []
- userPayload.userAnswers = this.userAnswer.join('-')
- this.questionList.forEach((item, index) => {
- userPayload.questionIds.push(item.questionId)
- // 当前数据不完整,用户回答不完整(我们自动补充空答案,防止业务出错)
- if (index > this.userAnswer.length) {
- userPayload.userAnswers += ' -'
- }
- })
- // 如果所有题目全部未答
- if (userPayload.userAnswers === '') {
- this.questionList.forEach(item => {
- userPayload.userAnswers += ' -'
- })
- userPayload.userAnswers.split(0, userPayload.userAnswers.length - 1)
- }
- userPayload.examId = parseInt(this.$route.params.paperId)
- userPayload.questionIds = userPayload.questionIds.join(',')
- userPayload.creditImgUrl = this.takePhotoUrl.join(',')
- submitExamPaper(userPayload).then((resp) => {
- if (resp.code === 0) {
- this.$notify({
- title: 'Tips',
- message: msg,
- type: 'success',
- duration: 2000
- })
- this.$router.push('/exam/result/' + resp.data)
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- * {
- font-weight: 800;
- }
- .el-container {
- width: 100%;
- height: 100%;
- }
- .startExam {
- color: #160f58;
- border-bottom: 4px solid #ffd550;
- font-size: 18px;
- font-weight: 700;
- padding-bottom: 10px
- }
- .examTitle {
- font-size: 18px;
- color: #cbcacf;
- margin-left: 20px;
- font-weight: 700;
- }
- .el-radio-group label {
- display: block;
- width: 400px;
- padding: 48px 20px 10px 20px;
- border-radius: 4px;
- border: 1px solid #dcdfe6;
- margin-bottom: 10px;
- cursor: pointer;
- position: relative;
- span {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- font-size: 16px;
- }
- }
- .el-radio-group label:hover {
- background-color: rgb(245, 247, 250);
- }
- /*当前选中的答案*/
- .active {
- border: 1px solid #1f90ff !important;
- opacity: .5;
- }
- /*做过的题目的高亮颜色*/
- .done {
- background-color: rgb(87, 148, 247);
- }
- /*未做题目的高亮颜色*/
- .noAnswer {
- background-color: rgb(238, 238, 238);
- }
- /*当前在做的题目高亮的颜色*/
- .orange {
- background-color: rgb(255, 213, 80);
- }
- .num {
- display: inline-block;
- background: url('../../assets/img/examTitle.png') no-repeat 95%;
- background-size: contain;
- height: 37px;
- width: 37px;
- line-height: 30px;
- color: #fff;
- font-size: 20px;
- text-align: center;
- margin-right: 15px;
- }
- </style>
|