usage-form.vue
19.5 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
<template>
<view class="form-container">
<view class="form-card">
<view class="form-content">
<!-- 审批信息 -->
<view class="approval-section">
<view class="section-title">审批信息</view>
<!-- 审批人 -->
<view class="form-group">
<text class="form-label">审批人</text>
<view class="input-wrapper">
<view class="custom-select" @tap="openSelectModal('approver', -1)">
<text class="select-text">{{ approverName || '请选择审批人(主管)' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
</view>
<!-- 申请门店 -->
<view class="form-group">
<text class="form-label">申请门店</text>
<view class="input-wrapper">
<view class="custom-select" @tap="openSelectModal('applicationStore', -1)">
<text class="select-text">{{ applicationStoreName || '请选择申请门店' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
</view>
<!-- 备注 -->
<view class="form-group">
<text class="form-label">备注</text>
<view class="input-wrapper">
<textarea v-model="remarks" placeholder="请输入备注(可选)"
:maxlength="500" class="textarea-input" />
</view>
</view>
</view>
<!-- 分隔线 -->
<view class="divider"></view>
<!-- 使用记录列表 -->
<view v-for="(item, index) in usageItems" :key="index" class="usage-item-card">
<view class="item-header">
<text class="item-title">使用记录 {{ index + 1 }}</text>
<view v-if="usageItems.length > 1" class="delete-btn" @click="removeItem(index)">
<text class="delete-icon">🗑️</text>
</view>
</view>
<!-- 产品 -->
<view class="form-group">
<text class="form-label">产品</text>
<view class="input-wrapper">
<view class="custom-select" @tap="openSelectModal('product', index)">
<text class="select-text">{{ item.productName || '请选择产品' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
</view>
<!-- 门店 -->
<view class="form-group">
<text class="form-label">门店</text>
<view class="input-wrapper">
<view class="custom-select" @tap="openSelectModal('store', index)">
<text class="select-text">{{ item.storeName || '请选择门店' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
</view>
<!-- 使用数量 -->
<view class="form-group">
<text class="form-label">使用数量</text>
<view class="input-wrapper">
<u-input v-model="item.usageQuantity" placeholder="请输入使用数量" type="number"
class="select-input" />
</view>
</view>
<!-- 使用时间 -->
<view class="form-group">
<text class="form-label">使用时间</text>
<view class="input-wrapper">
<view class="custom-select" @tap="openDateTimePicker(index)">
<text class="select-text">{{ item.usageTimeStr || '请选择使用时间' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
</view>
<!-- 分隔线 -->
<view v-if="index < usageItems.length - 1" class="divider"></view>
</view>
<!-- 添加记录按钮 -->
<view class="add-item-btn" @click="addItem">
<text class="add-text">添加一条记录</text>
</view>
<!-- 提交按钮 -->
<view class="btn-group">
<button type="submit" class="btn btn-primary"
:style="{opacity: isSubmitting ? 0.5 : 1}"
@tap="isSubmitting ? null : handleFormSubmit()">
{{ isSubmitting ? '提交中...' : '提交' }}
</button>
</view>
</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" />
<!-- 日期时间选择器 -->
<u-datetime-picker
v-if="showDateTimePicker"
:show="showDateTimePicker"
:value="currentDateTimeValue"
mode="datetime"
@confirm="onDateTimeConfirm"
@close="closeDateTimePicker"
@cancel="closeDateTimePicker"
:show-toolbar="true"
:close-on-click-overlay="true"
confirm-color="#43e97b"
title="选择使用时间"
class="datetime-picker" />
</view>
</template>
<script>
import SearchSelectModal from '@/components/SearchSelectModal.vue'
import usageApi from '@/apis/modules/usage.js'
import memberApi from '@/apis/modules/member.js'
import request from '@/service/request.js'
import config from '@/common/config.js'
export default {
components: {
SearchSelectModal
},
data() {
return {
isSubmitting: false,
usageItems: [
{
productId: '',
productName: '',
storeId: '',
storeName: '',
usageTime: '',
usageTimeStr: '',
usageQuantity: 1,
relatedConsumeId: ''
}
],
// 选择弹窗相关
showModal: false,
modalTitle: '',
currentSelectField: '',
currentSelectIndex: 0,
currentOptions: [],
modalLoading: false,
hasMoreData: true,
currentPage: 1,
pageSize: 20,
searchKeyword: '',
searchParam: '',
// 用户信息
userInfo: null,
newuserInfo: null,
// 审批信息
approverId: '',
approverName: '',
applicationStoreId: '',
applicationStoreName: '',
remarks: '',
// 日期时间选择器相关
showDateTimePicker: false,
currentDateTimeIndex: -1,
currentDateTimeValue: 0
}
},
onLoad() {
this.initializePage()
},
methods: {
// 初始化页面
async initializePage() {
try {
// 获取用户信息
this.userInfo = uni.getStorageSync('userInfo')
this.newuserInfo = uni.getStorageSync('newuserInfo')
if (!this.userInfo || Object.keys(this.userInfo).length === 0) {
uni.showToast({
title: '请先登录',
icon: 'none'
})
setTimeout(() => {
uni.reLaunch({
url: '/pages/login/login'
})
}, 1500)
return
}
// 设置默认值
this.setDefaultValues()
} catch (error) {
console.error('页面初始化失败:', error)
uni.showToast({
title: '页面初始化失败',
icon: 'none'
})
}
},
// 设置默认值
setDefaultValues() {
// 使用时间:默认当前时间
const now = new Date()
this.usageItems.forEach(item => {
if (!item.usageTimeStr) {
item.usageTime = now.getTime()
item.usageTimeStr = this.utils.formatTime(now)
}
})
},
// 打开选择弹窗
async openSelectModal(fieldId, index) {
this.currentSelectField = fieldId
this.currentSelectIndex = index
this.showModal = true
this.modalTitle = '加载中...'
this.modalLoading = true
this.currentPage = 1
this.hasMoreData = true
this.searchKeyword = ''
this.currentOptions = []
try {
if (fieldId === 'product') {
this.searchParam = 'productName'
this.modalTitle = '选择产品'
} else if (fieldId === 'store') {
this.searchParam = 'fullName'
this.modalTitle = '选择门店'
} else if (fieldId === 'approver') {
this.searchParam = 'realName'
this.modalTitle = '选择审批人'
} else if (fieldId === 'applicationStore') {
this.searchParam = 'fullName'
this.modalTitle = '选择申请门店'
}
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.currentSelectIndex = 0
this.currentOptions = []
this.modalLoading = false
this.hasMoreData = true
this.currentPage = 1
this.searchKeyword = ''
},
// 加载选项数据
async loadOptionsData(fieldId, page = 1, searchKeyword = '') {
let options = []
try {
if (fieldId === 'product') {
// 加载产品列表(只获取上架的产品)
const params = {
currentPage: page,
pageSize: this.pageSize,
onShelfStatus: 1
}
if (searchKeyword) {
params.productName = searchKeyword
}
const res = await request.get(`${config.getApiBaseUrl()}/api/Extend/LqProduct/GetList`, params)
if (res.code === 200 && res.data) {
const list = res.data.list || []
options = list.map(item => ({
value: item.id,
label: item.productName || '未知产品',
productName: item.productName,
id: item.id
}))
}
} else if (fieldId === 'store') {
// 加载门店列表
options = await this.getStoreOptions(page, searchKeyword)
} else if (fieldId === 'approver') {
// 加载审批人列表(主管)
options = await this.getApproverOptions(page, searchKeyword)
} else if (fieldId === 'applicationStore') {
// 加载申请门店列表
options = await this.getStoreOptions(page, searchKeyword)
}
if (page === 1) {
this.currentOptions = options
} else {
this.currentOptions = [...this.currentOptions, ...options]
}
this.hasMoreData = options.length === this.pageSize
} catch (error) {
console.error('加载选项数据失败:', error)
this.currentOptions = []
}
},
// 获取门店选项
async getStoreOptions(page = 1, searchKeyword = '') {
try {
const params = {
currentPage: page,
pageSize: this.pageSize
}
if (searchKeyword) {
params.dm = searchKeyword
}
const result = await memberApi.getStoreList(params)
if (result.code === 200 && result.data) {
// 处理分页数据
let storeList = []
if (Array.isArray(result.data)) {
storeList = result.data
} else if (result.data.list) {
storeList = result.data.list
}
const options = storeList.map(item => ({
value: item.id,
label: item.dm || '未知门店',
fullName: item.dm,
id: item.id
}))
return options
}
return []
} catch (error) {
console.error('获取门店列表失败:', error)
return []
}
},
// 获取审批人选项
async getApproverOptions(page = 1, searchKeyword = '') {
try {
const params = {
page: page,
pageSize: this.pageSize,
gw: '主管'
}
if (searchKeyword) {
params.realName = searchKeyword
}
const res = await request.get(`${config.getApiBaseUrl()}/api/Extend/user`, params)
if (res.code === 200 && res.data && res.data.list) {
const options = res.data.list.map(item => ({
value: item.id,
label: `${item.realName || item.name || item.userName}(主管)`,
realName: item.realName || item.name || item.userName,
id: item.id
}))
return options
}
return []
} catch (error) {
console.error('获取审批人列表失败:', error)
return []
}
},
// 处理弹窗确认
handleModalConfirm(item) {
const index = this.currentSelectIndex
if (this.currentSelectField === 'product') {
this.usageItems[index].productId = item.value
this.usageItems[index].productName = item.label
} else if (this.currentSelectField === 'store') {
this.usageItems[index].storeId = item.value
this.usageItems[index].storeName = item.label
} else if (this.currentSelectField === 'approver') {
this.approverId = item.value
this.approverName = item.label
} else if (this.currentSelectField === 'applicationStore') {
this.applicationStoreId = item.value
this.applicationStoreName = item.label
}
this.closeModal()
},
// 处理加载更多
async handleLoadMore() {
if (!this.hasMoreData || this.modalLoading) return
this.currentPage++
await this.loadOptionsData(this.currentSelectField, this.currentPage, this.searchKeyword)
},
// 处理刷新
async handleRefresh() {
this.currentPage = 1
this.hasMoreData = true
await this.loadOptionsData(this.currentSelectField, 1, this.searchKeyword)
},
// 处理搜索
async handleSearch(keyword) {
this.searchKeyword = keyword
this.currentPage = 1
this.hasMoreData = true
await this.loadOptionsData(this.currentSelectField, 1, keyword)
},
// 打开日期时间选择器
openDateTimePicker(index) {
this.currentDateTimeIndex = index
const item = this.usageItems[index]
this.currentDateTimeValue = item.usageTime || new Date().getTime()
this.showDateTimePicker = true
},
// 日期时间确认
onDateTimeConfirm(e) {
const timestamp = e.value
const index = this.currentDateTimeIndex
if (index >= 0 && index < this.usageItems.length) {
const date = new Date(timestamp)
this.usageItems[index].usageTime = timestamp
this.usageItems[index].usageTimeStr = this.utils.formatTime(date)
}
this.closeDateTimePicker()
},
// 关闭日期时间选择器
closeDateTimePicker() {
this.showDateTimePicker = false
this.currentDateTimeIndex = -1
this.currentDateTimeValue = 0
},
// 添加记录
addItem() {
const now = new Date()
this.usageItems.push({
productId: '',
productName: '',
storeId: '',
storeName: '',
usageTime: now.getTime(),
usageTimeStr: this.utils.formatTime(now),
usageQuantity: 1,
relatedConsumeId: ''
})
},
// 删除记录
removeItem(index) {
if (this.usageItems.length <= 1) {
uni.showToast({
title: '至少保留一条记录',
icon: 'none'
})
return
}
this.usageItems.splice(index, 1)
},
// 表单提交
async handleFormSubmit() {
// 验证审批信息
if (!this.approverId) {
uni.showToast({
title: '请选择审批人',
icon: 'none',
duration: 3000
})
return
}
if (!this.applicationStoreId) {
uni.showToast({
title: '请选择申请门店',
icon: 'none',
duration: 3000
})
return
}
// 验证所有表单项
let isValid = true
let errorMessage = ''
this.usageItems.forEach((item, index) => {
if (!item.productId) {
errorMessage = `第${index + 1}条记录:请选择产品`
isValid = false
}
if (!item.storeId) {
errorMessage = `第${index + 1}条记录:请选择门店`
isValid = false
}
if (!item.usageQuantity || item.usageQuantity <= 0) {
errorMessage = `第${index + 1}条记录:请输入使用数量`
isValid = false
}
if (!item.usageTime) {
errorMessage = `第${index + 1}条记录:请选择使用时间`
isValid = false
}
})
if (!isValid) {
uni.showToast({
title: errorMessage,
icon: 'none',
duration: 3000
})
return
}
if (this.isSubmitting) return
try {
this.isSubmitting = true
uni.showLoading({
title: '提交中...'
})
// 转换日期时间为ISO格式
const usageItems = this.usageItems.map(item => {
let usageTime = item.usageTime
// 如果日期时间不是ISO格式,转换为ISO格式
if (usageTime && typeof usageTime === 'number') {
const date = new Date(usageTime)
usageTime = date.toISOString()
}
return {
productId: item.productId,
storeId: item.storeId,
usageTime: usageTime,
usageQuantity: item.usageQuantity,
relatedConsumeId: item.relatedConsumeId || ''
}
})
const res = await usageApi.batchCreateUsage({
approverId: this.approverId,
applicationStoreId: this.applicationStoreId,
remarks: this.remarks || '',
usageItems: usageItems
})
if (res.code === 200) {
uni.showToast({
title: res.msg || res.message || '添加成功',
icon: 'success'
})
setTimeout(() => {
uni.navigateBack()
}, 1500)
} else {
throw new Error(res.message || res.msg || '操作失败')
}
} catch (error) {
console.error('提交失败:', error)
uni.showToast({
title: error.message || error.msg || '提交失败,请重试',
icon: 'none'
})
} finally {
this.isSubmitting = false
uni.hideLoading()
}
}
}
}
</script>
<style lang="scss" scoped>
.form-container {
min-height: 100vh;
background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
padding: 40rpx;
box-sizing: border-box;
}
.form-card {
background: #fff;
border-radius: 32rpx;
box-shadow: 0 8rpx 32rpx rgba(76, 175, 80, 0.1);
overflow: hidden;
}
.form-content {
padding: 40rpx;
}
.approval-section {
margin-bottom: 40rpx;
}
.section-title {
font-size: 32rpx;
font-weight: 600;
color: #2e7d32;
margin-bottom: 32rpx;
padding-bottom: 16rpx;
border-bottom: 2rpx solid #f0f0f0;
}
.textarea-input {
background: #f9fff9;
border: 3rpx solid #c8e6c9;
border-radius: 24rpx;
padding: 24rpx 32rpx;
font-size: 28rpx;
color: #2e7d32;
min-height: 120rpx;
width: 100%;
box-sizing: border-box;
}
.usage-item-card {
margin-bottom: 40rpx;
}
.item-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 32rpx;
padding-bottom: 16rpx;
border-bottom: 2rpx solid #f0f0f0;
}
.item-title {
font-size: 32rpx;
font-weight: 600;
color: #2e7d32;
}
.delete-btn {
padding: 8rpx 16rpx;
border-radius: 16rpx;
background: #ffebee;
display: flex;
align-items: center;
justify-content: center;
}
.delete-icon {
font-size: 28rpx;
}
.form-group {
margin-bottom: 32rpx;
}
.form-label {
display: block;
font-size: 28rpx;
color: #2e7d32;
margin-bottom: 16rpx;
font-weight: 500;
}
.input-wrapper {
width: 100%;
}
.custom-select {
display: flex;
align-items: center;
justify-content: space-between;
background: #f9fff9;
border: 3rpx solid #c8e6c9;
border-radius: 24rpx;
padding: 24rpx 32rpx;
min-height: 80rpx;
box-sizing: border-box;
}
.select-text {
font-size: 28rpx;
color: #2e7d32;
flex: 1;
}
.select-text:empty::before {
content: attr(placeholder);
color: #999;
}
.select-arrow {
font-size: 24rpx;
color: #6a9c6a;
margin-left: 16rpx;
}
.select-input {
background: #f9fff9;
border: 3rpx solid #c8e6c9;
border-radius: 24rpx;
padding: 24rpx 32rpx;
font-size: 28rpx;
color: #2e7d32;
}
.divider {
height: 2rpx;
background: #f0f0f0;
margin: 40rpx 0;
}
.add-item-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 24rpx;
background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
border: 3rpx dashed #43a047;
border-radius: 24rpx;
margin-bottom: 40rpx;
}
.add-icon {
font-size: 32rpx;
margin-right: 12rpx;
}
.add-text {
font-size: 28rpx;
color: #2e7d32;
font-weight: 500;
}
.btn-group {
margin-top: 40rpx;
}
.btn {
width: 100%;
padding:6rpx 28rpx;
border-radius: 32rpx;
font-size: 32rpx;
font-weight: 600;
letter-spacing: 2rpx;
border: none;
}
.btn-primary {
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
color: #fff;
box-shadow: 0 8rpx 24rpx rgba(67, 233, 123, 0.3);
}
.btn-primary:active {
transform: scale(0.98);
box-shadow: 0 4rpx 12rpx rgba(67, 233, 123, 0.4);
}
</style>