123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <template>
- <view class="container">
- <view>
- <!-- 提示信息弹窗 -->
- <uni-popup ref="message" type="message">
- <uni-popup-message :type="msgType" :message="messageText" :duration="2000"></uni-popup-message>
- </uni-popup>
- </view>
- </view>
- <view style="width: 80vh;margin: auto;padding-bottom: 25px;">
- <view style="text-align: center;margin: auto; padding-top: 80px;" v-if="exams.length!==1&&!enter">
- <h3 style="display: inline-block">{{ '考生号:' + user.username }}</h3>
- <h3 v-if="user.grade!==undefined&&user.grade!==null" style="display: inline-block;margin-left: 50px">
- {{ "年级:" + user.grade }}
- </h3>
- <h3 v-if="user.sex!==undefined&&user.sex!==null" style="display: inline-block;margin-left: 50px">
- {{ "性别:" + (user.sex === 1 ? "男" : "女") }}
- </h3>
- <h3 style="display: inline-block;margin-left: 50px">{{ "姓名:" + user.realname }}</h3>
- </view>
- <uni-section>
- <uni-card class="box-card" v-if="exams.length===0&&!enter">
- <uni-row>
- <uni-col :span="4">
- </uni-col>
- <uni-col :span="16">
- <h1>当前并无考试,请退出</h1>
- <br>
- </uni-col>
- </uni-row>
- <uni-row>
- </uni-row>
- </uni-card>
- <view style="text-align: center;width: 300px;margin: auto;">
- <button type="primary" @click="infoExit()" v-if="exams.length===0&&!enter">退出
- </button>
- </view>
- <view v-if="!enter" v-for="o in exams" :key="o">
- <uni-card style="background-color:#f0fff3; " class="box-card" v-if="o.state==0&&exams.length>1">
- <uni-row class="allceter">
- <uni-col :span="12" style="font-size: 20px;">
- {{ '考试名称: '}}<strong>{{o.title }}</strong>
- </uni-col>
- <uni-col :span="6">
- <uni-tag :text="o. state_dictText" type="success" />
- </uni-col>
- <uni-col :span="6">
- <button v-if="o.tryCount<o.limitCount" type="primary" @click="enterExam(o.id)">进入考试</button>
- </uni-col>
- </uni-row>
- <l-divider color="#0e7020"></l-divider>
- <uni-row>
- <view style="font-size: 10px;color: #0e7020;">
- <strong>考试时间为: </strong>{{o.startTime}}--{{o.endTime}}
- </view>
- </uni-row>
- </uni-card>
- <uni-card style="background-color:#6a0001;" class="box-card" v-if="o.state==1&&exams.length>1">
- <uni-row class="allceter">
- <uni-col :span="12" style="font-size: 20px;">
- {{ '考试名称: '}}<strong>{{o.title }}</strong>
- </uni-col>
- <uni-col :span="6">
- <uni-tag text="不可用" type="warning" />
- </uni-col>
- <uni-col :span="6">
- <!-- <button type="primary" @click="enterExam(o.id)">进入考试</button> -->
- </uni-col>
- </uni-row>
- <l-divider />
- <uni-row>
- <view style="font-size: 10px;color: #6a0001;">
- <strong>考试时间为: </strong>{{o.startTime}}--{{o.endTime}}
- </view>
- </uni-row>
- </uni-card>
- <uni-card style="background-color:#e6f7ff;" class="box-card" v-if="o.state==2&&exams.length>1">
- <uni-row class="allceter">
- <uni-col :span="12" style="font-size: 20px;">
- {{ '考试名称: '}}<strong>{{o.title }}</strong>
- </uni-col>
- <uni-col :span="4">
- <uni-tag text="未开始" type="primary" />
- </uni-col>
- <uni-col :span="6">
- <!-- <button type="primary" @click="enterExam(o.id)">进入考试</button> -->
- </uni-col>
- </uni-row>
- <l-divider />
- <uni-row>
- <view style="font-size: 10px;color: #7a5324;">
- <strong>考试时间为: </strong>{{o.startTime}}--{{o.endTime}}
- </view>
- </uni-row>
- </uni-card>
- <uni-card style="background-color:#e3e3e3;" class="box-card" v-if="o.state==3&&exams.length>1">
- <uni-row class="allceter">
- <uni-col :span="12" style="font-size: 20px;">
- {{ '考试名称: '}}<strong>{{o.title }}</strong>
- </uni-col>
- <uni-col :span="6">
- <uni-tag text="已结束" type="default" />
- </uni-col>
- <uni-col :span="6">
- <!-- <button type="primary" @click="enterExam(o.id)">进入考试</button> -->
- </uni-col>
- </uni-row>
- <l-divider />
- <uni-row>
- <view style="font-size: 10px;color: #000000;">
- <strong>考试时间为: </strong>{{o.startTime}}--{{o.endTime}}
- </view>
- </uni-row>
- </uni-card>
- </view>
- </uni-section>
- <uni-section v-show="exams.length===1||enter">
- <uni-card :is-shadow="false">
- <!-- <view style="padding-top: 30px;text-align: center;">
- <h1>考试须知</h1>
- </view> -->
- <view
- style="width: 100%;text-align: center;margin-bottom: 20px;padding-top:30px ;padding-bottom: 15px;">
- <h1>{{ exam.title }}</h1>
- </view>
- <l-divider color="#adadad">
- <strong>
- <h2>考生信息</h2>
- </strong>
- </l-divider>
- <view class="text" style="width: 100%;text-align: center;padding: 15px;">
- <view>
- <view class="userInfo">
- <view>考生号:<strong>{{ user.username }}</strong></view>
- </view>
- <view class="userInfo" v-if="user.grade!==undefined&&user.grade!==null">
- <view>年 级:<strong>{{ user.grade }}</strong></view>
- </view>
- <view class="userInfo" v-if="user.sex!==undefined&&user.sex!==null">
- <view>性 别:<strong>{{ (user.sex === 1 ? "男" : "女") }}</strong></view>
- </view>
- <view class="userInfo">
- <view>姓 名:<strong>{{ user.realname }}</strong></view>
- </view>
- </view>
- </view>
- <l-divider color="#adadad">
- <strong>
- <h2>考试须知</h2>
- </strong>
- </l-divider>
- <view style="text-align: center;margin-bottom: 10px;color: #1d5b9d;">
- {{'考试时间:'+exam.startTime+'———'+exam.endTime}}
- </view>
- <view class="text">
- <view id="examMessage" style="width: 70vh; margin: auto;font-size: 16px;">
- <!-- <rich-text :nodes="exam.message"></rich-text> -->
- </view>
- </view>
- <button v-if="exam.state===0" type="primary" style="margin-top: 50px"
- @click="examStart(exam.id)">开始考试</button>
- <button v-else type="default" style="margin-top: 50px" disabled="true">未在考试时间</button>
- <view style="text-align: center;margin: auto;margin-top: 30px;">
- <button type="primary" @click="infoExit()" v-if="exams.length===1">退出
- </button>
- </view>
- <button v-if="exams.length>1&&enter" style="margin-top: 30px;" @click="enter=!enter">返回
- </button>
- </uni-card>
- </uni-section>
- </view>
- <view style="width: 80vh;margin: auto;padding-bottom: 30px;">
- <view style="text-align: center;width: 300px;margin: auto;">
- <button type="primary" @click="infoExit()" v-if="exams.length>1&&!enter">退出
- </button>
- </view>
- </view>
- <uni-popup ref="inputDialog" type="dialog">
- <uni-popup-dialog style="width: 50vh;" ref="inputClose" title="考生信息">
- <view>
- <view style="text-align: center;"><strong>姓名:</strong><strong>{{ user.realname }}</strong></view>
- <view></view>
- <view style="text-align: center;"><strong>考号:</strong><strong>{{ user.username }}</strong></view>
- <view></view>
- </view>
- </uni-popup-dialog>
- </uni-popup>
- </template>
- <script>
- import {
- exit,
- getExamCreateExam,
- getExamOnlineExam,
- getExamQueryById,
- getExamListExamIn
- } from '../../examJs/examRequest';
- import {
- toExamStart,
- redirectTo,
- toLogin,
- } from '../../examJs/examRoute.js'
- import screenfull from "screenfull";
- export default {
- name: 'examInfo',
- data() {
- return {
- isLoading: true,
- exams: [{
- id: 1
- }],
- enter: false,
- exam: {
- id: 1,
- message: ["点击开始考试后将自动进入考试,请遵守考场纪律诚信考试。", "考试试题,共3题。",
- "艺术类监测试卷分音乐和美术两个学科,其中音乐和美术各15分钟共计30分钟答卷时间,每一学科超时后将自动提交试卷。"
- ],
- Paper: []
- },
- user: {
- grade: "五年级"
- },
- msgType: 'success',
- messageText: '这是一条成功提示',
- }
- },
- mounted() {
- if (window.screen.width < 1024 || window.screen.height < 768) {
- window.alert("当前设备屏幕分辨率过低!请更换设备")
- exit()
- return;
- }
- screenfull.request();
- redirectTo()
- this.user = JSON.parse(sessionStorage.getItem("user"))
- getExamOnlineExam({
- pageNo: 1,
- pageSize: 80
- }).then((data) => {
- this.exams = data.data.result.records
- console.log(data.data.result.records);
- if (this.exams.length === 1) {
- this.enterExam(this.exams[0].id)
- }
- this.$refs.inputDialog.open()
- }).catch(xhr => {
- console.log(xhr);
- });
- },
- methods: {
- // 进入考试
- enterExam(index) {
- getExamQueryById({
- id: index
- }).then(data => {
- console.log(data)
- this.exam = data.data.result
- console.log(this.exam);
- document.getElementById('examMessage').innerHTML = this.exam.message
- this.enter = !this.enter
- }).catch(xhr => {
- console.log(xhr);
- });
- },
- messageToggle(type, message) {
- this.msgType = type
- this.messageText = message
- this.$refs.message.open()
- },
- // 退出
- infoExit() {
- screenfull.exit()
- exit()
- },
- // 开始考试
- examStart(examId) {
- getExamListExamIn({
- 't': new Date().toString()
- }).then(dataList => {
- console.log(dataList);
- if (dataList.data.result === null) {
- getExamCreateExam({
- 'examId': examId,
- 't': new Date().toString()
- }).then(data => {
- console.log(data);
- sessionStorage.setItem("examId", data.data.result.id)
- toExamStart()
- })
- } else {
- this.messageToggle('warn', "你有正在进行中的考试,正在跳转......")
- sessionStorage.setItem("examId", dataList.data.result.id)
- setTimeout(() => {
- toExamStart()
- }, 2000)
- }
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .text {
- padding-top: 15px;
- text-align: left;
- font-size: 14px;
- }
- .item {
- margin-bottom: 18px;
- }
- .clearfix:before,
- .clearfix:after {
- display: table;
- content: "";
- }
- .clearfix:after {
- clear: both
- }
- .box-card {
- margin: 20px auto auto;
- width: 100%;
- height: 110px;
- }
- .allceter {
- display: flex;
- align-items: center;
- height: 50px;
- }
- .userInfo {
- display: inline-block;
- width: 15vh;
- min-width: 150px;
- }
- </style>
|