appointment.vue
21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
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
179
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
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
451
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
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
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
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
680
681
682
683
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
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
<template>
<view class="appointment-container">
<view class="form-card">
<view class="form-content">
<form @submit="handleFormSubmit">
<view class="form-group">
<text class="form-label">预约体验项目</text>
<view class="custom-select" @click="handleSelectClick('yytyxm')" @tap="handleSelectClick('yytyxm')">
<text class="select-text">{{ formData.yytyxm || '请选择体验项目' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
<view class="form-group">
<text class="form-label">顾客姓名</text>
<view class="custom-select" @click="iskh?handleSelectClick('gkxm'):''" >
<text class="select-text">{{ formData.gkxm || '请选择顾客姓名' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
<view class="form-group">
<text class="form-label">预约健康师</text>
<view class="custom-select" @click="handleSelectClick('yyjks')" @tap="handleSelectClick('yyjks')">
<text class="select-text">{{ formData.yyjks || '请选择健康师' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
<view class="form-group">
<text class="form-label">预约日期</text>
<view class="custom-select" @click="handleSelectClick('yyrq')" @tap="handleSelectClick('yyrq')">
<text class="select-text">{{ formData.yyrq || '请选择预约日期' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
<view class="form-group">
<text class="form-label">预约时间</text>
<view class="custom-select" @click="handleSelectClick('yysj')" @tap="handleSelectClick('yysj')">
<text class="select-text">{{ formData.yysj || '请选择预约时间' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
<view class="btn-group">
<button
type="default"
size="normal"
@click="isSubmit?cancelAppointment():''"
class="btn btn-secondary"
>
取消预约
</button>
<button
type="primary"
size="normal"
@click="isSubmit?submitAppointment():''"
class="btn btn-primary"
>
{{isSubmit?'保存':'提交中...'}}
</button>
</view>
</form>
</view>
</view>
<!-- 选择弹窗 -->
<SearchSelectModal
:show="showModal"
:title="modalTitle"
:options="currentOptions"
:loading="modalLoading"
:has-more="hasMoreData"
:search-param="searchParam"
@confirm="handleModalConfirm"
@close="closeModal"
@load-more="handleLoadMore"
@refresh="handleRefresh"
@search="handleSearch"
/>
</view>
</template>
<script>
import appointmentApi from '@/apis/modules/appointment.js'
import SearchSelectModal from '@/components/SearchSelectModal.vue'
export default {
components: {
SearchSelectModal
},
data() {
return {
isSubmit:true,
iskh:true,
inviteId:null,
// 表单数据
formData: {
yytyxm: '',
gkxm: '',
yyjks: '',
yyrq: '',
yysj: '',
gklx: ''
},
// 弹窗相关
showModal: false,
modalTitle: '',
currentSelectField: '',
currentOptions: [],
modalLoading: false,
hasMoreData: true,
currentPage: 1,
pageSize: 20,
searchKeyword: '',
searchParam: '',
// 用户信息
userInfo: null,
// 选中的值
selectedValues: {
yytyxm: null,
gkxm: null,
gklx: null,
yyjks: null,
yyrq: null,
yysj: null
}
}
},
onLoad(options) {
this.initializePage(options);
},
methods: {
// 处理选择器点击
handleSelectClick(fieldId) {
this.openSelectModal(fieldId);
},
// 初始化页面
async initializePage(options) {
try {
// 获取用户信息
this.userInfo = uni.getStorageSync('userInfo');
if (!this.userInfo || Object.keys(this.userInfo).length === 0) {
uni.showToast({
title: '请先登录',
icon: 'none'
});
setTimeout(() => {
uni.reLaunch({
url: '/pages/login/login'
});
}, 1500);
return;
}
// 设置默认日期
this.setDefaultDate();
// 填充URL参数中的客户信息
this.fillCustomerInfoFromUrl(options);
} catch (error) {
console.error('页面初始化失败:', error);
uni.showToast({
title: '页面初始化失败',
icon: 'none'
});
}
},
// 设置默认日期为今天
setDefaultDate() {
const today = new Date();
const year = today.getFullYear();
const month = (today.getMonth() + 1).toString().padStart(2, '0');
const day = today.getDate().toString().padStart(2, '0');
const dateString = `${year}-${month}-${day}`;
const weekDays = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'];
const weekDay = weekDays[today.getDay()];
const label = `${month}月${day}日 ${weekDay} (今天)`;
this.formData.yyrq = label;
this.selectedValues.yyrq = dateString;
},
// 填充URL参数中的客户信息
async fillCustomerInfoFromUrl(options) {
const name = options.name;
const type = options.type;
const id = options.id;
const phone = options.phone;
const inviteId = options.inviteId;
const yykh = options.yykh;
// 如果有客户信息,填充到客户字段
if (name && id) {
this.formData.gkxm = name;
this.selectedValues.gkxm = id;
// 如果有客户类型信息,也填充
if (type) {
this.formData.gklx = type;
this.selectedValues.gklx = type;
}
}
if(inviteId){
this.iskh = false;
this.inviteId = inviteId;
const response = await this.API.getMemberDetail(yykh);
if(response.code === 200 && response.data){
this.formData.gkxm = response.data.khmc;
this.selectedValues.gkxm = response.data.id;
this.formData.gklx = response.data.khlx;
this.selectedValues.gklx = response.data.khlx;
}
}
},
// 打开选择弹窗
async openSelectModal(fieldId) {
this.currentSelectField = fieldId;
this.showModal = true;
this.modalTitle = '加载中...';
this.modalLoading = true;
this.currentPage = 1;
this.hasMoreData = true;
this.searchKeyword = '';
// 设置搜索参数
switch(fieldId) {
case 'yytyxm':
this.searchParam = 'xmmc';
this.modalTitle = '选择体验项目';
break;
case 'gkxm':
this.searchParam = 'khmc';
this.modalTitle = '选择顾客姓名';
break;
case 'yyjks':
this.searchParam = '';
this.modalTitle = '选择健康师';
break;
case 'yyrq':
this.searchParam = '';
this.modalTitle = '选择预约日期';
break;
case 'yysj':
this.searchParam = '';
this.modalTitle = '选择预约时间';
break;
}
try {
await this.loadOptionsData(fieldId, 1);
} catch (error) {
console.error('获取选项数据失败:', error);
this.modalTitle = '加载失败';
this.currentOptions = [];
uni.showToast({
title: '数据加载失败,请检查网络连接',
icon: 'none'
});
} finally {
this.modalLoading = false;
}
},
// 关闭弹窗
closeModal() {
this.showModal = false;
this.currentSelectField = '';
this.currentOptions = [];
this.modalLoading = false;
},
// 加载选项数据
async loadOptionsData(fieldId, page = 1, searchKeyword = '') {
let options = [];
switch(fieldId) {
case 'yytyxm':
options = await this.getProjectOptions(page, searchKeyword);
break;
case 'gkxm':
options = await this.getCustomerOptions(page, searchKeyword);
break;
case 'yyjks':
options = await this.getHealthWorkerOptions(page, searchKeyword);
break;
case 'yyrq':
options = this.getDateOptions();
this.hasMoreData = false; // 日期选项不需要分页
break;
case 'yysj':
options = this.getTimeSlotOptions();
this.hasMoreData = false; // 时间段选项不需要分页
break;
}
if (page === 1) {
this.currentOptions = options;
} else {
this.currentOptions = [...this.currentOptions, ...options];
}
// 检查是否还有更多数据
if (options.length < this.pageSize) {
this.hasMoreData = false;
}
},
// 处理弹窗确认选择
handleModalConfirm(selectedOption) {
if (this.currentSelectField && selectedOption) {
this.formData[this.currentSelectField] = selectedOption.label;
this.selectedValues[this.currentSelectField] = selectedOption.value;
// 如果是选择客户,同时保存客户类型
if (this.currentSelectField === 'gkxm' && selectedOption.khlx) {
this.formData.gklx = selectedOption.khlx;
this.selectedValues.gklx = selectedOption.khlx;
}
}
},
// 处理加载更多
async handleLoadMore(page) {
if (this.currentSelectField && this.hasMoreData && !this.modalLoading) {
this.modalLoading = true;
try {
await this.loadOptionsData(this.currentSelectField, page, this.searchKeyword);
} catch (error) {
console.error('加载更多数据失败:', error);
uni.showToast({
title: '加载失败',
icon: 'none'
});
} finally {
this.modalLoading = false;
}
}
},
// 处理刷新
async handleRefresh() {
if (this.currentSelectField) {
this.currentPage = 1;
this.hasMoreData = true;
this.searchKeyword = '';
await this.loadOptionsData(this.currentSelectField, 1);
}
},
// 处理搜索
async handleSearch(searchKeyword) {
if (this.currentSelectField) {
this.searchKeyword = searchKeyword;
this.currentPage = 1;
this.hasMoreData = true;
this.modalLoading = true;
try {
await this.loadOptionsData(this.currentSelectField, 1, searchKeyword);
} catch (error) {
console.error('搜索失败:', error);
uni.showToast({
title: '搜索失败',
icon: 'none'
});
} finally {
this.modalLoading = false;
}
}
},
// 获取体验项目选项
async getProjectOptions(page = 1, searchKeyword = '') {
try {
const params = {
currentPage: page,
pageSize: this.pageSize
};
// 如果有搜索关键词,添加搜索参数
if (searchKeyword && this.searchParam === 'xmmc') {
params.xmmc = searchKeyword;
}
const result = await appointmentApi.getProjectList(params);
if (result.code === 200 && result.data) {
return result.data.list.map(item => ({
value: item.id,
label: item.xmmc,
subtitle: item.description || ''
}));
}
return this.getDefaultProjectOptions();
} catch (error) {
console.error('获取项目列表出错:', error);
return this.getDefaultProjectOptions();
}
},
// 获取顾客选项
async getCustomerOptions(page = 1, searchKeyword = '') {
try {
const params = {
currentPage: page,
pageSize: this.pageSize
};
// 如果有搜索关键词,添加搜索参数
if (searchKeyword && this.searchParam === 'khmc') {
params.keyword = searchKeyword;
}
const result = await appointmentApi.getCustomerList(params);
if (result.code === 200 && result.data) {
return result.data.list.map(item => ({
value: item.id,
label: item.khmc,
subtitle:'客户类型:'+(item.khlxName||'无')+';手机号:'+(item.sjh||'无')+';健康师:' +(item.mrsName || '无')+';门店:'+ (item.gsmdName || '无')+';',
khlx: item.khlx,
khmc: item.khmc
}));
}
return this.getDefaultCustomerOptions();
} catch (error) {
console.error('获取顾客列表出错:', error);
return this.getDefaultCustomerOptions();
}
},
// 获取健康师选项
async getHealthWorkerOptions(page = 1, searchKeyword = '') {
try {
const params = {
mdid: this.userInfo.mdid,
gw: '健康师',
currentPage: page,
pageSize: this.pageSize
};
// 健康师暂时不支持搜索,保持原有逻辑
const result = await appointmentApi.getHealthWorkerList(params);
if (result.code === 200 && result.data) {
return result.data.list.map(item => ({
value: item.id,
label: item.realName,
subtitle: item.department || '健康师'
}));
}
return this.getDefaultHealthWorkerOptions();
} catch (error) {
console.error('获取健康师列表出错:', error);
return this.getDefaultHealthWorkerOptions();
}
},
// 生成时间段选项
getTimeSlotOptions() {
const timeSlots = [];
const startHour = 9;
const endHour = 21;
for (let hour = startHour; hour < endHour; hour++) {
for (let minute = 0; minute < 60; minute += 30) {
const timeString = `${hour.toString().padStart(2, '0')}:${minute.toString().padStart(2, '0')}`;
const nextMinute = minute + 30;
const nextHour = nextMinute >= 60 ? hour + 1 : hour;
const nextMinuteStr = nextMinute >= 60 ? '00' : nextMinute.toString().padStart(2, '0');
const nextTimeString = `${nextHour.toString().padStart(2, '0')}:${nextMinuteStr}`;
const timeRange = `${timeString}-${nextTimeString}`;
timeSlots.push({
value: timeRange,
label: timeRange
});
}
}
return timeSlots;
},
// 生成日期选项
getDateOptions() {
const dateOptions = [];
const today = new Date();
for (let i = 0; i < 30; i++) {
const date = new Date(today);
date.setDate(today.getDate() + i);
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
const dateString = `${year}-${month}-${day}`;
const weekDays = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'];
const weekDay = weekDays[date.getDay()];
let label = `${month}月${day}日 ${weekDay}`;
if (i === 0) {
label += ' (今天)';
} else if (i === 1) {
label += ' (明天)';
}
dateOptions.push({
value: dateString,
label: label
});
}
return dateOptions;
},
// 默认项目选项
getDefaultProjectOptions() {
return [
{ value: 'proj001', label: '基础护理', subtitle: '基础皮肤护理服务' },
{ value: 'proj002', label: '深度清洁', subtitle: '深层清洁毛孔服务' },
{ value: 'proj003', label: '美白护理', subtitle: '美白亮肤护理服务' },
{ value: 'proj004', label: '抗衰护理', subtitle: '抗衰老护理服务' },
{ value: 'proj005', label: '补水保湿', subtitle: '深层补水保湿服务' }
];
},
// 默认顾客选项
getDefaultCustomerOptions() {
return [
{ value: 'cust001', label: '张三', subtitle: 'VIP会员', khlx: 'VIP' },
{ value: 'cust002', label: '李四', subtitle: '普通会员', khlx: '普通' },
{ value: 'cust003', label: '王五', subtitle: 'VIP会员', khlx: 'VIP' },
{ value: 'cust004', label: '赵六', subtitle: '普通会员', khlx: '普通' },
{ value: 'cust005', label: '钱七', subtitle: 'VIP会员', khlx: 'VIP' }
];
},
// 默认健康师选项
getDefaultHealthWorkerOptions() {
return [
{ value: 'jks001', label: '张健康师', subtitle: '美容科' },
{ value: 'jks002', label: '李健康师', subtitle: '护理科' },
{ value: 'jks003', label: '王健康师', subtitle: '美容科' },
{ value: 'jks004', label: '赵健康师', subtitle: '护理科' },
{ value: 'jks005', label: '钱健康师', subtitle: '美容科' }
];
},
// 处理表单提交
handleFormSubmit(event) {
event.preventDefault();
this.submitAppointment();
},
// 提交预约
async submitAppointment() {
// 验证表单
if (!this.selectedValues.yytyxm) {
uni.showToast({
title: '请选择体验项目',
icon: 'none'
});
return;
}
if (!this.selectedValues.gkxm) {
uni.showToast({
title: '请选择顾客姓名',
icon: 'none'
});
return;
}
if (!this.selectedValues.yyjks) {
uni.showToast({
title: '请选择健康师',
icon: 'none'
});
return;
}
if (!this.selectedValues.yyrq) {
uni.showToast({
title: '请选择预约日期',
icon: 'none'
});
return;
}
if (!this.selectedValues.yysj) {
uni.showToast({
title: '请选择预约时间',
icon: 'none'
});
return;
}
try {
// 收集表单数据
const selectedDate = this.selectedValues.yyrq;
const selectedTimeRange = this.selectedValues.yysj;
// 解析时间段,获取开始时间和结束时间
const [startTime, endTime] = selectedTimeRange.split('-');
// 组合成完整的开始时间和结束时间
const startDateTime = `${selectedDate} ${startTime}`;
const endDateTime = `${selectedDate} ${endTime}`;
const formData = {
djmd: this.userInfo.mdid || "",
yyr: this.userInfo.userId || "",
yytyxm: this.selectedValues.yytyxm,
gk: this.selectedValues.gkxm,
gklx: this.selectedValues.gklx || '',
gkxm: this.formData.gkxm,
yyjks: this.selectedValues.yyjks,
yysj: startDateTime,
yyjs: endDateTime,
f_Status: "已预约"
};
if(this.inviteId){
formData.inviteId = this.inviteId;
}
this.isSubmit = false;
uni.showLoading({
title: '正在提交...'
});
const result = await appointmentApi.createAppointment(formData);
uni.hideLoading();
if (result.code === 200) {
uni.showToast({
title: '预约添加成功!',
icon: 'success'
});
this.clearForm();
} else {
uni.showToast({
title: `添加失败:${result.message || '未知错误'}`,
icon: 'none'
});
}
this.isSubmit = true;
} catch (error) {
uni.hideLoading();
console.error('提交失败:', error);
uni.showToast({
title: '网络错误,请稍后重试',
icon: 'none'
});
this.isSubmit = true;
}
},
// 清空表单
clearForm() {
this.formData = {
yytyxm: '',
gkxm: '',
gklx: '',
yyjks: '',
yyrq: '',
yysj: ''
};
this.selectedValues = {
yytyxm: null,
gkxm: null,
gklx: null,
yyjks: null,
yyrq: null,
yysj: null
};
// 重新设置默认日期
this.setDefaultDate();
},
// 取消预约
cancelAppointment() {
this.clearForm();
uni.navigateBack({
delta: 1
});
}
}
}
</script>
<style lang="scss" scoped>
.appointment-container {
height: 100vh;
background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
padding: 20rpx;
box-sizing: border-box;
}
.header {
background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%);
border-radius: 36rpx;
padding: 48rpx;
text-align: center;
margin-bottom: 48rpx;
box-shadow: 0 8rpx 48rpx 0 rgba(76, 175, 80, 0.10);
}
.header-title {
color: #fff;
font-size: 36rpx;
font-weight: bold;
letter-spacing: 4rpx;
}
.form-card {
background: #fff;
border-radius: 36rpx;
box-shadow: 0 8rpx 48rpx 0 rgba(76, 175, 80, 0.10);
border: 3rpx solid #c8e6c9;
overflow: hidden;
}
.form-content {
padding: 48rpx;
}
.form-group {
margin-bottom: 40rpx;
}
.form-group:last-child {
margin-bottom: 0;
}
.form-label {
display: block;
margin-bottom: 16rpx;
font-weight: bold;
color: #388e3c;
letter-spacing: 2rpx;
font-size: 28rpx;
}
.custom-select {
position: relative;
background: #f9fff9;
border: 3rpx solid #c8e6c9;
border-radius: 20rpx;
padding: 24rpx;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
z-index: 10;
min-height: 80rpx;
box-sizing: border-box;
}
.select-text {
font-size: 28rpx;
color: #2e7d32;
flex: 1;
}
.select-input-wrapper {
position: relative;
cursor: pointer;
z-index: 10;
background: transparent;
}
.select-input {
background: #f9fff9;
border: 3rpx solid #c8e6c9;
border-radius: 20rpx;
padding: 24rpx;
font-size: 28rpx;
color: #2e7d32;
width: 100%;
}
.select-arrow {
position: absolute;
right: 24rpx;
top: 50%;
transform: translateY(-50%);
color: #6a9c6a;
font-size: 24rpx;
pointer-events: none;
}
.btn-group {
display: flex;
gap: 24rpx;
margin-top: 48rpx;
}
.btn {
flex: 1;
padding: 10rpx 0;
border-radius: 20rpx;
font-size: 28rpx;
font-weight: bold;
letter-spacing: 2rpx;
}
.btn-primary {
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
color: #fff;
box-shadow: 0 4rpx 16rpx rgba(67, 233, 123, 0.3);
}
.btn-secondary {
background: #f5f5f5;
color: #666;
// border: 3rpx solid #ddd;
}
// @media (max-width: 750rpx) {
// .form-content { padding: 40rpx; }
// .btn-group { flex-direction: column; }
// }
</style>