Blame view

wenjuan-h5/pages_category_page1/question/question.vue 29.4 KB
b1fef010   杨鑫   '最新代码'
1
2
3
4
5
6
7
8
  <template>
  	<view class="questionnaire">
  
  		<!-- 单选问题 -->
  		<view style="padding:20px;background-color: #f6f6f6;">
  			<view>
  				<h2
  					style="color: #000;overflow: hidden; text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;word-break: break-all;text-align:center">
35280aea   “wangming”   1
9
  					{{ wenjuan.title }}
b1fef010   杨鑫   '最新代码'
10
11
12
  				</h2>
  				<!-- <h5 style="padding: 10px 0;color: #000;">请您认真作答以下题目</h5> -->
  				<view class="" style="padding: 10px 0; height: 200px;">
35280aea   “wangming”   1
13
  					<image :src="this.$hostUrl + wenjuan.coverImage" mode="scaleToFill"
b1fef010   杨鑫   '最新代码'
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  						style="width:100%;height: 100%;border-radius: 10px;"></image>
  				</view>
  			</view>
  			<view style="padding: 15px;background-color: #fff;border-radius: 10px;">
  				<view>
  					<!-- <u-parse :content="wenjuan.remarks"></u-parse> -->
  					<rich-text :nodes="wenjuan.remarks"></rich-text>
  					<!-- {{wenjuan.remarks}} -->
  					<!-- <view>
  						<view style="display:flex;padding:10px 0;justify-content: space-between;">
  							<view style="display:flex;">
  								{{wenjuan.createUser}}
  							</view>
  							<view>
  								{{wenjuan.createTime}}
  							</view>
  						</view>
  					</view> -->
  					<!-- <view>预计答题时间:{{this.wenjuan.estimatedTime}}分钟</view> -->
  				</view>
  			</view>
35280aea   “wangming”   1
35
  			<view class="question" v-for="(item, index) in wenjuan.question" style="">
b1fef010   杨鑫   '最新代码'
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;">
35280aea   “wangming”   1
38
39
40
  					<span v-if="item.required == '必填'" style="color: red;">*</span>{{ index }}.<span
  						style="color:#0FBB59;padding:0 3px;">({{ item.type }})</span>
  					{{ item.title }}
b1fef010   杨鑫   '最新代码'
41
42
  				</p>
  				<view>
35280aea   “wangming”   1
43
  
b1fef010   杨鑫   '最新代码'
44
45
46
47
48
49
50
51
52
53
  					<!-- <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> -->
35280aea   “wangming”   1
54
55
  					<u-radio-group v-model="item.choose" v-if="item.type == '单选'" style="width: 100%;">
  						<view v-if="item.layoutType != 2">
b1fef010   杨鑫   '最新代码'
56
  							<u-radio v-for="(val, idx) in item.options" style="width: 100%;"
35280aea   “wangming”   1
57
  								:class="val.answer == item.choose ? 'option green' : 'option gary'" :name="val.answer"
b1fef010   杨鑫   '最新代码'
58
  								:disabled="item.disabled" :key="idx" :label-disabled="false" active-color="#4FCF86">
35280aea   “wangming”   1
59
  								{{ val.answer }}
b1fef010   杨鑫   '最新代码'
60
61
  							</u-radio>
  						</view>
35280aea   “wangming”   1
62
  						<view v-else-if="item.layoutType == 2" class="myMultiple">
b1fef010   杨鑫   '最新代码'
63
  							<div v-for="(val, idx) in item.options"
24cb57ca   wesley88   1
64
  								:class="['myOption gary', { optionActive: item.choose == val.answer }]" :key="idx"
35280aea   “wangming”   1
65
  								@click="chooseAnswerOne(item.options, val, idx)">
24cb57ca   wesley88   1
66
  								<p class="chooseTag" v-if="item.choose == val.answer"><u-icon name="checkbox-mark"
