3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
|
<template>
<view class="questionnaire">
<!-- 单选问题 -->
<view style="padding:20px;background-color: #f6f6f6;">
<view>
|
bc51a62b
杨鑫
'最新'
|
7
8
9
|
<h2
style="color: #000;overflow: hidden; text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;word-break: break-all;text-align:center">
{{wenjuan.title}}</h2>
|
3f535f30
杨鑫
'初始'
|
10
11
|
<!-- <h5 style="padding: 10px 0;color: #000;">请您认真作答以下题目</h5> -->
<view class="" style="padding: 10px 0; height: 200px;">
|
8550d958
杨鑫
'最新'
|
12
|
<image :src="this.$hostUrl+wenjuan.coverImage" mode="scaleToFill"
|
3f535f30
杨鑫
'初始'
|
13
14
15
16
17
|
style="width:100%;height: 100%;border-radius: 10px;"></image>
</view>
</view>
<view style="padding: 15px;background-color: #fff;border-radius: 10px;">
<view>
|
bc51a62b
杨鑫
'最新'
|
18
19
20
21
|
<!-- <u-parse :content="wenjuan.remarks"></u-parse> -->
<rich-text :nodes="wenjuan.remarks"></rich-text>
<!-- {{wenjuan.remarks}} -->
<!-- <view>
|
3f535f30
杨鑫
'初始'
|
22
23
|
<view style="display:flex;padding:10px 0;justify-content: space-between;">
<view style="display:flex;">
|
3f535f30
杨鑫
'初始'
|
24
25
26
27
28
29
|
{{wenjuan.createUser}}
</view>
<view>
{{wenjuan.createTime}}
</view>
</view>
|
bc51a62b
杨鑫
'最新'
|
30
31
|
</view> -->
<!-- <view>预计答题时间:{{this.wenjuan.estimatedTime}}分钟</view> -->
|
3f535f30
杨鑫
'初始'
|
32
33
|
</view>
</view>
|
7ab02d9a
杨鑫
问卷完成,最新
|
34
|
<view class="question" v-for="(item,index) in wenjuan.question" style="">
|
bc51a62b
杨鑫
'最新'
|
35
36
37
|
<p class="question-title"
style="font-weight:600;overflow: hidden; text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;word-break: break-all;">
<span v-if="item.required=='必填'" style="color: red;">*</span>{{index}}.<span
|
3f535f30
杨鑫
'初始'
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
style="color:#0FBB59;padding:0 3px;">({{item.type}})</span>
{{item.title}}
</p>
<view>
<!-- <radio-group @change="radioChange" v-model="item.choose"
v-if="item.type =='单选'" >
<label :class="item.choose == val ?'option green':'option gary' " :key="val.answer" v-for="(val, idx) in item.options">
<view>
<radio :value="val.answer" activeBackgroundColor="#E5FFF0"
activeBorderColor="#4FCF86" iconColor="#0FBB59" />
</view>
<view>{{val.answer}}</view>
</label>
</radio-group> -->
|
bc51a62b
杨鑫
'最新'
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<u-radio-group v-model="item.choose" v-if="item.type =='单选'" style="width: 100%;">
<u-radio v-for="(val, idx) in item.options" style="width: 100%;"
:class="val.answer == item.choose ?'option green':'option gary' " :name="val.answer"
:disabled="item.disabled" :key="idx" :label-disabled="false" active-color="#4FCF86">
{{val.answer}}
</u-radio>
</u-radio-group>
<u-checkbox-group v-model="item.choose" v-if="item.type =='多选'" style="width: 100% ;">
<u-checkbox style="width: 100%;" v-for="(val, idx) in item.options"
:class="val.disabled ?'option green':'option gary' " v-model="val.disabled"
:label-disabled="false" :name="val.answer" :key="idx"
active-color="#4FCF86">{{val.answer}}</u-checkbox>
</u-checkbox-group>
|
3f535f30
杨鑫
'初始'
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<!-- <checkbox-group @change="checkboxChange(index,$event,item,idx)"
v-model="item.choose"
>
<label :class="item.choose == val.answer ?'option green':'option gary' " >
<view style="margin-bottom:5px;">
<checkbox :name="val.answer" activeBackgroundColor="#E5FFF0"
activeBorderColor="#4FCF86" iconColor="#0FBB59" />
<span>{{val.answer}}</span >
</view>
</label>
</checkbox-group> -->
|
bc51a62b
杨鑫
'最新'
|
85
86
|
<view v-if="item.type =='文本'">
<u-input type="textarea" v-model="item.choose" placeholder="请输入" :border="true"></u-input>
|
3f535f30
杨鑫
'初始'
|
87
88
89
90
91
|
</view>
</view>
</view>
<!-- 文本填写问题 -->
|
cffd42c7
杨鑫
'最新H5'
|
92
|
<view class="">
|
3f535f30
杨鑫
'初始'
|
93
94
|
<!-- <p class="question-title">您的建议:</p >
<textarea v-model="suggestion"></textarea> -->
|
bc51a62b
杨鑫
'最新'
|
95
96
97
98
99
|
<u-form labelPosition="left" :model="model1" :rules="rules" ref="uForm" validate-on-rule-change="false"
style="background-color:#fff;border-radius: 10px;">
<u-form-item label="姓名" prop="name" borderBottom ref="item1" v-if="wenjuan.needName =='必填'"
style="padding:10px 20px 0;">
<u-input v-model="model1.name" placeholder="请输入姓名"></u-input>
|
3f535f30
杨鑫
'初始'
|
100
|
</u-form-item>
|
bc51a62b
杨鑫
'最新'
|
101
102
103
|
<u-form-item label="电话" prop="phone" borderBottom v-if="wenjuan.needPhone =='必填'"
style="padding: 0 20px;">
<u-input v-model="model1.phone" placeholder="请输入电话"></u-input>
|
3f535f30
杨鑫
'初始'
|
104
|
</u-form-item>
|
bc51a62b
杨鑫
'最新'
|
105
106
|
<u-form-item label="性别" prop="sexl" borderBottom v-if="wenjuan.needGender =='必填'"
style="padding: 0 20px ;">
|
3f535f30
杨鑫
'初始'
|
107
108
|
<!-- <u-input v-model="model1.sexl" placeholder="请输入性别"></u-input> -->
<u-radio-group v-model="model1.sexl">
|
bc51a62b
杨鑫
'最新'
|
109
110
111
112
113
|
<u-radio active-color="#0FBB59" @change="radioChange" v-for="(item, index) in SexList"
:key="index" :name="item.name" :disabled="item.disabled">
{{item.name}}
</u-radio>
</u-radio-group>
|
3f535f30
杨鑫
'初始'
|
114
115
|
</u-form-item>
|
bc51a62b
杨鑫
'最新'
|
116
|
|
cffd42c7
杨鑫
'最新H5'
|
117
|
<view v-if="wenjuan.needOpinion =='必填'" style="padding:0 20px 10px 20px;">
|
bc51a62b
杨鑫
'最新'
|
118
119
120
121
122
123
|
<view style="margin-bottom:10px;">意见</view>
<u-input v-model="model1.opinion" type="textarea" :border="true" :maxlength="maxLength" />
<div class="char-count" style="font-size:12px;">
{{ currentLength }} / {{ maxLength }}
</div>
|
cffd42c7
杨鑫
'最新H5'
|
124
|
</view>
|
bc51a62b
杨鑫
'最新'
|
125
|
|
3f535f30
杨鑫
'初始'
|
126
127
128
129
130
131
132
|
</u-form>
</view>
<button class="submit-btn" @click="submit">提交问卷</button>
</view>
<u-mask :show="show">
|
bc51a62b
杨鑫
'最新'
|
133
134
135
136
|
<view class="warp">
<view class="rect" @tap.stop>
<image src="../../static/images/tijiao.png" style="position: absolute;top:40%;width:80%;left:10%"
mode="aspectFit"></image>
|
3f535f30
杨鑫
'初始'
|
137
|
</view>
|
bc51a62b
杨鑫
'最新'
|
138
139
140
141
|
</view>
</u-mask>
|
3f535f30
杨鑫
'初始'
|
142
143
144
145
146
147
148
149
150
151
|
<u-toast ref="uToast" />
</view>
</template>
<script>
const NET = require('@/utils/request')
const API = require('@/config/api')
export default {
data() {
return {
|
bc51a62b
杨鑫
'最新'
|
152
153
|
show: false,
maxLength: 500, // 假设最大字数为500
|
3f535f30
杨鑫
'初始'
|
154
155
156
|
suggestion: '',
model1: {
name: '',
|
bc51a62b
杨鑫
'最新'
|
157
|
phone: '',
|
cffd42c7
杨鑫
'最新H5'
|
158
|
sexl: '',
|
bc51a62b
杨鑫
'最新'
|
159
|
opinion: '',
|
3f535f30
杨鑫
'初始'
|
160
161
162
163
164
165
|
},
wenjuan: {
},
wentile: [],
rules: {
|
bc51a62b
杨鑫
'最新'
|
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
name: [{
type: 'string',
required: true,
message: '请填写姓名',
trigger: ['blur', 'change']
}],
phone: [{
required: true,
message: '请输入电话'
},
{
type: 'number',
message: '必须为数字值'
}
|
3f535f30
杨鑫
'初始'
|
180
181
182
183
184
185
186
187
188
189
190
|
],
},
current: [],
pageTime: null,
duoxuan: [],
danAnswers: [],
selectedAnswers: [],
panduanId: [],
wenjuanIds: '',
scoreList: [],
|
bc51a62b
杨鑫
'最新'
|
191
192
193
194
195
196
197
198
|
SexList: [{
name: '男',
disabled: false
},
{
name: '女',
disabled: false
},
|
3f535f30
杨鑫
'初始'
|
199
|
],
|
bc51a62b
杨鑫
'最新'
|
200
201
|
timeLeft: null,
token: ''
|
3f535f30
杨鑫
'初始'
|
202
203
|
};
},
|
bc51a62b
杨鑫
'最新'
|
204
205
206
207
208
|
computed: {
currentLength() {
return this.model1.opinion.length;
}
},
|
3f535f30
杨鑫
'初始'
|
209
210
|
onLoad(options) {
|
bc51a62b
杨鑫
'最新'
|
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
if (options.ids !='') {
if (options.src && options.token) {
this.token = options.token
let obj = {
token: options.token
}
NET.request(API.jietoken, obj, 'get').then(res => {
if (typeof res.data == 'string') {
if (JSON.parse(res.data).phone) {
this.model1.phone = Number(JSON.parse(res.data).phone)
}
if (JSON.parse(res.data).aac003) {
this.model1.name = JSON.parse(res.data).aac003
}
|
ab818baa
杨鑫
'1'
|
227
|
}
|
bc51a62b
杨鑫
'最新'
|
228
229
230
231
232
233
234
|
})
// if (options.token != undefined) {}
} else if (options.phone != undefined) {
this.model1.phone = options.phone
|
ab818baa
杨鑫
'1'
|
235
|
}
|
bc51a62b
杨鑫
'最新'
|
236
|
|
3f535f30
杨鑫
'初始'
|
237
238
239
|
this.wenjuanIds = options.ids
NET.request(API.wenjuanList, {
id: options.ids,
|
82b7d84f
杨鑫
'z问卷'
|
240
|
// reviewStatus: '3',
|
3f535f30
杨鑫
'初始'
|
241
|
}, 'post').then(res => {
|
bc51a62b
杨鑫
'最新'
|
242
243
244
245
246
247
|
if (res.data.id) {
this.wenjuan = res.data
this.wenjuan.question = JSON.parse(res.data.question)
this.timeLeft = parseInt(this.wenjuan.estimatedTime, 10) * 60; // 将分钟转换为秒
this.updateCountdownDisplay()
|
82b7d84f
杨鑫
'z问卷'
|
248
249
250
251
252
253
|
if(res.data.reviewStatus == '5' || res.data.reviewStatus == '4') {
uni.reLaunch({
url: `/pages_category_page1/question/succe?flag=3`
})
}
|
bc51a62b
杨鑫
'最新'
|
254
255
256
257
258
259
|
} else {
uni.reLaunch({
url: `/pages_category_page1/question/succe?flag=1`
})
}
|
ab818baa
杨鑫
'1'
|
260
|
|
3f535f30
杨鑫
'初始'
|
261
262
263
264
265
|
// if (res.data.cereQuestionManagements.length > 0) {
// for (let i = 0; i < res.data.cereQuestionManagements.length; i++) {
// this.$set(res.data.cereQuestionManagements[i], 'value', [])
// }
// }
|
bc51a62b
杨鑫
'最新'
|
266
|
|
3f535f30
杨鑫
'初始'
|
267
|
// this.wentile = res.data.cereQuestionManagements
|
bc51a62b
杨鑫
'最新'
|
268
|
|
3f535f30
杨鑫
'初始'
|
269
270
271
272
273
|
// this.wenjuan.cereQuestionManagements.map(item => {
// item.optionSettings = JSON.parse(item.optionSettings)
// item.score = JSON.parse(item.score)
// })
|
bc51a62b
杨鑫
'最新'
|
274
275
276
277
278
|
})
}else{
uni.reLaunch({
url: `/pages_category_page1/question/succe?flag=1`
|
3f535f30
杨鑫
'初始'
|
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
})
}
// 设置倒计时定时器
// const countdownInterval = setInterval(() => {
// if (this.timeLeft > 0) {
// this.timeLeft--;
// this.updateCountdownDisplay();
// } else {
// clearInterval(countdownInterval);
// location.reload(true);
// // console.log('倒计时结束');
// // 这里可以添加倒计时结束时的处理代码
// }
// }, 1000); // 每秒更新一次
this.pageTime = this.getCurrentTimestamp()
},
watch: {},
methods: {
// 获取时间
currentTime() {
let date = new Date();
let year = date.getFullYear();
let month = date.getMonth() + 1; // 月份从0~11,所以加一
let day = date.getDate();
let hours = date.getHours();
let minutes = date.getMinutes();
let seconds = date.getSeconds();
// 为月、日、小时、分钟和秒添加前导零(如果需要)
month = month < 10 ? '0' + month : month;
day = day < 10 ? '0' + day : day;
hours = hours < 10 ? '0' + hours : hours;
minutes = minutes < 10 ? '0' + minutes : minutes;
seconds = seconds < 10 ? '0' + seconds : seconds;
// 返回格式化的日期和时间字符串
return `${year}-${month}-${day} ${hours}:${minutes}`;
},
|
bc51a62b
杨鑫
'最新'
|
318
319
320
321
322
323
324
325
326
327
328
|
updateCountdownDisplay() {
const minutes = Math.floor(this.timeLeft / 60);
const seconds = this.timeLeft % 60;
// console.log(`${minutes} 分 ${seconds} 秒`);
// 这里可以替换为更新DOM元素的代码
},
// formatTime(seconds) {
// const minutes = Math.floor(seconds / 60);
// const remainingSeconds = seconds % 60;
// return `${minutes}分${remainingSeconds < 10 ? '0' : ''}${remainingSeconds}秒`;
// },
|
3f535f30
杨鑫
'初始'
|
329
330
331
332
|
getCurrentTimestamp() {
let Times = Date.now();
return Times // 或者 new Date().getTime();
},
|
bc51a62b
杨鑫
'最新'
|
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
checkRequiredQuestions(qust) {
for (let key in qust) {
console.log(qust)
let question = qust[key];
if (question.required === '必填') {
if (question.type === '文本' || question.type === '单选') {
if (question.choose === '') {
this.$refs.uToast.show({
title: '请填写所有必填题目',
})
return false; // 返回false表示有未填写的必填题目
}
} else if (question.type === '多选') {
let hasEnabledOption = question.options.some(option => option.disabled);
if (!hasEnabledOption) {
this.$refs.uToast.show({
title: '请填写所有必填题目',
})
return false; // 返回false表示有未填写的必填题目
}
}
}
}
return true; // 返回true表示所有必填题目都已填写
},
|
3f535f30
杨鑫
'初始'
|
361
|
submit() {
|
bc51a62b
杨鑫
'最新'
|
362
|
|
3f535f30
杨鑫
'初始'
|
363
364
365
|
let putTime = this.getCurrentTimestamp() - this.pageTime
putTime = (putTime / 1000).toFixed(2)
|
bc51a62b
杨鑫
'最新'
|
366
367
368
369
|
if (!this.checkRequiredQuestions(this.wenjuan.question)) {
return
}
|
3f535f30
杨鑫
'初始'
|
370
|
|
bc51a62b
杨鑫
'最新'
|
371
|
if (this.model1.name == '' && this.wenjuan.needName == '必填') {
|
3f535f30
杨鑫
'初始'
|
372
373
374
375
376
|
this.$refs.uToast.show({
title: '请输入姓名',
})
return;
}
|
bc51a62b
杨鑫
'最新'
|
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
if (this.wenjuan.needName == '不填' && this.token == '') {
this.model1.name = '匿名'
}
if (this.model1.phone == '' && this.wenjuan.needPhone == '必填') {
this.$refs.uToast.show({
title: '电话号码不能为空'
});
return;
}
if (this.wenjuan.needPhone == '必填' && this.isChineseOrPunctuation(this.model1.phone)) {
this.$refs.uToast.show({
title: '请输入电话且不能包含汉字或标点特殊符号',
})
return;
|
cffd42c7
杨鑫
'最新H5'
|
393
|
}
|
bc51a62b
杨鑫
'最新'
|
394
395
396
397
398
|
// if(this.wenjuan.needPhone =='不填' && this.wenjuan.fillingConditions == '可重复填写'){
// this.model1.phone = ''
// }
if (this.model1.sexl != '男' && this.model1.sexl != '女' && this.wenjuan.needGender == '必填') {
|
3f535f30
杨鑫
'初始'
|
399
400
401
402
403
|
this.$refs.uToast.show({
title: '请选择性别',
})
return;
}
|
bc51a62b
杨鑫
'最新'
|
404
405
406
407
408
409
410
411
412
413
414
415
416
|
if (this.wenjuan.needGender == '不填') {
this.model1.sexl = '未知'
}
if (this.model1.opinion == '' && this.wenjuan.needOpinion == '必填') {
this.$refs.uToast.show({
title: '请输入意见',
})
return;
}
|
3f535f30
杨鑫
'初始'
|
417
418
419
420
421
422
423
424
425
426
427
428
|
// JSON.stringify(danAnswers)
// let array = this.danAnswers.concat(this.selectedAnswers)
// obj.answerOptions = JSON.stringify(array)
var arr = []
// for (let i = 0; i < this.wentile.length; i++) {
// var info = {
// id: "",
// value: [],
// cores:0,
// }
// if (this.wentile[i].questionType == '单选' || this.wentile[i].questionType == '文本' ) {
|
bc51a62b
杨鑫
'最新'
|
429
|
|
3f535f30
杨鑫
'初始'
|
430
431
432
433
|
// info.id = this.wentile[i].id
// info.value = this.wentile[i].value
// let index =this.wentile[i].value
// if(this.wentile[i].score){
|
bc51a62b
杨鑫
'最新'
|
434
|
|
3f535f30
杨鑫
'初始'
|
435
436
|
// for (const key in this.wentile[i].score) {
// if (this.wentile[i].score.hasOwnProperty(key)) { // 确保只获取对象自身的属性,而不是继承的属性
|
bc51a62b
杨鑫
'最新'
|
437
|
|
3f535f30
杨鑫
'初始'
|
438
439
440
441
442
443
444
445
446
|
// if(key == index){
// info.cores = this.wentile[i].score[key]; // 设置 info.cores 为当前键对应的值
// break; // 如果找到了匹配的键,可以提前退出循环
// }
// }
// }
// }
// // console.log(this.wentile[i].cores[index])
// // info.cores.this.wentile[i].value =
|
bc51a62b
杨鑫
'最新'
|
447
|
|
3f535f30
杨鑫
'初始'
|
448
|
// arr.push(info)
|
bc51a62b
杨鑫
'最新'
|
449
450
451
|
|
3f535f30
杨鑫
'初始'
|
452
453
454
455
456
457
|
// // if (this.wentile[i].value != '' && this.wentile[i].value != null && this.wentile[i].value !=
// // undefined) {
// // info.id = this.wentile[i].id
// // info.value = this.wentile[i].value
// // let index =this.wentile[i].value
// // if(this.wentile[i].score){
|
bc51a62b
杨鑫
'最新'
|
458
|
|
3f535f30
杨鑫
'初始'
|
459
460
|
// // for (const key in this.wentile[i].score) {
// // if (this.wentile[i].score.hasOwnProperty(key)) { // 确保只获取对象自身的属性,而不是继承的属性
|
bc51a62b
杨鑫
'最新'
|
461
|
|
3f535f30
杨鑫
'初始'
|
462
463
464
465
466
467
468
469
470
|
// // if(key == index){
// // info.cores = this.wentile[i].score[key]; // 设置 info.cores 为当前键对应的值
// // break; // 如果找到了匹配的键,可以提前退出循环
// // }
// // }
// // }
// // }
// // // console.log(this.wentile[i].cores[index])
// // // info.cores.this.wentile[i].value =
|
bc51a62b
杨鑫
'最新'
|
471
|
|
3f535f30
杨鑫
'初始'
|
472
|
// // arr.push(info)
|
bc51a62b
杨鑫
'最新'
|
473
|
|
3f535f30
杨鑫
'初始'
|
474
475
476
477
478
479
480
481
|
// // }
// } else {
// if (this.wentile[i].value.length > 0) {
// info.id = this.wentile[i].id
// info.value = this.wentile[i].value
// let index =this.wentile[i].value
// console.log(this.wentile[i].score);
// if(this.wentile[i].score){
|
bc51a62b
杨鑫
'最新'
|
482
|
|
3f535f30
杨鑫
'初始'
|
483
484
485
486
487
488
489
|
// for (const key in this.wentile[i].score) {
// if (this.wentile[i].score.hasOwnProperty(key)) { // 确保只获取对象自身的属性,而不是继承的属性
// console.log('1111111111111111111',key,index)
// for(let j=0;j<index.length;j++){
// if(key == index[j]){
// console.log(info.cores,this.wentile[i].score[key])
// info.cores += this.wentile[i].score[key]; // 设置 info.cores 为当前键对应的值
|
bc51a62b
杨鑫
'最新'
|
490
|
|
3f535f30
杨鑫
'初始'
|
491
492
|
// }
// }
|
bc51a62b
杨鑫
'最新'
|
493
|
|
3f535f30
杨鑫
'初始'
|
494
495
496
497
|
// }
// }
// }
// arr.push(info)
|
bc51a62b
杨鑫
'最新'
|
498
|
|
3f535f30
杨鑫
'初始'
|
499
500
|
// }
// }
|
bc51a62b
杨鑫
'最新'
|
501
|
|
3f535f30
杨鑫
'初始'
|
502
503
|
// }
|
bc51a62b
杨鑫
'最新'
|
504
505
|
console.log(this.wenjuan)
|
3f535f30
杨鑫
'初始'
|
506
507
508
509
510
511
512
513
514
515
516
|
// let obj = {
// questionnaireId: this.wenjuanIds,
// userName: this.model1.name,
// contactNumber: this.model1.phone,
// gender: this.model1.sexl,
// responseTime: putTime,
// opinion:this.model1.opinion,
// createTime: this.currentTime(),
// answerOptions: {},
// answeringScore: '',
// questionnaireScore: null,
|
bc51a62b
杨鑫
'最新'
|
517
|
|
3f535f30
杨鑫
'初始'
|
518
|
// }
|
bc51a62b
杨鑫
'最新'
|
519
520
|
// obj.answeringScore = []
|
3f535f30
杨鑫
'初始'
|
521
522
523
524
525
526
527
528
|
// for(let i=0;i<arr.length;i++){
// console.log()
// if(arr[i].cores ==null){
// obj.answerOptions[i+1] = arr[i].value
// }else{
// obj.questionnaireScore +=arr[i].cores
// obj.answeringScore.push(arr[i].cores)
// if(typeof arr[i].value !='string'){
|
bc51a62b
杨鑫
'最新'
|
529
|
|
3f535f30
杨鑫
'初始'
|
530
531
532
533
534
535
|
// arr[i].value.sort((a, b) => a - b)
// obj.answerOptions[i+1] = arr[i].value.join(',')
// }else{
// obj.answerOptions[i+1]=arr[i].value
// }
// }
|
bc51a62b
杨鑫
'最新'
|
536
537
|
|
3f535f30
杨鑫
'初始'
|
538
539
540
|
// }
// obj.answerOptions= JSON.stringify(obj.answerOptions)
// obj.answeringScore = obj.answeringScore.join(',')
|
bc51a62b
杨鑫
'最新'
|
541
542
543
|
var obj = {
...this.wenjuan
|
3f535f30
杨鑫
'初始'
|
544
|
}
|
bc51a62b
杨鑫
'最新'
|
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
|
for (var key in obj.question) {
console.log(obj.question[key])
if (obj.question[key].type == '多选') {
obj.question[key].choose = []
obj.question[key].options.map(res => {
if (res.disabled) {
obj.question[key].choose.push(res.answer)
}
})
obj.question[key].choose = obj.question[key].choose.join(',')
}
}
const result = Object.keys(obj.question).reduce((acc, key) => {
const question = obj.question[key];
const chooseAnswers = question.choose.split(","); // 处理多选的情况
const indexes = chooseAnswers.map((choose) => {
const optionIndex = question.options.findIndex(
(option) => option.answer === choose
);
return optionIndex >= 0 ? optionIndex + 1 : null; // 序号从1开始
});
acc[key] = indexes.filter((index) => index !== null).join(","); // 只保留有效序号
return acc;
}, {});
// 计算总分数
const totalScore = Object.keys(obj.question).reduce((sum, key) => {
const question = obj.question[key]
if (question.type === "单选" || question.type === "多选") {
const chooseAnswers = question.choose.split(","); // 多选时拆分答案
chooseAnswers.forEach((choose) => {
const matchedOption = question.options.find(
(option) => option.answer === choose
);
if (matchedOption) {
sum += parseFloat(matchedOption.score || 0); // 累加分数
}
});
}
return sum;
}, 0);
// console.log(obj.question,totalScore,result)
// return
|
3f535f30
杨鑫
'初始'
|
593
|
obj.questionnaireId = this.wenjuanIds
|
bc51a62b
杨鑫
'最新'
|
594
595
596
597
598
599
600
601
602
|
obj.userName = this.model1.name
obj.contactNumber = this.model1.phone
obj.gender = this.model1.sexl
obj.responseTime = putTime
obj.answerOptions = JSON.stringify(result)
obj.createTime = this.currentTime()
obj.opinion = this.model1.opinion
obj.questionnaireScore = totalScore
|
3f535f30
杨鑫
'初始'
|
603
604
605
606
607
608
609
610
611
612
613
|
// let obj = {
// questionnaireId: this.wenjuanIds,
// userName: this.model1.name,
// contactNumber: this.model1.phone,
// gender: this.model1.sexl,
// responseTime: putTime,
// opinion:this.model1.opinion,
// createTime: this.currentTime(),
// answerOptions: {},
// answeringScore: '',
// questionnaireScore: null,
|
bc51a62b
杨鑫
'最新'
|
614
|
|
3f535f30
杨鑫
'初始'
|
615
|
// }
|
bc51a62b
杨鑫
'最新'
|
616
617
618
619
620
621
622
623
624
625
626
627
|
obj.question = JSON.stringify(obj.question)
let tijiaoObj = {
questionnaireId: this.wenjuanIds,
userName: this.model1.name,
contactNumber: this.model1.phone,
gender: this.model1.sexl,
responseTime: putTime,
answerOptions: JSON.stringify(result),
createTime: this.currentTime(),
opinion: this.model1.opinion,
questionnaireScore: totalScore,
question: obj.question
|
3f535f30
杨鑫
'初始'
|
628
|
}
|
bc51a62b
杨鑫
'最新'
|
629
|
|
cffd42c7
杨鑫
'最新H5'
|
630
|
console.log(tijiaoObj)
|
bc51a62b
杨鑫
'最新'
|
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
|
NET.request(API.wenjuanUp, tijiaoObj, 'post').then(res => {
// this.show =true
if (res.data == 'false') {
uni.reLaunch({
url: `/pages_category_page1/question/succe?chonfu=true`
})
} else {
uni.reLaunch({
url: `/pages_category_page1/question/succe?ids=${this.wenjuanIds}`
})
}
})
|
3f535f30
杨鑫
'初始'
|
647
648
|
},
|
bc51a62b
杨鑫
'最新'
|
649
650
651
652
|
isChineseOrPunctuation(str) {
const regex = /[^\d]/;
return regex.test(str);
},
|
3f535f30
杨鑫
'初始'
|
653
654
655
656
|
// radioChange(index, e, item, idx) {
// console.log(index, e, item, idx)
|
bc51a62b
杨鑫
'最新'
|
657
|
|
3f535f30
杨鑫
'初始'
|
658
659
|
// // item.value = idx;
// // this.$forceUpdate();
|
bc51a62b
杨鑫
'最新'
|
660
|
|
3f535f30
杨鑫
'初始'
|
661
662
|
// },
radioChange(ind) {
|
7ab02d9a
杨鑫
问卷完成,最新
|
663
664
665
666
667
668
669
670
|
// console.log(index, e, item, idx)
// console.error(this.items)
// for (let i = 0; i < this.items.length; i++) {
// if (this.items[i].value === evt.detail.value) {
// this.current = i;
// break;
// }
// }
|
3f535f30
杨鑫
'初始'
|
671
672
|
// item.value = idx;
// this.$forceUpdate();
|
bc51a62b
杨鑫
'最新'
|
673
|
|
3f535f30
杨鑫
'初始'
|
674
675
|
},
checkboxChange(index, e, item, idx) {
|
bc51a62b
杨鑫
'最新'
|
676
677
678
679
680
681
682
683
|
// const index1 = item.value.indexOf(idx)
// if (index1 !== -1) {
// item.value.splice(index1, 1);
// } else {
// item.value.push(idx)
// }
// this.$forceUpdate();
|
3f535f30
杨鑫
'初始'
|
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
|
},
}
};
</script>
<style>
/* 整体页面背景渐变颜色设置 */
body {
background: linear-gradient(to bottom, #e9f2f8, #d0e0ea);
font-family: Arial, sans-serif;
line-height: 1.6;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
margin: 0;
padding: 0;
}
.question {
background-color: white;
padding: 15px;
margin: 10px 0;
border-radius: 10px;
}
/* 问卷容器样式,确保宽度自适应且不超出屏幕,设置内边距和背景等 */
.questionnaire {
width: 100%;
max-width: 600px;
flex-grow: 1;
/* padding: 30px; */
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
box-sizing: border-box;
}
/* 页面标题样式,设置背景色、文字颜色、宽度及内边距等 */
h3 {
text-align: center;
color: #000;
/* background-color: #007BFF; */
margin: 0;
padding: 10px 0;
width: 100%;
box-sizing: border-box;
}
/* 问题标题样式,设置字体大小、颜色及下边框 */
.question-title {
font-size: 18px;
color: #000;
margin-bottom: 10px;
}
/* 选项样式,设置列表样式及光标样式 */
.option {
list-style-type: none;
margin: 0;
padding: 0;
cursor: pointer;
display: flex;
align-items: center;
margin-bottom: 10px;
color: black;
padding: 10px;
border-radius: 3px;
transition: background-color 0.3s ease;
}
.green {
background-color: #E5FFF0;
}
.gary {
background-color: #f5f5f5;
}
/* 文本域样式,设置宽度、高度、边框及内边距 */
textarea {
width: 100%;
height: 100px;
border: 1px solid #ccc;
border-radius: 3px;
padding: 10px;
resize: vertical;
box-sizing: border-box;
}
/* 提交按钮样式,设置背景色、颜色、边框、内边距、光标及过渡效果 */
.submit-btn {
background-color: #3F9B6A;
color: white;
border: none;
padding: 0px 20px;
border-radius: 3px;
cursor: pointer;
margin-top: 20px;
transition: background-color 0.3s ease;
width: 100%;
box-sizing: border-box;
}
/* 提交按钮悬停效果,改变背景色 */
.submit-btn:hover {
background-color: #3F9B6A;
}
.uni-checkbox-input {
width: 15px;
height: 15px;
}
.uni-radio-input {
width: 15px;
height: 15px;
}
|
bc51a62b
杨鑫
'最新'
|
806
|
|
3f535f30
杨鑫
'初始'
|
807
|
::v-deep .u-radio__label {
|
bc51a62b
杨鑫
'最新'
|
808
809
810
811
|
white-space: normal !important;
/* 允许文本换行 */
word-break: break-all !important;
/* 当内容过长时,自动换行 */
|
3f535f30
杨鑫
'初始'
|
812
813
|
}
</style>
|