From 7f4105bc2f1d4f8562e1cb9776ce49f8be0c98d2 Mon Sep 17 00:00:00 2001 From: yj <2077506045@qq.com> Date: 星期二, 03 十二月 2024 13:46:37 +0800 Subject: [PATCH] 更新CAQ优化,适配低分辨率设备 --- src/views/exam/paper/personality.vue | 38 ++++++++++++++++++++++++++++---------- 1 files changed, 28 insertions(+), 10 deletions(-) diff --git a/src/views/exam/paper/personality.vue b/src/views/exam/paper/personality.vue index 70b4c8b..bca5994 100644 --- a/src/views/exam/paper/personality.vue +++ b/src/views/exam/paper/personality.vue @@ -16,14 +16,14 @@ <div class="align-center"><span style="font-size: small; float: left">{{$t('examinee')}}{{memberName}}</span><span style="margin-top: 0px;padding-right: 11%">鈼弡{form.name}}鈼�</span></div> <hr style="border : 1px dashed #b3d8ff;" /> <el-form-item :key="itemOrder" label-width="1px"> - <QuestionEdit @callNextSubject="nextSubject" :qType="questionItem.questionType" :question="questionItem" + <QuestionEdit @callSelected="callSelected" @callNextSubject="nextSubject" :qType="questionItem.questionType" :question="questionItem" :answer="answer.answerItems[questionItem.itemOrder-1]" :qLabel="itemOrder+'/'+itemSize"/> </el-form-item> <hr style="border : 0.5px dashed #b3d8ff;" /> <div style="color: red;font-size: smaller">{{$t('pleaseAnswerCarefully')}}</div> <el-row class="do-align-center" v-if="order < problemLength"> - <el-button @click="preSubject" type="warning" v-if ="preDisable" round>{{$t('lastQuestion')}}</el-button> - <el-button @click="nextSubject" type="primary" v-if ="nextDisable" round>{{$t('nextQuestion')}}</el-button> + <el-button @click="preSubject" type="warning" v-if ="preDisable" :disabled="preDisable2" round>{{$t('lastQuestion')}}</el-button> + <el-button @click="nextSubject" type="primary" v-if ="nextDisable" :disabled="nextDisable2" round>{{$t('nextQuestion')}}</el-button> </el-row> <el-row class="do-align-center" v-else> <el-button @click="preSubject" type="warning" v-if ="preDisable" round>{{$t('lastQuestion')}}</el-button> @@ -88,7 +88,9 @@ submitDisable: true, doTime: 0, preDisable: false, + preDisable2: false, nextDisable: false, + nextDisable2: false, partOrder: 0, parts: [], guideTitle: '', @@ -101,12 +103,13 @@ } }, created: function () { + // this.getFormDo() let _this = this _this.ismobile = /ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/.test(navigator.userAgent.toLowerCase()) // 澶氳瑷� _this.setLangFlag(false) - _this.form = this.$route.query.formDo - if (_this.form !== {} && _this.form !== undefined) { + _this.form = undefined + if (_this.form && _this.form !== {} && _this.form !== undefined) { _this.formLoading = true _this.remainTime = _this.form.suggestTime * 60 _this.problemLength = _this.form.titleItems[0].questionItems.length - 1 @@ -185,7 +188,6 @@ ).catch(e => { }) } - }, mounted () { }, @@ -198,7 +200,7 @@ if (newVal) { if (this.form) { let productType = this.form.productType - if (productType === 'APIFan') { + if (productType === 'API_Fan') { newVal = newVal.replace('%%company%%', this.form.reportCompany) this.guideDescirption = newVal } @@ -327,6 +329,8 @@ }, nextSubject: function () { let _this = this + _this.preDisable2 = true + _this.nextDisable2 = true _this.isShowGuide(false) let nowPartOrder = _this.partOrder // 璁剧疆涓婁竴棰樼殑缁撴潫鏃堕棿 @@ -357,6 +361,7 @@ } this.answer.answerItems[_this.order].readOnly = true let answerSubmit = _this.getSubmitAnswerValue(nowPartOrder) + // 宸茬粡绛斿埌浜嗘渶鍚庝竴棰樹簡,涓嶇敤鑷姩璺冲埌涓嬩竴棰� if (this.order + 1 > this.problemLength) { this.submitDisable = false @@ -388,12 +393,21 @@ } else { this.nextQuestionOrder(nowPartOrder) } + _this.preDisable2 = false + _this.nextDisable2 = false }).catch(e => { if (_this.isNotEmpty(loading)) { loading.close() } _this.reloadPage(e) + _this.preDisable2 = false + _this.nextDisable2 = false }) + }, + callSelected: function () { + let _this = this + _this.preDisable2 = true + _this.nextDisable2 = true }, getSubmitAnswerValue (nowPartOrder) { let _this = this @@ -413,6 +427,7 @@ }, preSubject () { let _this = this + _this.nextDisable2 = false _this.isShowGuide(false) if (_this.order > 0) { // 娓呯┖鏈鐨勯�夋嫨 @@ -464,7 +479,7 @@ _this.answer.finish = 1 if (this.form) { let productType = this.form.productType - if (productType === 'APIFan') { + if (productType === 'API_Fan') { _this.submitAnswer(_this.$t('finishPersonalityInfo_apifan')) } else { _this.submitAnswer(_this.$t('finishPersonalityInfo')) @@ -495,9 +510,9 @@ if (re.code === 1) { // 鐗规畩澶勭悊 LAQ娴嬭瘯鍖� MAQ+CAQ if (_this.form.name.indexOf('LAQ') !== -1) { - console.log('绛斿畬棰�,鐪嬬湅瑕佷笉瑕佸幓CAQ1') examPaperApi.select(_this.memberToken, _this.langType).then(re => { _this.form = re.response + this.setFormDo(_this.form) _this.$router.push({ path: '/guide/index', query: { formDo: _this.form } }) }).catch(e => { _this.$message.error(_this.$t('noquestionMsg')) @@ -563,7 +578,9 @@ return _this.form.titleItems[0].questionItems[_this.order].partOrder !== _this.form.titleItems[0].questionItems[_this.order - 1].partOrder }, ...mapMutations('user', ['setLangType']), - ...mapMutations('user', ['setLangFlag']) + ...mapMutations('user', ['setLangFlag']), + ...mapMutations('user', ['getFormDo']), + ...mapMutations('user', ['setFormDo']) }, computed: { ...mapGetters('enumItem', ['enumFormat']), @@ -571,6 +588,7 @@ ...mapState('user', { memberToken: state => state.memberToken }), ...mapState('user', { langType: state => state.langType }), ...mapState('user', { langFlag: state => state.langFlag }), + ...mapState('user', { formDo: state => state.formDo }), ...mapState('exam', { doUrl: state => state.doUrl }) } } -- Gitblit v1.9.1