35280aea   “wangming”   1
67
68
  										color="#fff" size="8pt"></u-icon></p>
  								{{ val.answer }}
b1fef010   杨鑫   '最新代码'
69
70
71
  							</div>
  						</view>
  					</u-radio-group>
35280aea   “wangming”   1
72
73
74
  
  					<u-checkbox-group v-model="item.choose" v-if="item.type == '多选'" style="width: 100%;">
  						<view v-if="item.layoutType != 2">
b1fef010   杨鑫   '最新代码'
75
  							<u-checkbox v-for="(val, idx) in item.options" style="width: 100%;"
35280aea   “wangming”   1
76
  								:class="val.disabled ? 'option green' : 'option gary'" v-model="val.disabled"
b1fef010   杨鑫   '最新代码'
77
  								:label-disabled="false" :name="val.answer" :key="idx" active-color="#4FCF86"
24cb57ca   wesley88   1
78
  								@change="chooseAnswer(val,idx,item,index)">{{ val.answer }}</u-checkbox>
b1fef010   杨鑫   '最新代码'
79
  						</view>
35280aea   “wangming”   1
80
  						<view v-else-if="item.layoutType == 2" class="myMultiple">
b1fef010   杨鑫   '最新代码'
81
  							<div v-for="(val, index) in item.options"
35280aea   “wangming”   1
82
  								:class="['myOption gary', { optionActive: val.disabled == true }]" :key="index"
60bdae5b   杨鑫   '最新'
83
  								@click="chooseAnswerMore(val,index,item)">
35280aea   “wangming”   1
84
85
86
  								<p class="chooseTag" v-if="val.disabled == true"><u-icon name="checkbox-mark"
  										color="#fff" size="8pt"></u-icon></p>
  								{{ val.answer }}
b1fef010   杨鑫   '最新代码'
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
  							</div>
  						</view>
  					</u-checkbox-group>
  					<!-- <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> -->
35280aea   “wangming”   1
104
  					<view v-if="item.type == '文本'">
b1fef010   杨鑫   '最新代码'
105
106
107
108
109
110
111
112
113
114
115
  						<u-input type="textarea" v-model="item.choose" placeholder="请输入" :border="true"></u-input>
  					</view>
  				</view>
  			</view>
  
  			<!-- 文本填写问题 -->
  			<view class="">
  				<!--    <p class="question-title">您的建议:</p >
  		    <textarea v-model="suggestion"></textarea> -->
  				<u-form labelPosition="left" :model="model1" :rules="rules" ref="uForm" validate-on-rule-change="false"
  					style="background-color:#fff;border-radius: 10px;">
35280aea   “wangming”   1
116
  					<u-form-item label="姓名" prop="name" borderBottom ref="item1" v-if="wenjuan.needName == '必填'"
b1fef010   杨鑫   '最新代码'
117
118
119
  						style="padding:10px 20px 0;">
  						<u-input v-model="model1.name" placeholder="请输入姓名"></u-input>
  					</u-form-item>
35280aea   “wangming”   1
120
  					<u-form-item label="电话" prop="phone" borderBottom v-if="wenjuan.needPhone == '必填'"
b1fef010   杨鑫   '最新代码'
121
122
123
  						style="padding: 0 20px;">
  						<u-input v-model="model1.phone" placeholder="请输入电话"></u-input>
  					</u-form-item>
35280aea   “wangming”   1
124
  					<u-form-item label="性别" prop="sexl" borderBottom v-if="wenjuan.needGender == '必填'"
b1fef010   杨鑫   '最新代码'
125
126
127
128
129
  						style="padding: 0 20px ;">
  						<!-- <u-input v-model="model1.sexl"  placeholder="请输入性别"></u-input> -->
  						<u-radio-group v-model="model1.sexl">
  							<u-radio active-color="#0FBB59" @change="radioChange" v-for="(item, index) in SexList"
  								:key="index" :name="item.name" :disabled="item.disabled">
