素质测评,生涯规划,个人档案,职业库功能完成
This commit is contained in:
419
packageCa/pagesTest/personalTestTitle.vue
Normal file
419
packageCa/pagesTest/personalTestTitle.vue
Normal file
@@ -0,0 +1,419 @@
|
||||
<template>
|
||||
<view class="title-wrap">
|
||||
<view class="head-bar" :style="{'margin-top': barHeight + 5 + 'px'}">
|
||||
<view class="go-back" @click="goback()"></view>
|
||||
<text>人格测评</text>
|
||||
</view>
|
||||
<view class="progress-block">
|
||||
<view class="row">
|
||||
<view class="title-index">
|
||||
第{{pageIndex+1}}题
|
||||
</view>
|
||||
<view class="all-title">
|
||||
共{{allNum}}道题
|
||||
</view>
|
||||
<view class="time">
|
||||
约20分钟
|
||||
</view>
|
||||
</view>
|
||||
<view class="bar">
|
||||
<view class="bar-inner" :style="{width: rate + '%'}"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="content">
|
||||
<view class="item" v-show="pageIndex == index" v-for="(item, index) in list" :key="index">
|
||||
<view class="title">{{ item.Title }}</view>
|
||||
<view class="sel-label-block">
|
||||
<view class="label" :class="item.Value == 4 ? 'sel' : ''" @click="checkedTitle(4,index)">非常符合</view>
|
||||
<view class="label" :class="item.Value == 3 ? 'sel' : ''" @click="checkedTitle(3,index)">基本符合</view>
|
||||
<view class="label" :class="item.Value == 2 ? 'sel' : ''" @click="checkedTitle(2,index)">基本不符合</view>
|
||||
<view class="label" :class="item.Value == 1 ? 'sel' : ''" @click="checkedTitle(1,index)">完全不符合</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="btn-wrap">
|
||||
<view class="pre-btn" @click="prePage">上一题</view>
|
||||
<view class="com-btn" v-show="commit" @click="submitTitle">提交</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <u-modal :show="showBakcTip" @confirm="showBakcTip=false" @cancel="goback" confirmText="继续测评" cancelText="放弃测评" :showCancelButton="true">
|
||||
<view class="slot-content">
|
||||
<view class="tip-layer">
|
||||
<view class="title">提示</view>
|
||||
<view class="desc">确认要放弃测评吗?</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-modal> -->
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import api from "@/apiCa/testManage.js"
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
barHeight: wx.getWindowInfo().statusBarHeight,
|
||||
list: [],
|
||||
allNum: 0,//总题目数
|
||||
pageIndex: 0, //显示页
|
||||
showBakcTip: false,
|
||||
lastTapTime: 0 ,// 记录上次点击的时间
|
||||
historyTitle: [],// 历史题目
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
rate: function() {
|
||||
let num = 0;
|
||||
this.list.forEach(item => {
|
||||
if (item.Value > 0) {
|
||||
num++
|
||||
}
|
||||
});
|
||||
return Math.round(num * 100 / this.allNum)
|
||||
},
|
||||
commit: function(){
|
||||
let num = 0;
|
||||
this.list.forEach(item => {
|
||||
if (item.Value > 0) {
|
||||
num++
|
||||
}
|
||||
});
|
||||
if(num == this.list.length){
|
||||
return true;
|
||||
}else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getHistoryTitle();
|
||||
},
|
||||
methods: {
|
||||
// 返回
|
||||
goback(){
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '确认要放弃测评吗?',
|
||||
cancelText: '取消',
|
||||
confirmText: '确认',
|
||||
confirmColor: '#1677ff',
|
||||
cancelColor: '#999999',
|
||||
success: function (res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateBack(-1);
|
||||
} else if (res.cancel) {
|
||||
}
|
||||
}
|
||||
});
|
||||
//uni.navigateBack(-1);
|
||||
},
|
||||
//获取答题记录
|
||||
getHistoryTitle(){
|
||||
api.getTestRecordProcessList(15).then(res => {
|
||||
if (res.Result === 1) {
|
||||
let data = res.Data;
|
||||
this.historyTitle = data;
|
||||
this.getTitle();
|
||||
}
|
||||
})
|
||||
},
|
||||
// 获取题目
|
||||
getTitle() {
|
||||
uni.showLoading({
|
||||
title: "加载中..."
|
||||
})
|
||||
api.queryTestContent(15).then(res => {
|
||||
uni.hideLoading();
|
||||
if (res.Result === 1) {
|
||||
let list = res.Data.List;
|
||||
list.forEach(item => {
|
||||
item.Value = 0
|
||||
this.historyTitle.forEach(ritem=>{
|
||||
if(item.TitleId == ritem.TestTitleId){
|
||||
switch (ritem.TestResult) {
|
||||
case "A": {
|
||||
item.Value = 4;
|
||||
break;
|
||||
}
|
||||
case "B": {
|
||||
item.Value = 3;
|
||||
break;
|
||||
}
|
||||
case "C": {
|
||||
item.Value = 2;
|
||||
break;
|
||||
}
|
||||
case "D": {
|
||||
item.Value = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
if(this.historyTitle.length == 0){
|
||||
this.pageIndex = 0;
|
||||
}else if(this.historyTitle.length == list.length){
|
||||
this.pageIndex = list.length - 1;
|
||||
}else {
|
||||
this.pageIndex = this.historyTitle.length;
|
||||
}
|
||||
|
||||
this.allNum = list.length;
|
||||
this.list = list;
|
||||
}
|
||||
})
|
||||
},
|
||||
// 上一页
|
||||
prePage() {
|
||||
if (this.pageIndex == 0) {
|
||||
return
|
||||
}
|
||||
this.pageIndex--
|
||||
},
|
||||
//选中题目
|
||||
checkedTitle(NUM,INDEX){
|
||||
const now = Date.now();
|
||||
if (now - this.lastTapTime < 500) {
|
||||
return;
|
||||
} else {
|
||||
// 处理单击事件
|
||||
this.lastTapTime = now;
|
||||
this.list[INDEX].Value = NUM;
|
||||
this.saveTestRecordProcess(this.list[INDEX].TitleId,NUM);
|
||||
setTimeout(()=>{
|
||||
if(this.pageIndex != this.list.length - 1){
|
||||
this.pageIndex = INDEX + 1;
|
||||
}
|
||||
},400)
|
||||
}
|
||||
},
|
||||
//存储答题记录
|
||||
saveTestRecordProcess(ID,VALUE){
|
||||
let val = ""
|
||||
switch (VALUE) {
|
||||
case 4: {
|
||||
val = "A";
|
||||
break;
|
||||
}
|
||||
case 3: {
|
||||
val = "B";
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
val = "C";
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
val = "D";
|
||||
break;
|
||||
}
|
||||
}
|
||||
let data = {
|
||||
testType: 15,
|
||||
testTitleId: ID,
|
||||
testResult: val
|
||||
}
|
||||
api.saveTestRecordProcess(data).then(res => {
|
||||
if (res.Result === 1) {
|
||||
}
|
||||
})
|
||||
},
|
||||
// 提交题目
|
||||
submitTitle() {
|
||||
let testStr = "";
|
||||
this.list.forEach(item => {
|
||||
switch (item.Value) {
|
||||
case 4: {
|
||||
testStr += `${item.TitleId}|A,`
|
||||
break;
|
||||
}
|
||||
case 3: {
|
||||
testStr += `${item.TitleId}|B,`
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
testStr += `${item.TitleId}|C,`
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
testStr += `${item.TitleId}|D,`
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
uni.showLoading({
|
||||
title: "提交中"
|
||||
})
|
||||
let data = {
|
||||
testStr,
|
||||
testType: 15
|
||||
}
|
||||
api.removeTestRecordProcess(15).then((res) => {
|
||||
return api.saveCharacterTestResult(data);
|
||||
}).then((res) => {
|
||||
uni.hideLoading();
|
||||
if (res.Result === 1) {
|
||||
uni.showToast({
|
||||
title: "提交成功",
|
||||
icon: "success"
|
||||
})
|
||||
let pages = getCurrentPages(); // 当前页面
|
||||
let beforePage = pages[pages.length - 2]; // 上一页
|
||||
beforePage.data.refreshIfNeeded = true;
|
||||
setTimeout(()=>{
|
||||
uni.redirectTo({
|
||||
url: `/packageCa/testReport/personalTestReport?year=${res.Data.Year}`
|
||||
})
|
||||
},1000)
|
||||
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.Message,
|
||||
icon: "none"
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.tip-layer {
|
||||
.title {
|
||||
font-size: 36rpx;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
.desc {
|
||||
font-size: 32rpx;
|
||||
color: #666666;
|
||||
margin-bottom: 20rpx;
|
||||
text-align: center;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.head-bar {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 36rpx;
|
||||
font-weight: 600;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
margin-bottom: 30rpx;
|
||||
.go-back {
|
||||
position: absolute;
|
||||
left: 10rpx;
|
||||
top: 0;
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAABUklEQVRoQ+3ZOwrCQBCA4UlyCVsrQauQdPYewcNYWXoHK1s9gYeYdIKlracYWYggkgiTnccuaB3D/+1sYEMKyPxXZN4Pf0DMBOu6XpZluQOANRGduq7bc+/nNoE+/gwAq3c0IrJ72H/grtDQ9UPxAPBAxDn3/uaAkfjQvUXES9IA6fiANZuARrwZQCveBKAZrw7QjlcFWMSrAaziVQCW8eIA63hRgEe8GMArXgTgGR8N8I6PAqQQPxmQSvxkQNM0VwDYfJ3dJ53nuef/7+vZx+l+9W8pxE+aQNu2CyK6ZwsI4VlvoQDI/iFOCcF+iD/3fgqTiAKkMIlogDdCBOCJEAN4IUQBHghxgDVCBWCJUANYIVQBFgh1gDbCBKCJMANoIUwBGghzwA/EExFn3HdkF8AYIpvPrO9VDu8TVVUdiKghomNWH7q5W2Xserct9Af0K/AChQ/cMY9OGScAAAAASUVORK5CYII=") center no-repeat;
|
||||
background-size: 38rpx 38rpx;
|
||||
}
|
||||
}
|
||||
.title-wrap {
|
||||
background: #fff;
|
||||
.progress-block {
|
||||
padding: 0 40rpx;
|
||||
.row {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
height: 40rpx;
|
||||
margin-bottom: 20rpx;
|
||||
.title-index {
|
||||
font-size: 28rpx;
|
||||
color: #1677ff;
|
||||
}
|
||||
.all-title {
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
.time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
font-size: 24rpx;
|
||||
color: #20B664;
|
||||
}
|
||||
}
|
||||
.bar {
|
||||
position: relative;
|
||||
width: 670rpx;
|
||||
height: 8rpx;
|
||||
background: #EBEBEB;
|
||||
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
||||
.bar-inner {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 8rpx;
|
||||
background: #1677ff;
|
||||
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.content {
|
||||
padding: 0 40rpx;
|
||||
.item {
|
||||
padding-top: 40rpx;
|
||||
.title {
|
||||
font-size: 32rpx;
|
||||
color: #000000;
|
||||
font-weight: 600;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
.sel-label-block {
|
||||
.label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 630rpx;
|
||||
height: 96rpx;
|
||||
padding-left: 40rpx;
|
||||
background: #f5f5f5;
|
||||
margin-bottom: 24rpx;
|
||||
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
||||
font-size: 28rpx;
|
||||
color: #000000;
|
||||
&.sel {
|
||||
background: #EDF6FF;
|
||||
color: #1677ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.btn-wrap {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 50rpx;
|
||||
.pre-btn {
|
||||
width: 316rpx;
|
||||
height: 76rpx;
|
||||
line-height: 76rpx;
|
||||
text-align: center;
|
||||
background: #F8F8F8;
|
||||
border-radius: 60rpx 60rpx 60rpx 60rpx;
|
||||
border: 2rpx solid #EAEAEA;
|
||||
font-size: 28rpx;
|
||||
color: #666666;
|
||||
}
|
||||
.com-btn {
|
||||
width: 320rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
background: #1677ff;
|
||||
margin-left: 20rpx;
|
||||
border-radius: 60rpx 60rpx 60rpx 60rpx;
|
||||
font-size: 28rpx;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user