388 lines
9.1 KiB
Vue
388 lines
9.1 KiB
Vue
<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">
|
||
约8分钟
|
||
</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);
|
||
},
|
||
// 上一页
|
||
prePage() {
|
||
if (this.pageIndex == 0) {
|
||
return
|
||
}
|
||
this.pageIndex--
|
||
},
|
||
//获取答题记录
|
||
getHistoryTitle(){
|
||
api.getTestRecordProcessList(17).then(res => {
|
||
if (res.Result === 1) {
|
||
let data = res.Data;
|
||
this.historyTitle = data;
|
||
this.getTitle();
|
||
}
|
||
})
|
||
},
|
||
// 获取题目
|
||
getTitle() {
|
||
uni.showLoading({
|
||
title: "加载中..."
|
||
})
|
||
api.queryTestContent(17).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){
|
||
item.Value = Number(ritem.TestResult) + 1;
|
||
}
|
||
})
|
||
})
|
||
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;
|
||
}
|
||
})
|
||
},
|
||
//选中题目
|
||
checkedTitle(NUM,INDEX){
|
||
const now = Date.now();
|
||
if (now - this.lastTapTime < 500) {
|
||
console.log('双击事件被阻止');
|
||
return;
|
||
} else {
|
||
// 处理单击事件
|
||
console.log('单击事件被触发');
|
||
this.lastTapTime = now;
|
||
this.list[INDEX].Value = NUM;
|
||
//
|
||
this.saveTestRecordProcess(this.list[INDEX].TitleId,NUM-1);
|
||
setTimeout(()=>{
|
||
if(this.pageIndex != this.list.length - 1){
|
||
this.pageIndex = INDEX + 1;
|
||
|
||
}
|
||
},300)
|
||
}
|
||
},
|
||
//存储答题记录
|
||
saveTestRecordProcess(ID,VALUE){
|
||
let data = {
|
||
testType: 17,
|
||
testTitleId: ID,
|
||
testResult: VALUE
|
||
}
|
||
api.saveTestRecordProcess(data).then(res => {
|
||
if (res.Result === 1) {
|
||
}
|
||
})
|
||
},
|
||
// 提交题目
|
||
submitTitle() {
|
||
let testStr = "";
|
||
this.list.forEach(item => {
|
||
switch (item.Value) {
|
||
case 4: {
|
||
testStr += `${item.TitleId}|3,`
|
||
break;
|
||
}
|
||
case 3: {
|
||
testStr += `${item.TitleId}|2,`
|
||
break;
|
||
}
|
||
case 2: {
|
||
testStr += `${item.TitleId}|1,`
|
||
break;
|
||
}
|
||
case 1: {
|
||
testStr += `${item.TitleId}|0,`
|
||
break;
|
||
}
|
||
}
|
||
});
|
||
|
||
uni.showLoading({
|
||
title: "提交中"
|
||
})
|
||
let data = {
|
||
testStr
|
||
}
|
||
api.removeTestRecordProcess(17).then((res) => {
|
||
return api.saveWorkValuesResult(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/workValuesTestReport?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>
|