35280aea   “wangming”   1
130
  								{{ item.name }}
b1fef010   杨鑫   '最新代码'
131
132
133
134
135
  							</u-radio>
  						</u-radio-group>
  					</u-form-item>
  
  
35280aea   “wangming”   1
136
  					<view v-if="wenjuan.needOpinion == '必填'" style="padding:0 20px 10px 20px;">
b1fef010   杨鑫   '最新代码'
137
138
139
140
141
142
143
144
145
146
147
148
  						<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>
  					</view>
  
  				</u-form>
  
  			</view>
  
25ccb2a3   wesley88   1
149
  			<button class="submit-btn" @click="submit">提交问卷</button>
b1fef010   杨鑫   '最新代码'
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  		</view>
  		<u-mask :show="show">
  			<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>
  				</view>
  			</view>
  		</u-mask>
  
  
  		<u-toast ref="uToast" />
  	</view>
  </template>
  
  <script>
  	const NET = require('@/utils/request')
  	const API = require('@/config/api')
  	export default {
  		data() {
  			return {
  				show: false,
  				maxLength: 500, // 假设最大字数为500
  				suggestion: '',
  				model1: {
  					name: '',
  					phone: '',
  					sexl: '',
  					opinion: '',
35280aea   “wangming”   1
179
  					socialSecurityCardNumber: ''
b1fef010   杨鑫   '最新代码'
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
  				},
  				wenjuan: {
  
  				},
  				wentile: [],
  				rules: {
  					name: [{
  						type: 'string',
  						required: true,
  						message: '请填写姓名',
  						trigger: ['blur', 'change']
  					}],
  					phone: [{
  							required: true,
  							message: '请输入电话'
  						},
  						{
  							type: 'number',
  							message: '必须为数字值'
  						}
  					],
  				},
  
  				current: [],
  				pageTime: null,
  				duoxuan: [],
  				danAnswers: [],
  				selectedAnswers: [],
  				panduanId: [],
  				wenjuanIds: '',
  				scoreList: [],
  				SexList: [{
  						name: '男',
  						disabled: false
  					},
  					{
  						name: '女',
  						disabled: false
  					},
  				],
  				timeLeft: null,
  				token: '',
  				myChoose: {},
  				myChooseItem: [
35280aea   “wangming”   1
224
  
b1fef010   杨鑫   '最新代码'
225
  				],
35280aea   “wangming”   1
226
  				panduan: false
b1fef010   杨鑫   '最新代码'
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
  			};
  		},
  		computed: {
  			currentLength() {
  				return this.model1.opinion.length;
  			}
  		},
  		onLoad(options) {
  
  			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') {
35280aea   “wangming”   1
245
  
b1fef010   杨鑫   '最新代码'
246
247
248
249
250
251
252
253
254
255
  							if (JSON.parse(res.data).phone) {
  								this.model1.phone = Number(JSON.parse(res.data).phone)
  							}
  							if (JSON.parse(res.data).aac003Mask) {
  								this.model1.name = JSON.parse(res.data).aac003Mask
  							}
  							if (JSON.parse(res.data).aac004) {
  								this.model1.sexl = JSON.parse(res.data).aac004
  								this.panduan = true
  							}
35280aea   “wangming”   1
256
  							if (JSON.parse(res.data).aac002Mask) {
b1fef010   杨鑫   '最新代码'
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
  								this.model1.socialSecurityCardNumber = JSON.parse(res.data).aac002Mask
  							}
  						}
  
  					})
  
  					// if (options.token != undefined) {}
  
  				} else if (options.phone != undefined) {
  					this.model1.phone = options.phone
  				}
  
  				this.wenjuanIds = options.ids
  				NET.request(API.wenjuanList, {
  					id: options.ids,
  					// reviewStatus: '3',
  				}, 'post').then(res => {
  					if (res.data.id) {
  						this.wenjuan = res.data
  						this.wenjuan.question = JSON.parse(res.data.question)
00bbdbd2   杨鑫   '最新'
277
  						
35280aea   “wangming”   1
278
  						//检查this.wenjuan.question这个list的每个里面是否有maxChoose参数,没有的话就加一个
24cb57ca   wesley88   1
279
280
281
282
283
284
285
  						// this.wenjuan.question.forEach(item => {
  						// 	console.log(item)
  						// 	if (!item.maxChoose) {
  						// 		item.maxChoose = 0
  						// 	}
  						// })
  						
b1fef010   杨鑫   '最新代码'
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
  
  						this.timeLeft = parseInt(this.wenjuan.estimatedTime, 10) * 60; // 将分钟转换为秒
  						this.updateCountdownDisplay()
  
  						if (res.data.reviewStatus == '5' || res.data.reviewStatus == '4') {
  							uni.reLaunch({
  								url: `/pages_category_page1/question/succe?flag=3`
  							})
  						}
  					} else {
  
  						uni.reLaunch({
  							url: `/pages_category_page1/question/succe?flag=1`
  						})
  					}
  
  					// if (res.data.cereQuestionManagements.length > 0) {
  					// 	for (let i = 0; i < res.data.cereQuestionManagements.length; i++) {
  					// 		this.$set(res.data.cereQuestionManagements[i], 'value', [])
  					// 	}
  					// }
  
  					// this.wentile = res.data.cereQuestionManagements
  
  					// this.wenjuan.cereQuestionManagements.map(item => {
  
  					// 	item.optionSettings = JSON.parse(item.optionSettings)
  					// 	item.score = JSON.parse(item.score)
  					// })
  
  				})
  			} else {
  				uni.reLaunch({
  					url: `/pages_category_page1/question/succe?flag=1`
  				})
  			}
  			// 设置倒计时定时器
  			// 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: {
