1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000 |
- <template>
- <view class="mobile-shiti-page phone-kaoshi-page">
- <customNavbarVue :title="data.ksName" :show-back-btn="true" @back="handleBack"></customNavbarVue>
- <!-- 第一行 -->
- <view class="shiti-page-title kaoshi-page-title">
- <view v-if="activeSt" class="title-types">{{dlName}}</view>
- <!-- 倒计时 -->
- <view v-if="!!data.endSecond">
- <uni-countdown class="exam-countdown" :show-day="false" :showHour="true" :showMinute="true"
- :second="data.endSecond" @timeup="onTimeUp" :start="startCountDown"></uni-countdown>
- </view>
- </view>
- <view class="shiti-content-box">
- <!-- 内容区域 -->
- <!-- 试题区域 -->
- <view v-if="activeSt">
- <template v-if="activeSt.stTypeId == 1">
- <!-- 单选 -->
- <danxuan :question="activeSt" :key="activeSt.stId"></danxuan>
- </template>
- <template v-if="activeSt.stTypeId == 2">
- <!-- 多选 -->
- <duoxuan :question="activeSt" :key="activeSt.stId"></duoxuan>
- </template>
- <template v-if="activeSt.stTypeId == 3">
- <!-- 判断 -->
- <panduan :question="activeSt" :key="activeSt.stId"></panduan>
- </template>
- <template v-if="activeSt.stTypeId == 4">
- <!-- 填空 -->
- <tiankong :question="activeSt" :key="activeSt.stId"></tiankong>
- </template>
- <template v-if="activeSt.stTypeId == 5">
- <!-- 简答 -->
- <jianda :question="activeSt" :key="activeSt.stId"></jianda>
- </template>
- <template v-if="activeSt.stTypeId == 6">
- <!-- 阅读 -->
- <yuedu :question="activeSt" :key="activeSt.stId"></yuedu>
- </template>
- </view>
- </view>
- <view class="shiti-bottom-box kaoshi-bottom-box" v-if="activeSt">
- <button class="phone-green-btn" :class="[activeSt.marked ? 'qb-btn' : 'bj-btn']" hover-class="none"
- type="default" size="mini" @click="handleBiaoji">{{activeSt && activeSt.marked ? '取标':'标记'}}</button>
- <view @click="showAnswerCard" class="shiti-num-box">
- <icon class="shiti-num-icon"></icon>
- <text class="active-num">{{answercartsCount}}</text>/<text>{{data.StListForSearch.length}}</text>
- </view>
- <view class="save-btn-box">
- <button class="phone-green-btn save-btn" hover-class="none" type="default" size="mini"
- @click="handleSave(true)">保存</button>
- <button @click="handleJiaojuan" class="phone-green-btn save-btn" hover-class="none" type="default"
- size="mini">
- 交卷并查看成绩</button>
- </view>
- </view>
- <template v-if="activeSt">
- <button type="default" size="mini" hover-class="none" class="phone-green-btn st-btn-prev"
- @click="handlePrev" v-if="!isFistStId">上一题</button>
- <button type="default" size="mini" hover-class="none" class="phone-green-btn st-btn-next"
- @click="handleNext" v-if="!isLastStId">下一题</button>
- </template>
- <!-- 答题卡 -->
- <uni-popup ref="popupRef" background-color="#fff" :animation="false" :is-mask-click="false" :mask-click="false">
- <view class="answer-card-popup">
- <customNavbarVue class="card-navBar-box" title="答题卡" :show-back-btn="true" @back="handlePopupBack">
- </customNavbarVue>
- <view class="card-content-box">
- <view class="answer-card-content" v-for="(paragraph,paragraphIndex) in questionData"
- :key="paragraphIndex">
- <view class="paragraph-title">
- {{paragraph.name}}
- </view>
- <view class="paragraph-qa" v-for="(qa,qaIndex) in paragraph.qas" :key="qaIndex"
- :class="getQaClass(qa)" @click="answerCardItemClick(qa)">{{qa.onlyNum}}
- </view>
- </view>
- </view>
- <view class="answer-card-btn-box">
- <view class="card-btn card-save-btn" @click="handleSave(true)">保存</view>
- <view @click="handleJiaojuan" class="card-btn card-jj-btn"> 交卷并查看成绩</view>
- </view>
- </view>
- </uni-popup>
- <!-- 交卷确认 -->
- <answerQueren ref="answerQrRef" @confirm="handleQuerenConfirm"></answerQueren>
- <!-- 考试得分 -->
- <submitScoreVue ref="subScoreRef" @confirm="handleScoreConfirm" @close="handleScoreClose"></submitScoreVue>
- <!-- 人工 -->
- <common-dialog ref="dl4ref" title="考试得分" :showNotBtn="false" content="等待人工评分结束后,可登录 “个人成绩” 模块,查看本次考试的成绩!"
- @confirm-btn="handleBack"></common-dialog>
- <!-- 直接出成绩 -->
- <common-dialog ref="dl3ref" title="考试得分" :showNotBtn="false"
- :content="`您的成绩,将在${seeResultTime}公布。您可以登录“个人成绩”模块,查看本次考试的成绩!`" @confirm-btn="handleBack"></common-dialog>
- <!-- 不发布成绩 -->
- <common-dialog ref="dl5ref" :showNotBtn="false" title="提示" content="交卷成功!"
- @confirm-btn="handleBack"></common-dialog>
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- computed,
- watch,
- nextTick
- } from "vue";
- import {
- onLoad
- } from "@dcloudio/uni-app";
- import * as ksApi from "@/api/exam.js"
- import danxuan from "@/components/questions/danxuan.vue";
- import duoxuan from "@/components/questions/duoxuan.vue";
- import tiankong from "@/components/questions/tiankong.vue";
- import panduan from "@/components/questions/panduan.vue";
- import jianda from "@/components/questions/jianda.vue";
- import yuedu from "@/components/questions/yuedu.vue";
- import {
- useQuestionTools
- } from "@/components/questions/useQuestionTools.js";
- import {
- useKaoShiCache
- } from "./examTools"
- import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
- import commonDialog from "@/components/dialog/commonDialog.vue"
- import answerQueren from "@/components/zhuapaiConfirm/answerQueren.vue";
- import submitScoreVue from "@/components/zhuapaiConfirm/submitScore.vue";
- const {
- checkDanxuanReply,
- checkDuoxuanReply,
- checkPanduanReply,
- checkTiankongReply,
- getLetterByIndex,
- checkJiandaReply,
- checkYueduReply
- } = useQuestionTools();
- const {
- saveCacheKs,
- getCacheKs,
- removeCacheKs
- } = useKaoShiCache();
- onLoad((option) => {
- data.ksId = option.ksId;
- data.zhuapai = option.zhuapai;
- if (data.zhuapai && data.zhuapai != 0) {
- // 考试前确认摄像头
- nextTick(() => {
- // initBeforKaoshi();
- })
- } else {
- console.log('初始化')
- initKaoshi();
- }
- })
- const popupRef = ref(null)
- const zhuapaiRef = ref(null)
- const qiepingRef = ref(null)
- const zhuapaiConfirmRef = ref(null)
- const answerQrRef = ref(null);
- const startCountDown = ref(false);
- const subScoreRef = ref(null);
- const messageContent = ref('');
- const qiepingDlRef = ref(null);
- const timer1 = ref(null);
- const answercartsCount = ref(0); // 已答题数
- const dl3ref = ref(null)
- const dl4ref = ref(null)
- const dl5ref = ref(null)
- const seeResultTime = ref(null)
- const autoSaveInterval = ref(null)
- const autoSaveInterval2 = ref(null)
- const data = reactive({
- ksId: null,
- operId: null,
- ksName: '',
- stTotal: 0,
- stScore: 0,
- biaoji: {},
- endSecond: 0,
- pageSize: 0,
- toggleScreenFlag: 0,
- toggleScreenSecond: 0,
- zhuapai: 0,
- duanluo: [],
- StListForSearch: [],
- from: '',
- hisId: '',
- })
- const markDB = ref([]);
- const questionData = ref([]);
- const progress = reactive({
- dlIndex: 0,
- dtIndex: 0
- })
- const dlName = computed(() => {
- if (data.StListForSearch && activeSt.value) {
- return data.StListForSearch[activeSt.value.onlyNum - 1].paragraphName
- } else {
- return ''
- }
- })
- watch(() => questionData, (newVal) => {
- // 计算已答试题数量
- renderPage(newVal);
- }, {
- deep: true
- })
- function renderPage(data) {
- let count = 0;
- for (const paragraph of data.value) {
- for (const qa of paragraph.qas) {
- if (qa.stTypeId == 1) {
- if (checkDanxuanReply(qa)) {
- count++;
- }
- } else if (qa.stTypeId == 2) {
- if (checkDuoxuanReply(qa)) {
- count++;
- }
- } else if (qa.stTypeId == 3) {
- if (checkPanduanReply(qa)) {
- count++;
- }
- } else if (qa.stTypeId == 4) {
- if (checkTiankongReply(qa)) {
- count++;
- }
- } else if (qa.stTypeId == 5) {
- if (checkJiandaReply(qa)) {
- count++;
- }
- } else if (qa.stTypeId == 4) {
- if (checkYueduReply(qa)) {
- count++;
- }
- }
- }
- }
- answercartsCount.value = count;
- }
- const activeSt = computed(() => {
- if (questionData.value.length) {
- return questionData.value.length && questionData.value[progress.dlIndex].qas[progress.dtIndex];
- } else {
- return null
- }
- })
- const isFistStId = computed(() => {
- if (data.StListForSearch.length) {
- return data.StListForSearch[0].stId == activeSt.value.stId
- } else {
- return false
- }
- });
- const isLastStId = computed(() => {
- if (data.StListForSearch.length) {
- return data.StListForSearch[data.StListForSearch.length - 1].stId == activeSt.value.stId
- } else {
- return false
- }
- });
- function handleScoreClose() {
- handleBack()
- }
- // 考试得分相关 start
- function handleScoreConfirm() {
- // 跳转成绩
- uni.switchTab({
- url: `/pages/score/index`
- })
- }
- // 考试得分相关 end
- // 保存相关
- function handleSave(showToast) {
- if (timer1.value) {
- uni.showToast({
- title: '请勿连续保存',
- icon: 'none'
- })
- return
- }
- timer1.value = setTimeout(() => {
- clearTimeout(timer1.value);
- }, 10 * 1000);
- const result = []
- const option = {
- operId: data.operId,
- replyList: []
- }
- questionData.value.forEach(dl => {
- dl.qas.forEach(qa => {
- console.log('qa:', qa)
- if (qa.stTypeId == 5) {
- const opt = {
- stId: qa.stId,
- files: qa.files,
- reply: qa.reply,
- }
- result.push(opt)
- option.replyList.push(opt)
- } else if (qa.stTypeId != 6) {
- const opt = {
- stId: qa.stId,
- reply: qa.reply,
- }
- result.push(opt)
- option.replyList.push(opt)
- } else {
- // 阅读题
- let danxuanArr = [];
- for (const iDanxuan of qa.danxuan) {
- danxuanArr.push(iDanxuan.reply);
- }
- let duoxuanArr = [];
- for (const iDuoxuan of qa.duoxuan) {
- duoxuanArr.push(iDuoxuan.reply);
- }
- let panduanArr = [];
- for (const iPanduan of qa.panduan) {
- panduanArr.push(iPanduan.reply);
- }
- let tiankongArr = [];
- for (const iTiankong of qa.tiankong) {
- tiankongArr.push(iTiankong.reply);
- }
- let jiandaArr = [];
- for (const iJianda of qa.jianda) {
- const c = {
- files: iJianda.files,
- reply: iJianda.reply,
- };
- jiandaArr.push(c);
- }
- result.push({
- reply: {
- danxuan: danxuanArr,
- duoxuan: duoxuanArr,
- panduan: panduanArr,
- tiankong: tiankongArr,
- jianda: jiandaArr,
- },
- stId: qa.stId,
- })
- option.replyList.push({
- reply: {
- danxuan: danxuanArr,
- duoxuan: duoxuanArr,
- panduan: panduanArr,
- tiankong: tiankongArr,
- jianda: jiandaArr,
- },
- stId: qa.stId,
- });
- }
- })
- })
- // 保存试题答案
- saveCacheKs(data.operId, {
- replyList: result,
- position: {
- dlIndex: progress.dlIndex,
- dtIndex: progress.dtIndex
- }
- })
- // 保存答题进度
- ksApi.getClientKsSave(option).then(res => {
- if (res.data && showToast) {
- uni.showToast({
- title: '保存成功',
- })
- }
- })
- }
- // 交卷相关功能 start
- function checkJiaojuan() {
- const result = []
- let count = 0;
- let total = 0;
- questionData.value.forEach(item => {
- item.qas.forEach(qa => {
- total++;
- if (qa.stTypeId == 1 && !checkDanxuanReply(qa)) {
- count++;
- }
- if (qa.stTypeId == 2 && !checkDuoxuanReply(qa)) {
- count++;
- }
- if (qa.stTypeId == 3 && !checkPanduanReply(qa)) {
- count++;
- }
- if (qa.stTypeId == 4 && !checkTiankongReply(qa)) {
- count++;
- }
- if (qa.stTypeId == 5 && !checkJiandaReply(qa)) {
- count++;
- }
- if (qa.stTypeId == 6 && !checkYueduReply(qa)) {
- count++;
- }
- })
- })
- return {
- total,
- count,
- }
- }
- function handleJiaojuan() {
- const result = checkJiaojuan()
- console.log('answerQrRef.value',answerQrRef.value)
- if (result.count) {
- // 提示
-
- answerQrRef.value.showDialog({
- answercartsCount: result.total - result.count,
- answercartsTotal: result.total,
- })
- } else {
- handleSubmit()
- }
- }
- function handleQuerenConfirm() {
- handleSubmit()
- }
- function handleSubmit(force = false) {
- const result = {
- force,
- operId: data.operId,
- replyList: []
- };
- questionData.value.forEach(dl => {
- dl.qas.forEach(st => {
- if (st.stTypeId == 5) {
- // 简答题
- const opt = {
- stId: st.stId,
- reply: st.reply,
- files: st.files,
- }
- result.replyList.push(opt)
- } else if (st.stTypeId == 6) {
- // 阅读题
- // 阅读题
- let danxuanArr = [];
- for (const iDanxuan of st.danxuan) {
- danxuanArr.push(iDanxuan.reply);
- }
- let duoxuanArr = [];
- for (const iDuoxuan of st.duoxuan) {
- duoxuanArr.push(iDuoxuan.reply);
- }
- let panduanArr = [];
- for (const iPanduan of st.panduan) {
- panduanArr.push(iPanduan.reply);
- }
- let tiankongArr = [];
- for (const iTiankong of st.tiankong) {
- tiankongArr.push(iTiankong.reply);
- }
- let jiandaArr = [];
- for (const iJianda of st.jianda) {
- const c = {
- files: iJianda.files,
- reply: iJianda.reply,
- };
- jiandaArr.push(c);
- }
- result.replyList.push({
- reply: {
- danxuan: danxuanArr,
- duoxuan: duoxuanArr,
- panduan: panduanArr,
- tiankong: tiankongArr,
- jianda: jiandaArr,
- },
- stId: st.stId,
- })
- } else {
- // 其他
- const opt = {
- stId: st.stId,
- reply: st.reply
- }
- result.replyList.push(opt)
- }
- })
- })
- ksApi.getClientKsSubmit(result).then(res => {
- if (res.code == 0) {
- let data1 = res.data;
- console.log('data1',data1)
- console.log('data1.waitGrade === false',data1.waitGrade === false)
- // 清空缓存
- removeCacheKs(data1.operId);
- if (data1.waitGrade == false) {
- // describe:修改bug seeResultFlag 发布成绩标记(0不发布、1立即发布、2定时发布)
- if (data1.seeResultFlag === 1) {
- subScoreRef.value.showDialog(data1);
- data.hisId = data1.hisId;
- } else if (data1.seeResultFlag === 0) {
- dl5ref.value.handleShow();
- } else {
- // dialog3
- seeResultTime.value = data1.seeResultTime;
- dl3ref.value.handleShow()
- }
- } else {
- // dialog4
- dl4ref.value.handleShow()
- }
- clearInterval(autoSaveInterval.value)
- clearInterval(autoSaveInterval2.value)
- }
- })
- }
- function onTimeUp() {
- handleSubmit();
- }
- // 交卷相关功能 end
- // 切屏功能 start
- function qiepingToast(count) {
- messageContent.value = `已离开${count}次。${data.toggleScreenFlag}次将自动交卷!`
- qiepingDlRef.value.handleShow()
- }
- function forceSubmit() {
- // 强制交卷
- console.log('强制交卷')
- handleSubmit(true)
- }
- function qpZhuapai() {
- // 重新开启抓拍
- zhuapaiRef.value && zhuapaiRef.value.showVideoBtn();
- }
- // 切屏功能 end
- // 摄像头抓拍相关功能 start
- function zpSuccess() {}
- function zpError() {
- uni.showToast({
- title: '抓拍图片异常',
- icon: 'none'
- })
- handleBack()
- }
- // 摄像头抓拍相关功能 end
- // 摄像头确认相关功能 start
- function onProgress() {
- uni.showToast({
- icon: 'none',
- title: '摄像头运行环境异常,请重新进入考试',
- duration: 8000
- })
- handleBack();
- }
- function zpConfirmSuccess() {
- console.log('zpConfirmSuccess')
- initKaoshi();
- }
- function zpConfirmError() {
- handleBack()
- }
- function zpConfirmCancel() {
- handleBack()
- }
- // 摄像头确认相关功能 end
- function getQaClass(qa) {
- if (qa.marked && qa.marked === true) {
- return 'paragraph-qa-block-mark';
- } else {
- if (qa.stTypeId == 1) {
- if (checkDanxuanReply(qa)) {
- return 'paragraph-qa-block-done';
- } else {
- return 'paragraph-qa-block-init';
- }
- } else if (qa.stTypeId == 2) {
- if (checkDuoxuanReply(qa)) {
- return 'paragraph-qa-block-done';
- } else {
- return 'paragraph-qa-block-init';
- }
- } else if (qa.stTypeId == 3) {
- if (checkPanduanReply(qa)) {
- return 'paragraph-qa-block-done';
- } else {
- return 'paragraph-qa-block-init';
- }
- } else if (qa.stTypeId == 4) {
- if (checkTiankongReply(qa)) {
- return 'paragraph-qa-block-done';
- } else {
- return 'paragraph-qa-block-init';
- }
- } else if (qa.stTypeId == 5) {
- if (checkJiandaReply(qa)) {
- return 'paragraph-qa-block-done';
- } else {
- return 'paragraph-qa-block-init';
- }
- } else if (qa.stTypeId == 6) {
- if (checkYueduReply(qa)) {
- return 'paragraph-qa-block-done';
- } else {
- return 'paragraph-qa-block-init';
- }
- }
- }
- }
- function skipQuestion(dlIndex, dtIndex) {
- progress.dlIndex = dlIndex;
- progress.dtIndex = dtIndex;
- handlePopupBack()
- }
- function answerCardItemClick(qa) {
- const actQa = data.StListForSearch.find(item => item.stId == qa.stId);
- console.log('actQa', actQa)
- skipQuestion(actQa.dlIndex, actQa.dtIndex)
- }
- function handleBack() {
- // const pages = getCurrentPages();
- // if (pages.length > 1) {
- // uni.navigateBack()
- // } else {
- // history.back();
- // }
- uni.navigateBack()
- autoSaveInterval.value && clearInterval(autoSaveInterval.value)
- autoSaveInterval2.value && clearInterval(autoSaveInterval2.value)
- }
- function showAnswerCard() {
- popupRef.value.open('top')
- }
- function handlePopupBack() {
- popupRef.value.close()
- }
- function handlePrev() {
- const qa = data.StListForSearch.find(item => item.stId == activeSt.value.stId);
- const index = qa.onlyNum - 1;
- if (index > 0) {
- const result = data.StListForSearch[index - 1];
- progress.dlIndex = result.dlIndex;
- progress.dtIndex = result.dtIndex
- }
- }
- function handleNext() {
- const qa = data.StListForSearch.find(item => item.stId == activeSt.value.stId);
- const index = qa.onlyNum - 1;
- if (index < data.StListForSearch.length) {
- const result = data.StListForSearch[index + 1];
- progress.dlIndex = result.dlIndex;
- progress.dtIndex = result.dtIndex
- }
- }
- function formatDuanluoList(dlData) {
- let uIndex = 0; // 试题onlyNum
- let iDuanluo = 0; // 段落onlyNum
- let result = [];
- for (const duanluo of data.duanluo) {
- let paragraph = {
- qas: [],
- };
- paragraph.name = duanluo.name;
- let iQa = 0; // 当前试题序号
- let order = 0; // 当前题型中第几题
- for (const iDanxuan of duanluo.danxuan) {
- iDanxuan.type = 'danxuan';
- iDanxuan.marked = data.biaoji[iDanxuan.stId] ? true : false;
- iDanxuan.onlyNum = uIndex + 1;
- iDanxuan.order = order;
- iDanxuan.iQa = iQa;
- paragraph.qas.push(iDanxuan);
- uIndex++;
- order++;
- iQa++;
- data.StListForSearch.push({
- stId: iDanxuan.stId,
- paragraphName: paragraph.name,
- dlIndex: iDuanluo,
- dtIndex: iDanxuan.iQa,
- onlyNum: iDanxuan.onlyNum
- })
- }
- order = 0;
- for (const iDuoxuan of duanluo.duoxuan) {
- iDuoxuan.type = 'duoxuan';
- iDuoxuan.marked = data.biaoji[iDuoxuan.stId] ? true : false;
- iDuoxuan.onlyNum = uIndex + 1;
- iDuoxuan.order = order;
- paragraph.qas.push(iDuoxuan);
- iDuoxuan.iQa = iQa;
- iDuoxuan.reply = [];
- uIndex++;
- order++;
- iQa++;
- data.StListForSearch.push({
- stId: iDuoxuan.stId,
- paragraphName: paragraph.name,
- dlIndex: iDuanluo,
- dtIndex: iDuoxuan.iQa,
- onlyNum: iDuoxuan.onlyNum
- })
- }
- order = 0;
- for (const iPanduan of duanluo.panduan) {
- iPanduan.type = 'panduan';
- iPanduan.marked = data.biaoji[iPanduan.stId] ? true : false;
- iPanduan.onlyNum = uIndex + 1;
- iPanduan.order = order;
- paragraph.qas.push(iPanduan);
- iPanduan.iQa = iQa;
- uIndex++;
- order++;
- iQa++;
- data.StListForSearch.push({
- stId: iPanduan.stId,
- paragraphName: paragraph.name,
- dlIndex: iDuanluo,
- dtIndex: iPanduan.iQa,
- onlyNum: iPanduan.onlyNum
- })
- }
- order = 0;
- for (const iTiankong of duanluo.tiankong) {
- iTiankong.type = 'tiankong';
- iTiankong.marked = data.biaoji[iTiankong.stId] ? true : false;
- iTiankong.onlyNum = uIndex + 1;
- iTiankong.order = order;
- paragraph.qas.push(iTiankong);
- iTiankong.iQa = iQa;
- iTiankong.reply = new Array(iTiankong.count).fill('');
- uIndex++;
- order++;
- iQa++;
- data.StListForSearch.push({
- stId: iTiankong.stId,
- paragraphName: paragraph.name,
- dlIndex: iDuanluo,
- dtIndex: iTiankong.iQa,
- onlyNum: iTiankong.onlyNum
- })
- }
- order = 0;
- for (const iJianda of duanluo.jianda) {
- iJianda.marked = data.biaoji[iJianda.stId] ? true : false;
- iJianda.type = 'jianda';
- iJianda.onlyNum = uIndex + 1;
- iJianda.order = order;
- iJianda.iQa = iQa;
- paragraph.qas.push(iJianda);
- iJianda.reply = '';
- uIndex++;
- order++;
- iQa++;
- data.StListForSearch.push({
- stId: iJianda.stId,
- paragraphName: paragraph.name,
- dlIndex: iDuanluo,
- dtIndex: iJianda.iQa,
- onlyNum: iJianda.onlyNum
- })
- }
- order = 0;
- for (const iYuedu of duanluo.yuedu) {
- iYuedu.marked = data.biaoji[iYuedu.stId] ? true : false;
- iYuedu.type = 'yuedu';
- iYuedu.onlyNum = uIndex + 1;
- iYuedu.order = order;
- iYuedu.iQa = iQa;
- if (iYuedu.duoxuan && iYuedu.duoxuan.length) {
- iYuedu.duoxuan.map((qIt) => {
- qIt.reply = qIt.reply || [];
- return qIt
- })
- }
- if (iYuedu.tiankong && iYuedu.tiankong.length) {
- iYuedu.tiankong.map((qIt) => {
- qIt.reply = new Array(qIt.count).fill('');
- return qIt;
- });
- }
- paragraph.qas.push(iYuedu);
- iYuedu.reply = [];
- uIndex++;
- order++;
- iQa++;
- data.StListForSearch.push({
- stId: iYuedu.stId,
- paragraphName: paragraph.name,
- dlIndex: iDuanluo,
- dtIndex: iYuedu.iQa,
- onlyNum: iYuedu.onlyNum
- })
- }
- iDuanluo++;
- questionData.value.push(paragraph)
- }
- }
- function handleBiaoji() {
- activeSt.value.marked = !activeSt.value.marked;
- data.biaoji[activeSt.value.stId] = activeSt.value.marked
- ksApi.getClientKaoshiBiaoji({
- operId: data.operId,
- biaoji: JSON.stringify(data.biaoji)
- }).catch(err => {
- /* uni.redirectTo({
- url: '/pages/client/Kaoshi/list'
- }) */
- setTimeout(() => {
- handleBack()
- }, 1000)
- })
- }
- function formatKaoshiData() {
- const historyData = getCacheKs(data.operId);
- if (historyData) {
- const {
- replyList,
- position
- } = historyData;
- if (replyList) {
- questionData.value.forEach(dl => {
- dl.qas.forEach(st => {
- if (st.stTypeId == 5) {
- // 简答题
- st.reply = replyList.find(item => item.stId == st.stId).reply;
- st.files = replyList.find(item => item.stId == st.stId).files;
- } else if (st.stTypeId != 6) {
- st.reply = replyList.find(item => item.stId == st.stId).reply
- } else {
- // 阅读题
- const hisSt = replyList.find(item => item.stId == st.stId);
- if (hisSt) {
- st.danxuan.forEach((itm, index) => {
- itm.reply = hisSt.reply['danxuan'][index];
- })
- st.duoxuan.forEach((itm, index) => {
- itm.reply = hisSt.reply['duoxuan'][index];
- })
- st.panduan.forEach((itm, index) => {
- itm.reply = hisSt.reply['panduan'][index];
- })
- st.tiankong.forEach((itm, index) => {
- itm.reply = hisSt.reply['tiankong'][index];
- })
- st.jianda.forEach((itm, index) => {
- itm.reply = hisSt.reply['jianda'][index].reply;
- itm.files = hisSt.reply['jianda'][index].files;
- })
- }
- }
- })
- })
- }
- if (position) {
- progress.dlIndex = position.dlIndex;
- progress.dtIndex = position.dtIndex;
- }
- }
- }
- // 摄像头确认初始化
- function initBeforKaoshi() {
- console.log(zhuapaiConfirmRef.value)
- zhuapaiConfirmRef.value.showDialog()
- }
- function initKaoshi() {
- ksApi.getClientKsStart({
- ksId: data.ksId,
- }).then(res => {
- const {
- ksId,
- operId,
- ksName,
- stTotal,
- stScore,
- biaoji,
- endSecond,
- pageSize,
- toggleScreenFlag,
- toggleScreenSecond,
- zhuapai,
- duanluoList
- } = res.data;
- data.ksId = ksId;
- data.operId = operId;
- data.ksName = ksName;
- data.stTotal = stTotal;
- data.stScore = stScore;
- data.biaoji = biaoji ? JSON.parse(biaoji) : {};
- data.endSecond = endSecond;
- data.pageSize = pageSize;
- data.toggleScreenFlag = toggleScreenFlag;
- data.toggleScreenSecond = toggleScreenSecond;
- // data.zhuapai = zhuapai;
- data.duanluo = duanluoList;
- formatDuanluoList(data.duanluo);
- // 设置缓存
- formatKaoshiData();
- autoSaveInterval.value = setInterval(() => {
- handleSave()
- }, 1000 * 60 * 1)
- autoSaveInterval2.value = setInterval(() => {
- handleSave()
- }, 1000 * 60 * 5)
- startCountDown.value = true;
- uni.setNavigationBarTitle({
- title: data.ksName
- });
- }).catch(err => {
- console.log('asdasd', err)
- setTimeout(() => {
- handleBack()
- }, 1000)
- })
- }
- </script>
|