Merge pull request '科一真实考场' (#21) from dev-qsh into master
Reviewed-on: http://114.55.169.15:3000/huxiaofeng666/jwl-applet/pulls/21
This commit was merged in pull request #21.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<view class="left hp100">
|
||||
<view class="fl1 flex" style="align-items: stretch;">
|
||||
<view class="info">
|
||||
<view class="flex ai-c jc-c mt10 mr10 fs16" style="border: 1px solid #999;height: 32px;">
|
||||
<view class="flex ai-c jc-c mr10 fs16" style="border: 1px solid #999;height: 32px;">
|
||||
第01考台
|
||||
</view>
|
||||
<view class="mt10 p10tb" style="background-color: rgb(177, 222, 255);">
|
||||
@@ -15,21 +15,15 @@
|
||||
<view class="p10" style="background-color: rgb(235, 235, 235);">
|
||||
<view class="flex ai-c">
|
||||
<text class="fs12 cor-333">姓名</text>
|
||||
<view class="fl1 info-box">
|
||||
{{ user.userName }}{{ user.userId }}
|
||||
<view class="fl1 info-box">{{ user.userName }}{{ user.userId }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex ai-c">
|
||||
<view class="flex ai-c mt5">
|
||||
<text class="fs12 cor-333">类型</text>
|
||||
<view class="fl1 info-box">
|
||||
小车
|
||||
<view class="fl1 info-box">小车</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex ai-c">
|
||||
<view class="flex ai-c mt5">
|
||||
<text class="fs12 cor-333">科目</text>
|
||||
<view class="fl1 info-box">
|
||||
科目一
|
||||
</view>
|
||||
<view class="fl1 info-box">科目一</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -37,15 +31,18 @@
|
||||
<view class="fs14 cor-000">
|
||||
{{questionIndex}} {{question.question}}
|
||||
</view>
|
||||
<view v-if="question.type != 1" v-for="item in question.optionList" class="mt5 fs14 cor-000">
|
||||
{{item}}
|
||||
<view v-if="question.type != 1" v-for="(item, idx) in question.optionList" :key="idx"
|
||||
class="mt5 fs14 cor-000">
|
||||
{{item.op}}: {{item.opDesc}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="ans-box">
|
||||
<view class="flex ai-c">
|
||||
<view class="time">
|
||||
<text class="mt7">45:00</text>
|
||||
<!-- <text class="mt7">45:00</text> -->
|
||||
<u-count-down ref="countDown" :time="timeCount" format="mm:ss" @change="e=>this.time=e"
|
||||
@finish="timeFinish"></u-count-down>
|
||||
</view>
|
||||
<view class="ml20 fs16 cor-333 fwb">
|
||||
您的答案:
|
||||
@@ -56,16 +53,18 @@
|
||||
<button class="btn" :class="{ done: question.yourAnswer==2 }" @tap="handleAnswer(2)">×</button>
|
||||
</view>
|
||||
<view v-else class="flex">
|
||||
<template v-for="(item,index) in question.optionList">
|
||||
<button class="btn" :class="{ done: question.yourAnswer.includes(index+1) }" @tap="handleAnswer(index+1)">{{['A','B','C','D','E','F','G'][index]}}</button>
|
||||
<template v-for="(item,index) in question.optionList" :key="index">
|
||||
<button class="btn" :class="{ done: question.yourAnswer.includes(index+1) }"
|
||||
@tap="handleAnswer(index+1)">{{['A','B','C','D','E','F','G'][index]}}</button>
|
||||
</template>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="right" style="border: 1px solid #999;;">
|
||||
<u-grid border col="10">
|
||||
<u-grid border :col="subject==1?10:5">
|
||||
<u-grid-item v-for="(listItem,listIndex) in list" :key="listIndex" style="box-sizing: border-box;">
|
||||
<view class="q-item" :class="{ 'current-question': questionIndex==listIndex+1, done: listItem.yourAnswer }" @tap="questionIndex=listIndex+1">{{listIndex+1}}</view>
|
||||
<view class="q-item" :class="{ 'current-question': questionIndex==listIndex+1, done: listItem.yourAnswer }"
|
||||
@tap="questionIndex=listIndex+1">{{listIndex+1}}</view>
|
||||
</u-grid-item>
|
||||
</u-grid>
|
||||
</view>
|
||||
@@ -82,21 +81,26 @@
|
||||
<view class="flex">
|
||||
<button :disabled="questionIndex==1" class="btn" @tap="questionIndex--">上一题</button>
|
||||
<button :disabled="questionIndex==list.length" class="btn" @tap="questionIndex++">下一题</button>
|
||||
<button class="btn">交卷</button>
|
||||
<button class="btn" @tap="handleConfirm">交卷</button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="img-box">
|
||||
|
||||
<image style="height: 100%;" mode="heightFix" :src="question.imageUrl"></image>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import useUserStore from '@/jtools/store/user'
|
||||
import {
|
||||
getTestQuestion,
|
||||
submitTest
|
||||
} from '@/jtools/api/question';
|
||||
import storage from '@/jtools/storage';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
question: {},
|
||||
subject: 1,
|
||||
questionIndex: 1,
|
||||
list: [],
|
||||
mutiAns: []
|
||||
@@ -112,20 +116,17 @@
|
||||
} else {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
timeCount() {
|
||||
return this.subject == 1 ? 60 * 60 * 1000 : 45 * 60 * 1000
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
this.fz()
|
||||
setTimeout(() => {
|
||||
for (var i = 0; i < 100; i++) {
|
||||
this.list.push({
|
||||
type: i%3+1,
|
||||
question: '这是题目这是题目内容这是题目内容这是题目内容内容这是题目这是题目内容这是题目内容这是题目内容内容',
|
||||
optionList: ['A', 'B', 'C', 'D'],
|
||||
yourAnswer:''
|
||||
})
|
||||
}
|
||||
},1000)
|
||||
},
|
||||
onLoad(option) {
|
||||
this.subject = option.subject || 1
|
||||
this._getList()
|
||||
},
|
||||
methods: {
|
||||
fz() {
|
||||
@@ -133,6 +134,19 @@
|
||||
orientation: 'landscape'
|
||||
});
|
||||
},
|
||||
_getList() {
|
||||
getTestQuestion({
|
||||
carTypeId: storage.get('carType') || '1001',
|
||||
subject: this.subject
|
||||
}).then(resp => {
|
||||
if (resp.code === '0000') {
|
||||
this.list = resp.data.map(it => ({
|
||||
...it,
|
||||
yourAnswer: ''
|
||||
}))
|
||||
}
|
||||
})
|
||||
},
|
||||
handleAnswer(index) {
|
||||
// 如果是多选
|
||||
let q = this.list[this.questionIndex - 1]
|
||||
@@ -148,6 +162,69 @@
|
||||
let tt1 = ['', '判断题,', '单选题,', '多选题,'][type]
|
||||
let tt2 = ['', '请判断对错!', '请在备选答案中选择你认为正确的答案!', '请在备选答案中选择多个你认为正确的答案!'][type]
|
||||
return tt1 + tt2
|
||||
},
|
||||
|
||||
handleConfirm() {
|
||||
const wdLength = this.list.filter(it => !it.yourAnswer).length
|
||||
if (wdLength) {
|
||||
uni.showModal({
|
||||
title: '考试确认窗口',
|
||||
content: `您还有${wdLength}题未答,是否确认交卷?`,
|
||||
confirmText: '确认交卷',
|
||||
cancelText: '继续考试',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
this.toSubmit()
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
uni.showModal({
|
||||
title: '考试确认窗口',
|
||||
content: `是否确认交卷?`,
|
||||
confirmText: '确认交卷',
|
||||
cancelText: '继续考试',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
this.toSubmit()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
timeFinish() {
|
||||
uni.showToast({
|
||||
title: "考试结束,将为您自动交卷~",
|
||||
icon: 'none'
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.toSubmit()
|
||||
}, 1000)
|
||||
},
|
||||
toSubmit() {
|
||||
const restTime = this.time.hours * 60 * 60 + this.time.minutes * 60 + this.time.seconds
|
||||
const score = this.list.reduce((pre, cur) => {
|
||||
const isTrue = cur.trueAnswer == cur.yourAnswer.replace(/,-g/, '')
|
||||
let s = 0
|
||||
if (isTrue) {
|
||||
s = this.subject == 1 ? 1 : 2
|
||||
}
|
||||
return pre + s
|
||||
}, 0)
|
||||
submitTest({
|
||||
"carTypeId": storage.get('carType') || '1001',
|
||||
"score": score,
|
||||
"testTime": 60 * 60 - restTime,
|
||||
subject: this.subject
|
||||
}).then(resp => {
|
||||
uni.showToast({
|
||||
title: '考试结束!',
|
||||
icon: 'none',
|
||||
complete() {
|
||||
uni.navigateBack()
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
@@ -158,10 +235,12 @@
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.info {
|
||||
width: 100px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.info-box {
|
||||
margin-left: 5px;
|
||||
padding-left: 5px;
|
||||
@@ -172,33 +251,37 @@
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
.question-box {
|
||||
position: relative;
|
||||
padding: 10px;
|
||||
border-top: 1px solid #999;
|
||||
border-left: 1px solid #999;
|
||||
}
|
||||
|
||||
.ans-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 44px;
|
||||
height: 50px;
|
||||
border-top: 1px solid #999;
|
||||
|
||||
.time {
|
||||
position: relative;
|
||||
display: flex;
|
||||
width: 90px;
|
||||
height: 28px;
|
||||
height: 32px;
|
||||
line-height: 16px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
border: 1px solid #ccc;
|
||||
border: 1px solid #999;
|
||||
|
||||
&::before {
|
||||
content: '剩余时间';
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
left: 6px;
|
||||
top: 0;
|
||||
background-color: #f5f5f5;
|
||||
font-size: 10px;
|
||||
@@ -237,20 +320,25 @@
|
||||
margin-right: 10px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
background-color: rgb(244, 243, 239);
|
||||
// background-color: rgb(244, 243, 239);
|
||||
font-size: 14px;
|
||||
box-shadow:
|
||||
0 0 4px rgba(0, 0, 0, .4),
|
||||
// -7px -7px 12px rgba(255, 255, 255, .9);
|
||||
}
|
||||
|
||||
.img-box {
|
||||
height: 120px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid #999;
|
||||
}
|
||||
|
||||
.current-question {
|
||||
background-color: #93F0E4;
|
||||
}
|
||||
|
||||
.done {
|
||||
background-color: #33FF66;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user