24cb57ca   wesley88   1
339
  
b1fef010   杨鑫   '最新代码'
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
  			// 获取时间
  			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}`;
  			},
  			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}秒`;
  			// },
  			getCurrentTimestamp() {
  				let Times = Date.now();
  				return Times // 或者 new Date().getTime();
  			},
  			checkRequiredQuestions(qust) {
  				for (let key in qust) {
  
  					let question = qust[key];
  					if (question.required === '必填') {
  						if (question.type === '文本' || question.type === '单选') {
6831f623   wesley88   1
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
  							if(Array.isArray(question.choose)) {
  								if (question.choose.length>0 && question.choose[0]) {
  				
  								} else{
  									this.$refs.uToast.show({
  										title: '请填写所有必填题目',
  									})
  																	
  									return false; // 返回false表示有未填写的必填题目
  								}
  							} else{
  								if (question.choose === '') {
  								
  									this.$refs.uToast.show({
  										title: '请填写所有必填题目',
  									})
  								
  									return false; // 返回false表示有未填写的必填题目
  								}
b1fef010   杨鑫   '最新代码'
400
401
402
403
404
405
406
407
408
409
  							}
  						} else if (question.type === '多选') {
  
  
  							let hasEnabledOption = question.options.some(option => option.disabled);
  
  							if (!hasEnabledOption) {
  								this.$refs.uToast.show({
  									title: '请填写所有必填题目',
  								})
35280aea   “wangming”   1
410
  
b1fef010   杨鑫   '最新代码'
411
412
413
414
415
416
417
418
  								return false; // 返回false表示有未填写的必填题目
  							}
  						}
  					}
  				}
  				return true; // 返回true表示所有必填题目都已填写
  			},
  			submit() {
b1fef010   杨鑫   '最新代码'
419
420
  				let putTime = this.getCurrentTimestamp() - this.pageTime
  				putTime = (putTime / 1000).toFixed(2)
b1fef010   杨鑫   '最新代码'
421
422
423
  				if (!this.checkRequiredQuestions(this.wenjuan.question)) {
  					return
  				}
b1fef010   杨鑫   '最新代码'
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
  				if (this.model1.name == '' && this.wenjuan.needName == '必填') {
  					this.$refs.uToast.show({
  						title: '请输入姓名',
  					})
  					return;
  				}
  				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;
  				}
  
  				// if(this.wenjuan.needPhone =='不填' && this.wenjuan.fillingConditions == '可重复填写'){
  				//  this.model1.phone  = ''
  				// }
