123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- <template>
- <view class="bg">
- <view class="question_box">
- <view style="overflow: hidden;"></view>
- <view class="process">
- <view class="process_bar" :style="{'width': percentage}"></view>
- </view>
- <view class="question_num">
- <text class="num_front">出题{{currentIndex + 1}}</text><text class="num_behond">/ {{maxLength}}</text>
- <text class="tips">请选择你的答案进入下一题</text>
- </view>
- <view class="question_title">
- <text>{{currentQuestion.answer}}</text>
- </view>
- <view class="answer_list">
- <view v-if="currentQuestion.questionType == 5">
- <picker-view v-if="true" :value="pickValue" @change="bindChange" indicator-class="indicatorClass"
- class="picker-view">
- <picker-view-column>
- <view class="picker_item"
- v-for="(item, index) in getQuestionParam(currentQuestion.questionParam)" :key="index">
- {{item.name}}
- </view>
- </picker-view-column>
- </picker-view>
- </view>
- <view v-else :class="['answer', checkActive(item)]" v-for="(item, index) in currentAnswerList"
- @click="nextHandle(item)">
- <text>
- {{item}}
- </text>
- </view>
- </view>
- </view>
- <view class="contral_box">
- <view class="prev_btn" v-if="currentIndex > 0" @click="prevHandle">
- 上一题
- </view>
- <view class="prev_btn"
- v-if="(userAnswerList.length < this.questionList.length - 1) && currentQuestion.questionType == 5"
- @click="nextHandle()">
- 下一题
- </view>
- <view class="prev_btn" v-if="userAnswerList.length >= questionList.length" @click="submitResult">
- 提交
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getResult,
- queryPromotionBySubjectId,
- } from "@/api/index.js";
- export default {
- data() {
- return {
- isChecked: true,
- isShake: false,
- scaleDetail: {},
- questionList: [],
- currentQuestion: {},
- currentAnswerList: [],
- currentIndex: 0,
- userAnswerList: [],
- resultId: '',
- isLoading: false,
- isDisbale: false,
- maxLength: 0,
- userInfo: {},
- userSelectArr: [],
- pickValue: [3],
- canPrev: false
- }
- },
- computed: {
- percentage() {
- return (this.userAnswerList.length / this.questionList.length) * 607 + 'rpx'
- }
- },
- created() {
- this.loadData();
- this.userInfo = uni.getStorageSync('user');
- },
- methods: {
- loadData() {
- this.$request
- .get({
- url: `scaleInfo/20210725100704`,
- loadingTip: "加载中...",
- data: {},
- }).then((res) => {
- this.questionList = JSON.parse(JSON.stringify(res.data));
- this.maxLength = this.questionList.length;
- this.currentQuestion = this.questionList[this.currentIndex];
- this.currentAnswerList = this.getAnswerItem(this.currentQuestion.checkItems);
- })
- },
- bindChange(item) {
- console.log(item);
- },
- nextHandle(str) {
- if (this.isDisbale) {
- return;
- }
- this.isDisbale = true;
- this.userAnswerList[this.currentIndex] = JSON.parse(JSON.stringify(this.currentQuestion));
- if (this.currentQuestion.questionType == 5) {
- let pickItems = this.getQuestionParam(this.currentQuestion.questionParam);
- this.userAnswerList[this.currentIndex].checkItems = pickItems[this.pickValue[0]].label;
- this.pickValue = [3];
- } else {
- this.userAnswerList[this.currentIndex].checkItems = str;
- }
- if (this.currentIndex >= this.questionList.length - 1) {
- this.isDisbale = false;
- // this.submitResult();
- } else {
- setTimeout(() => {
- this.currentIndex++;
- this.currentQuestion = this.questionList[this.currentIndex];
- this.currentAnswerList = this.getAnswerItem(this.currentQuestion.checkItems);
- this.isDisbale = false;
- }, 150)
- }
- },
- prevHandle() {
- if (this.canPrev || this.currentIndex == 0) {
- return;
- }
- this.canPrev = true;
- setTimeout(() => {
- this.canPrev = false;
- this.currentIndex--;
- this.currentQuestion = this.questionList[this.currentIndex];
- this.currentAnswerList = this.getAnswerItem(this.currentQuestion.checkItems);
- }, 300)
- },
- submitResult() {
- let _this = this;
- if (_this.isLoading) {
- return
- }
- _this.isLoading = true;
- let params = {
- testPlanId: "",
- scale_result: _this.userAnswerList,
- userId: this.userInfo.id,
- };
- uni.showLoading({
- title: "测试结果生成中",
- });
- _this.$request
- .post({
- url: `${getResult}/20210725100704`,
- loadingTip: "加载中...",
- data: params,
- })
- .then((res) => {
- _this.isLoading = false;
- _this.resultId = res.data;
- uni.hideLoading();
- // 跳转支付页面
- uni.navigateTo({
- url: `/newScale/paymentPage/index?tName=Sleep&resultId=${_this.resultId}`
- });
- })
- .catch((err) => {
- _this.isLoading = false;
- uni.showToast({
- icon: "none",
- title: "提交失败",
- });
- uni.hideLoading();
- });
- },
- // 获取支付金额
- async getQueryPromotionBySubjectId() {
- let _this = this;
- let urls = queryPromotionBySubjectId + "/20210725100704";
- await _this.$request
- .get({
- url: urls,
- loadingTip: "加载中...",
- data: {},
- })
- .then((res) => {
- console.log('量表支付信息', res.data);
- let data = res.data;
- if (data.price == 0) {
- uni.navigateTo({
- url: `/newScale/Sleep/testResult?resultId=${_this.resultId}&messageShare=1`
- });
- } else {
- let params = {
- productId: '20210725100704',
- userId: _this.userInfo?.id,
- resultId: _this.resultId,
- description: data.name,
- total: data.price,
- sceneType: uni.getSystemInfoSync().platform == "android" ?
- "Android" : "iOS",
- };
- uni.setStorageSync('orderInfo', params);
- uni.navigateTo({
- url: "/newScale/paymentPage/index?tName=Sleep"
- });
- }
- });
- },
- checkActive(item) {
- return this.userAnswerList[this.currentIndex] && this.userAnswerList[this.currentIndex]
- .checkItems ==
- item ? 'active' : ''
- },
- getAnswerItem(arr) {
- return arr.split(';')
- },
- getQuestionParam(str) {
- return JSON.parse(str)
- }
- }
- }
- </script>
- <style scoped>
- .bg {
- width: 750rpx;
- min-height: 100vh;
- background: #223255;
- overflow: hidden;
- }
- .tips {
- font-family: 'Alibaba PuHuiTi 2.0';
- font-weight: normal;
- font-size: 24rpx;
- color: #FFFFFF;
- line-height: 60rpx;
- text-align: center;
- position: absolute;
- right: 76rpx;
- top: -30rpx;
- }
- .question_box {
- box-sizing: border-box;
- width: 750rpx;
- height: 973rpx;
- background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/Sleep/question_box_bg.png) no-repeat top;
- background-size: cover;
- margin: 44rpx auto 0;
- position: relative;
- }
- .question_title {
- width: 86%;
- height: 131rpx;
- margin: 20rpx auto 0;
- font-family: 'Alibaba PuHuiTi 2.0';
- font-weight: normal;
- font-size: 36rpx;
- color: #333333;
- line-height: 46rpx;
- }
- .answer_list {
- width: 602rpx;
- height: 600rpx;
- margin: 0 auto;
- }
- .answer {
- display: flex;
- align-items: center;
- width: 519rpx;
- line-height: 88rpx;
- padding-left: 94rpx;
- margin: 0 auto 52rpx;
- font-family: 'Alibaba PuHuiTi 2.0';
- font-weight: normal;
- font-size: 36rpx;
- color: #333333;
- cursor: pointer;
- background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/Sleep/answer_bg.png);
- background-size: 100% 100%;
- transition: background 200ms linear;
- }
- .answer.active {
- background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/Sleep/answer_bg_active.png);
- background-size: cover;
- color: #FFFFFF;
- }
- .prev_btn {
- width: 288rpx;
- line-height: 71rpx;
- background: #FFFFFF;
- border-radius: 36rpx;
- font-family: 'Alibaba PuHuiTi 2.0';
- font-weight: normal;
- font-size: 36rpx;
- color: #333333;
- text-align: center;
- }
- .process {
- box-sizing: border-box;
- width: 613rpx;
- height: 20rpx;
- padding: 2rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 0rpx 3rpx 0rpx rgba(133, 14, 45, 0.5);
- border-radius: 12rpx;
- overflow: hidden;
- margin: 44rpx auto 0;
- }
- .process_bar {
- height: 14rpx;
- background: #FFA800;
- border-radius: 10rpx;
- transition: width 200ms linear;
- }
- .question_num {
- margin: 30rpx 0 0 80rpx;
- position: relative;
- }
- .num_front {
- font-family: 'Alibaba PuHuiTi 2.0';
- font-weight: bold;
- font-size: 48rpx;
- color: #471705;
- line-height: 55rpx;
- }
- .num_behond {
- font-family: 'Alibaba PuHuiTi 2.0';
- font-weight: normal;
- font-size: 32rpx;
- color: #471705;
- line-height: 55rpx;
- }
- .contral_box {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 17rpx 0 100rpx 0;
- }
- .prev_btn {
- margin: 0 20rpx;
- }
- .prev_btn image {
- width: 304rpx;
- }
- .paperclip {
- width: 55rpx;
- position: absolute;
- top: -40rpx;
- left: 38rpx;
- }
- .picker-view {
- width: 100%;
- height: 400rpx;
- }
- /deep/ .indicatorClass {
- height: 104rpx;
- border-top: 1px solid #5269FF;
- border-bottom: 1px solid #5269FF;
- }
- .picker_item {
- height: 104rpx;
- line-height: 104rpx;
- text-align: center;
- }
- </style>
|