| | |
| | | <h1></h1> |
| | | </el-header> |
| | | <el-main style="padding-top: 3%;"> |
| | | <div v-html="guideDescirption" v-if="guide" :style="ismobile?'padding-top: 2%;':'padding-top: 2%;margin: 0 auto;width:66%'"></div> |
| | | <div v-html="guideDescirption" v-if="guide" :style="ismobile?'padding-top: 2%;margin-top: 5%;':'padding-top: 2%;margin: 0 auto;width:66%'"></div> |
| | | <el-row class="do-align-center" v-if="guide"> |
| | | <el-button @click="startDo" type="primary" :disable="startDoDisable">{{$t('start')}}</el-button> |
| | | </el-row > |
| | |
| | | import examPaperAnswerApi from '@/api/examPaperAnswer' |
| | | import demographyApi from '@/api/demography' |
| | | export default { |
| | | name: 'personality', |
| | | name: 'career_interests', |
| | | components: { QuestionEdit }, |
| | | data () { |
| | | return { |
| | |
| | | let _this = this |
| | | _this.isShowGuide(false) |
| | | if (_this.order > 0) { |
| | | // 清空本题的选择 |
| | | _this.answer.answerItems[_this.order].content = null |
| | | _this.answer.answerItems[_this.order].completed = false |
| | | _this.answer.answerItems[_this.order].questionReport = null |
| | | _this.answer.answerItems[_this.order].readOnly = false |
| | | |
| | | // 设置回到上一题 |
| | | let num = --_this.order |
| | | _this.itemOrder = _this.form.titleItems[0].questionItems[num].itemOrder |
| | | _this.questionItem = _this.form.titleItems[0].questionItems[num] |