35280aea   “wangming”   1
451
  
b1fef010   杨鑫   '最新代码'
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
  				if (this.model1.sexl != '男' && this.model1.sexl != '女' && this.wenjuan.needGender == '必填') {
  					this.$refs.uToast.show({
  						title: '请选择性别',
  					})
  					return;
  				}
  				if (this.wenjuan.needGender == '不填' && this.panduan == false) {
  
  					this.model1.sexl = '未知'
  
  				}
  				if (this.model1.opinion == '' && this.wenjuan.needOpinion == '必填') {
  					this.$refs.uToast.show({
  						title: '请输入意见',
  					})
  					return;
  				}
  
  
  
  				// 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 == '文本'  ) {
  
  				// 			info.id = this.wentile[i].id
  				// 			info.value = this.wentile[i].value
  				// 			let index =this.wentile[i].value
  				// 			if(this.wentile[i].score){
  
  				// 				for (const key in this.wentile[i].score) {
  				// 				  if (this.wentile[i].score.hasOwnProperty(key)) { // 确保只获取对象自身的属性,而不是继承的属性
  
  				// 					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 = 
  
  				// 			arr.push(info)
  
  
  
  				// 		// 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){
  
  				// 		// 		for (const key in this.wentile[i].score) {
  				// 		// 		  if (this.wentile[i].score.hasOwnProperty(key)) { // 确保只获取对象自身的属性,而不是继承的属性
  
  				// 		// 			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 = 
  
  				// 		// 	arr.push(info)
  
  				// 		// }
  				// 	} 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){
  
  				// 					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 为当前键对应的值
  
  				// 								}
  				// 							}
  
  				// 					  }
  				// 					}
  				// 				}
  				// 			arr.push(info)
  
  				// 		}
  				// 	}
  
  
  				// }
6831f623   wesley88   1
558
  				// console.log(this.wenjuan)
b1fef010   杨鑫   '最新代码'
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
593
594
595
596
597
598
599
600
601
  
  				// 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,
  
  				// }
  				//  obj.answeringScore = []
  
  				// 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'){
  
  				// 			arr[i].value.sort((a, b) => a - b)
  				// 			obj.answerOptions[i+1] = arr[i].value.join(',')
  				// 		}else{
  				// 			obj.answerOptions[i+1]=arr[i].value
  				// 		}
  				// 	}
  
  
  				// }
  				// obj.answerOptions= JSON.stringify(obj.answerOptions)
  				// obj.answeringScore = obj.answeringScore.join(',')
  
  				var obj = {
  					...this.wenjuan
  				}
  
  
  				for (var key in obj.question) {
6831f623   wesley88   1
602
  					// console.log(obj.question[key])
b1fef010   杨鑫   '最新代码'
603
604
605
606
607
608
609
610
611
612
613
  					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(',')
  					}
  				}
6831f623   wesley88   1
614
  				const result = Object.keys(obj.question).reduce((acc, key) => {
b1fef010   杨鑫   '最新代码'
615
  					const question = obj.question[key];
24cb57ca   wesley88   1
616
617
618
619
620
621
  					let chooseAnswers = []
  					if (!Array.isArray(question.choose)) {
  					  chooseAnswers = question.choose.split(",");
  					} else{
  						chooseAnswers = question.choose;
  					}
b1fef010   杨鑫   '最新代码'
622
623
624
625
626
627
628
  					const indexes = chooseAnswers.map((choose) => {
  						const optionIndex = question.options.findIndex(
  							(option) => option.answer === choose
  						);
  						return optionIndex >= 0 ? optionIndex + 1 : null; // 序号从1开始
  					});
  
6831f623   wesley88   1
629
  					acc[key] = indexes.filter((index) => index !== null).join(","); // 只保留有效序号
b1fef010   杨鑫   '最新代码'
630
631
  					return acc;
  				}, {});
b1fef010   杨鑫   '最新代码'
632
  				// 计算总分数
6831f623   wesley88   1
633
  				const totalScore = Object.keys(obj.question).reduce((sum, key) => {
b1fef010   杨鑫   '最新代码'
634
635
  					const question = obj.question[key]
  					if (question.type === "单选" || question.type === "多选") {
24cb57ca   wesley88   1
636
637
638
639
640
641
642
  						// const chooseAnswers = question.choose.split(","); // 多选时拆分答案
  						let chooseAnswers = []
  						if (!Array.isArray(question.choose)) {
  						  chooseAnswers = question.choose.split(",");
  						} else{
  							chooseAnswers = question.choose;
  						}
b1fef010   杨鑫   '最新代码'
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
  						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
  				obj.questionnaireId = this.wenjuanIds
  				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
  
  				// 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,
  
  				// }
00bbdbd2   杨鑫   '最新'
680
  				
b1fef010   杨鑫   '最新代码'
681
682
683
684
685
686
687
688
  				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),
35280aea   “wangming”   1
689
  					socialSecurityCardNumber: this.model1.socialSecurityCardNumber,
b1fef010   杨鑫   '最新代码'
690
691
692
693
694
695
  					createTime: this.currentTime(),
  					opinion: this.model1.opinion,
  					questionnaireScore: totalScore,
  					question: obj.question
  				}
  
00bbdbd2   杨鑫   '最新'
696
  
25ccb2a3   wesley88   1
697
698
  				// console.log(result)
  				// console.log(JSON.stringify(result))
00bbdbd2   杨鑫   '最新'
699
  				// console.log(tijiaoObj)
95f61c80   杨鑫   '最新'
700
  				// console.log(this.wenjuan)
25ccb2a3   wesley88   1
701
  				// return
00bbdbd2   杨鑫   '最新'
702
  
b1fef010   杨鑫   '最新代码'
703
704
  				NET.request(API.wenjuanUp, tijiaoObj, 'post').then(res => {
  					// this.show =true
95f61c80   杨鑫   '最新'
705
  						
b1fef010   杨鑫   '最新代码'
706
707
708
709
710
711
712
713
  					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}`
  						})
ad7d1a78   杨鑫   '最新'
714
715
  						// if(this.wenjuan.rewardForParticipation !=''){
  						//  window.location.replace( `https://jy.scjysm.asia:18086/h5-web/#/activity/pages/lottery/index?detailId=${this.wenjuan.rewardForParticipation}&style=${this.wenjuan.actStyle}`);
95f61c80   杨鑫   '最新'
716
  						
ad7d1a78   杨鑫   '最新'
717
  						// }
b1fef010   杨鑫   '最新代码'
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
  					}
  
  				})
  
  			},
  
  			isChineseOrPunctuation(str) {
  				const regex = /[^\d]/;
  				return regex.test(str);
  			},
  
  
  			// radioChange(index, e, item, idx) {
  			// 	console.log(index, e, item, idx)
  
  			// 	// item.value = idx;
  			// 	// this.$forceUpdate();
  
  			// },
  			radioChange(ind) {
  				// 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;
  				// 	}
  				// }
  				// item.value = idx;
  				// this.$forceUpdate();
  
  			},
  			checkboxChange(index, e, item, idx) {
  
  				// 	const index1 = item.value.indexOf(idx)
  				// 	if (index1 !== -1) {
  				// 		item.value.splice(index1, 1);
  				// 	} else {
  				// 		item.value.push(idx)
  				// 	}
  				// 	this.$forceUpdate();
  			},
  			chooseAnswerOne(options, chooseItem, idx) {
00bbdbd2   杨鑫   '最新'
761
  				
b1fef010   杨鑫   '最新代码'
762
763
764
  				options.forEach(item => {
  					item.disabled = false
  				})
24cb57ca   wesley88   1
765
  				// this.wenjuan.question[idx].choose = chooseItem.answer
b1fef010   杨鑫   '最新代码'
766
  				for (let key in this.wenjuan.question) {
35280aea   “wangming”   1
767
768
  					this.wenjuan.question[key].options.map(res => {
  						if (res.answer == chooseItem.answer) {
00bbdbd2   杨鑫   '最新'
769
  							
35280aea   “wangming”   1
770
  							this.wenjuan.question[key].choose = chooseItem.answer
00bbdbd2   杨鑫   '最新'
771
  							
35280aea   “wangming”   1
772
773
  						}
  					})
b1fef010   杨鑫   '最新代码'
774
  				}
45318813   杨鑫   '最新版本'
775
  				
24cb57ca   wesley88   1
776
777
778
779
780
781
782
783
784
785
  				// console.error({
  				// 	...this.myChoose 
  				// })
  				// console.error({
  				// 	...chooseItem
  				// })
  				// this.myChoose = {
  				// 	...this.myChoose,
  				// 	...chooseItem
  				// }
b1fef010   杨鑫   '最新代码'
786
  				chooseItem.disabled = true
00bbdbd2   杨鑫   '最新'
787
  				
b1fef010   杨鑫   '最新代码'
788
  			},
24cb57ca   wesley88   1
789
  			chooseAnswer(val,idx,item,index) {
00bbdbd2   杨鑫   '最新'
790
  				
24cb57ca   wesley88   1
791
792
793
  				if (item.maxChoose && item.maxChoose > 0) {
  					// 获取当前题目的已选中选项数量
  					const selectedCount = item.options.filter(option => option.disabled).length;
00bbdbd2   杨鑫   '最新'
794
  					
24cb57ca   wesley88   1
795
796
797
798
799
800
801
802
803
804
805
806
807
808
  					// 如果已选中到达 maxChoose,并且当前项未被选中,则不允许选择
  					if (selectedCount > item.maxChoose ) {
  						uni.showToast({
  							title: `最多只能选择 ${item.maxChoose} 个选项`,
  							icon: 'none',
  							duration: 2000
  						});
  						// item.disabled = false
  						this.wenjuan.question[Number(index)].options[idx].disabled = false
  						return;
  					}
  				}
  			},
  			chooseAnswerMore(chooseItem, idx, item) {
00bbdbd2   杨鑫   '最新'
809
  				
24cb57ca   wesley88   1
810
  				// item.maxChoose =2
60bdae5b   杨鑫   '最新'
811
812
813
814
815
816
817
818
819
820
821
822
823
  				if (item.maxChoose && item.maxChoose > 0) {
  					// 获取当前题目的已选中选项数量
  					const selectedCount = item.options.filter(option => option.disabled).length;
  					// 如果已选中到达 maxChoose,并且当前项未被选中,则不允许选择
  					if (selectedCount >= item.maxChoose && !chooseItem.disabled) {
  						uni.showToast({
  							title: `最多只能选择 ${item.maxChoose} 个选项`,
  							icon: 'none',
  							duration: 2000
  						});
  						return;
  					}
  				}
24cb57ca   wesley88   1
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
  				if (chooseItem.disabled) {
  					chooseItem.disabled = false
  					for (let key in this.wenjuan.question) {
  						if (typeof this.wenjuan.question[key].choose === 'string') {
  							this.wenjuan.question[key].choose = this.wenjuan.question[key].choose.split(',');
  						}
  						this.wenjuan.question[key].choose = this.wenjuan.question[key].choose.filter(
  							answer => answer !== chooseItem.answer
  						)
  						this.wenjuan.question[key].choose.join(',')
  
  					}
  				} else {
  					for (let key in this.wenjuan.question) {
  						if (typeof this.wenjuan.question[key].choose === 'string') {
  							this.wenjuan.question[key].choose = this.wenjuan.question[key].choose.split(',');
  						}
  						this.wenjuan.question[key].options.map(res => {
  							if (res.answer == chooseItem.answer) {
  								this.wenjuan.question[key].choose.push(chooseItem.answer)
  							}
  						})
  						this.wenjuan.question[key].choose.join(',')
  					}
  					chooseItem.disabled = true
  				}
b1fef010   杨鑫   '最新代码'
850
851
852
  			}
  
  		}
bde1e631   杨鑫   '1'
853
  	}
b1fef010   杨鑫   '最新代码'
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
  </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;
35280aea   “wangming”   1
883
  		margin: auto;
b1fef010   杨鑫   '最新代码'
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
  		/* 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;
  		cursor: pointer;
  		display: flex;
  		align-items: center;
  		margin-bottom: 10px;
  		color: black;
  		padding: 10px 20px;
  		border-radius: 3px;
  		transition: background-color 0.3s ease;
  		margin-right: 10px;
  		font-size: 15px;
35280aea   “wangming”   1
923
924
925
926
  		font-weight: 500;
  
  		.u-radio__label {
  			color: #000000;
b1fef010   杨鑫   '最新代码'
927
  			font-size: 15px;
35280aea   “wangming”   1
928
  			font-weight: 500;
b1fef010   杨鑫   '最新代码'
929
930
  		}
  	}
35280aea   “wangming”   1
931
  
b1fef010   杨鑫   '最新代码'
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
  	.myOption {
  		margin: 0;
  		cursor: pointer;
  		display: flex;
  		align-items: center;
  		margin-bottom: 10px;
  		padding: 15px 20px;
  		border-radius: 3px;
  		transition: background-color 0.3s ease;
  		margin-right: 10px;
  		font-size: 16px;
  		color: #000;
  		font-family: 'Alibaba PuHuiTi 2.0-55 Regular';
  		letter-spacing: 1px;
  		overflow: hidden;
  		position: relative;
35280aea   “wangming”   1
948
949
  
  		.chooseTag {
b1fef010   杨鑫   '最新代码'
950
951
952
953
954
955
956
957
958
959
  			position: absolute;
  			top: 0;
  			right: 0;
  			width: 20px;
  			height: 20px;
  			background-color: #0fbb59;
  			border-radius: 0 0 0 20px;
  			display: flex;
  			align-items: center;
  			justify-content: center;
35280aea   “wangming”   1
960
961
  
  			.u-icon__icon {
b1fef010   杨鑫   '最新代码'
962
963
964
965
966
  				margin-left: 4px;
  				margin-bottom: 2px;
  			}
  		}
  	}
35280aea   “wangming”   1
967
  
b1fef010   杨鑫   '最新代码'
968
969
  	.green {
  		background-color: #cff4de;
35280aea   “wangming”   1
970
971
972
  
  		.u-radio__label {
  			color: #12ad55;
b1fef010   杨鑫   '最新代码'
973
974
975
976
977
978
  		}
  	}
  
  	.gary {
  
  		background-color: #f5f5f5;
35280aea   “wangming”   1
979
  
b1fef010   杨鑫   '最新代码'
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
  	}
  
  	.optionActive {
  		background-color: #cff4de;
  		color: #12ad55;
  	}
  
  
  	/* 文本域样式,设置宽度、高度、边框及内边距 */
  	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;
  	}
  
  	::v-deep .u-radio__label {
  		white-space: normal !important;
  		/* 允许文本换行 */
  		word-break: break-all !important;
  		/* 当内容过长时,自动换行 */
  	}
  
  	::v-deep .myMultiple {
  		display: flex;
  		width: 100%;
  		flex-wrap: wrap;
  
  	}
  </style>