Blame view

绿纤uni-app/pages/usage-list/usage-list.vue 16.8 KB
1138c09e   李宇   feat(LqLaundryFlo...
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
  <template>
  	<view class="container">
  		<!-- 日期范围筛选 -->
  		<view class="date-filter-card">
  			<view class="date-filter-header">
  				<view class="date-range-display" @click="showCalendarFun">
  					<text class="date-text">{{ formatDateRange() }}</text>
  					<text class="calendar-icon">📅</text>
  				</view>
  			</view>
  		</view>
  
  		<!-- 添加按钮 -->
  		<view class="add-btn-wrapper">
  			<view class="add-btn" @click="goToAdd">
  				<text class="add-text">添加使用记录</text>
  			</view>
  		</view>
  
  		<!-- 日历组件 -->
  		<uni-calendar
  			:range="true"
  			ref="calendar"
  			@confirm="handleDateConfirm"
  			:insert="false"
  		></uni-calendar>
  
  		<!-- 数据列表 -->
  		<view class="list-card">
  			<view class="list-header">
  				<text class="header-text">使用记录</text>
  				<text class="total-count">共 {{ totalCount }} 条</text>
  			</view>
  
  			<scroll-view scroll-y class="list-content" @scrolltolower="loadMore">
  				<view v-for="(item, index) in dataList" :key="index" class="list-item">
  					<view class="item-header">
  						<view class="product-name">{{ item.productName || '无' }}</view>
0f14a621   李宇   最新
39
  						<view class="usage-time">{{ utils.formatTimess(item.usageTime) }}</view>
1138c09e   李宇   feat(LqLaundryFlo...
40
41
42
  					</view>
  					<view class="item-details">
  						<view class="detail-item">
0df75a77   李宇   最新
43
44
45
46
47
  							<text class="detail-label">批次号:</text>
  							<text class="detail-value">{{ item.usageBatchId || '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">门店名称:</text>
1138c09e   李宇   feat(LqLaundryFlo...
48
49
50
51
52
53
54
  							<text class="detail-value">{{ item.storeName || '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">使用数量:</text>
  							<text class="detail-value">{{ item.usageQuantity || 0 }}</text>
  						</view>
  						<view class="detail-item">
0df75a77   李宇   最新
55
56
57
58
59
60
61
62
63
  							<text class="detail-label">单价:</text>
  							<text class="detail-value">{{ item.unitPrice ? '¥' + formatMoney(item.unitPrice) : '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">总金额:</text>
  							<text class="detail-value">{{ item.totalAmount ? '¥' + formatMoney(item.totalAmount) : '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">审批状态:</text>
4e2687f7   李宇   最新
64
  							<view class="status-tag" :class="!item.approvalStatus ? 'tag-default' : (item.approvalStatus === '待审批' ? 'tag-warning' : (item.approvalStatus === '审批中' ? 'tag-primary' : (item.approvalStatus === '已通过' ? 'tag-success' : (item.approvalStatus === '未通过' ? 'tag-danger' : (item.approvalStatus === '已退回' ? 'tag-info' : 'tag-default')))))">
0df75a77   李宇   最新
65
66
67
68
69
70
71
72
  								{{ item.approvalStatus || '无' }}
  							</view>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">是否已领取:</text>
  							<view class="status-tag" :class="item.isReceived === 1 ? 'tag-success' : (item.isReceived === 0 ? 'tag-info' : 'tag-default')">
  								{{ item.isReceived === 1 ? '已领取' : (item.isReceived === 0 ? '未领取' : '无') }}
  							</view>
1138c09e   李宇   feat(LqLaundryFlo...
73
74
  						</view>
  						<view class="detail-item">
0df75a77   李宇   最新
75
76
77
78
  							<text class="detail-label">是否有效:</text>
  							<view class="status-tag" :class="item.isEffective === 1 ? 'tag-success' : 'tag-info'">
  								{{ item.isEffective === 1 ? '有效' : '无效' }}
  							</view>
1138c09e   李宇   feat(LqLaundryFlo...
79
80
81
  						</view>
  					</view>
  					<view class="item-footer">
0df75a77   李宇   最新
82
83
  						<view class="status-badge" :class="item.isEffective === 1 ? 'normal' : 'canceled'">
  							{{ item.isEffective === 1 ? '有效' : '无效' }}
1138c09e   李宇   feat(LqLaundryFlo...
84
85
  						</view>
  						<view class="action-buttons">
0df75a77   李宇   最新
86
  							<view v-if="item.isEffective === 1" class="action-btn cancel-btn" @click.stop="handleCancel(item)">
1138c09e   李宇   feat(LqLaundryFlo...
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
  								<text class="btn-text">作废</text>
  							</view>
  						</view>
  					</view>
  				</view>
  
  				<!-- 空状态 -->
  				<view v-if="!loading && dataList.length === 0" class="empty-state">
  					<view class="empty-icon">📋</view>
  					<view>暂无使用记录</view>
  				</view>
  
  				<!-- 加载状态 -->
  				<view v-if="loading && dataList.length === 0" class="loading">正在加载数据...</view>
  
  				<!-- 加载更多 -->
  				<u-loadmore v-if="dataList.length > 0" :status="loadmoreStatus" :load-text="loadText"></u-loadmore>
  			</scroll-view>
  		</view>
  	</view>
  </template>
  
  <script>
  	import usageApi from '@/apis/modules/usage.js'
  	import uniCalendar from '@/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue'
  
  	export default {
  		components: {
  			uniCalendar
  		},
  		data() {
  			// 初始化日期范围(本月1号到今天)
  			const now = new Date()
  			const year = now.getFullYear()
  			const month = now.getMonth()
  			const firstDay = new Date(year, month, 1)
  			const today = new Date(year, now.getMonth(), now.getDate(), 23, 59, 59, 999)
  			
1138c09e   李宇   feat(LqLaundryFlo...
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
  			
  			return {
  				loading: false,
  				dataList: [],
  				currentPage: 1,
  				pageSize: 10,
  				totalCount: 0,
  				hasMore: true,
  				loadmoreStatus: 'loadmore',
  				loadText: {
  					loadmore: '点击或上拉加载更多',
  					loading: '正在加载...',
  					nomore: '没有更多了'
  				},
  				userInfo: uni.getStorageSync('userInfo'),
  				newuserInfo: uni.getStorageSync('newuserInfo'),
  				// 日期范围筛选相关
  				showCalendar: false,
0f14a621   李宇   最新
143
144
  				startDate: this.utils.formatTimeday(firstDay),
  				endDate: this.utils.formatTimeday(now),
1138c09e   李宇   feat(LqLaundryFlo...
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
  				dateRange: [firstDay.getTime(), today.getTime()]
  			}
  		},
  
  		onLoad() {
  			this.initializePage()
  		},
  
  		onShow() {
  			// 页面显示时刷新数据(如果从添加页面返回)
  			if (this.dataList.length > 0) {
  				this.refreshData()
  			}
  		},
  
  		methods: {
  			showCalendarFun() {
  				this.$refs.calendar.open();
  			},
  			
  			// 初始化页面
  			async initializePage() {
  				try {
  					// 检查登录状态
  					await this.checkLoginStatus()
  
  					// 加载第一页数据
  					await this.loadUsageList()
  				} catch (error) {
  					console.error('页面初始化失败:', error)
  					this.showErrorState('页面初始化失败,请刷新重试')
  				}
  			},
  
  			// 检查登录状态
  			async checkLoginStatus() {
  				const token = uni.getStorageSync('token')
  				if (!token) {
  					uni.reLaunch({
  						url: '/pages/login/login'
  					})
  					return
  				}
  			},
  
  			// 加载使用记录列表
  			async loadUsageList() {
  				if (this.loading) return
  
  				try {
  					this.loading = true
  					this.showLoadingState()
  
  					const params = {
  						currentPage: this.currentPage,
  						pageSize: this.pageSize
  					}
  
  					// 添加使用时间范围参数
  					if (this.dateRange && this.dateRange.length === 2) {
49077d84   李宇   最新
205
  						// params.usageTime = `${this.dateRange[0]},${this.dateRange[1]}`
0f14a621   李宇   最新
206
207
  						params.UsageStartTime = this.utils.formatTimess(this.dateRange[0])
  						params.UsageEndTime = this.utils.formatTimess(this.dateRange[1])
1138c09e   李宇   feat(LqLaundryFlo...
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
  					}
                  
                      // if (this.userInfo && this.userInfo.userId) {
                      //     params.createUser = this.userInfo.userId
                      // } else {
                      //     params.createUser = '暂无'
                      // }
  				
  					params.StoreId = this.newuserInfo.mdid || '暂无'
  					const res = await usageApi.getUsageList(params)
  
  					if (res.code === 200) {
  						const data = res.data
  						this.totalCount = data.pagination?.total || 0
  						const list = data.list || []
  
  						if (this.currentPage === 1) {
  							// 第一页,清空列表
  							this.dataList = list
  						} else {
  							// 加载更多,追加到列表
  							this.dataList = [...this.dataList, ...list]
  						}
  
  						// 判断是否还有更多数据
  						this.hasMore = list.length === this.pageSize
  
  						// 更新加载状态
  						if (this.hasMore) {
  							this.loadmoreStatus = 'loadmore'
  						} else {
  							this.loadmoreStatus = 'nomore'
  						}
  					} else {
  						throw new Error(res.message || '获取数据失败')
  					}
  
  				} catch (error) {
  					console.error('加载使用记录列表失败:', error)
  					if (this.currentPage === 1) {
  						this.showErrorState('加载数据失败,请重试')
  					} else {
  						this.showMessage('加载更多数据失败', 'error')
  					}
  				} finally {
  					this.loading = false
  				}
  			},
  
  			// 刷新数据
  			refreshData() {
  				this.currentPage = 1
  				this.hasMore = true
  				this.loadmoreStatus = 'loadmore'
  				this.dataList = []
  				this.loadUsageList()
  			},
  
  			// 加载更多
  			async loadMore() {
  				if (this.loading || !this.hasMore || this.loadmoreStatus === 'nomore') return
  
  				this.loadmoreStatus = 'loading'
  				this.currentPage++
  				await this.loadUsageList()
  			},
  
  			// 跳转到添加页面
  			goToAdd() {
  				uni.navigateTo({
  					url: '/pages/usage-form/usage-form'
  				})
  			},
  
  			// 作废使用记录
  			async handleCancel(item) {
0df75a77   李宇   最新
284
  				if (item.isEffective !== 1) {
1138c09e   李宇   feat(LqLaundryFlo...
285
  					uni.showToast({
0df75a77   李宇   最新
286
  						title: '该记录已作废或无效',
1138c09e   李宇   feat(LqLaundryFlo...
287
288
289
290
291
  						icon: 'none'
  					})
  					return
  				}
  
0df75a77   李宇   最新
292
293
  				// 显示确认对话框(与PC端保持一致)
  				const confirm = await this.showConfirmDialog('提示', '确定要作废这条使用记录吗?')
1138c09e   李宇   feat(LqLaundryFlo...
294
295
296
297
298
299
300
301
302
303
  				
  				if (!confirm) {
  					return
  				}
  
  				try {
  					uni.showLoading({
  						title: '正在作废...'
  					})
  
0df75a77   李宇   最新
304
  					const res = await usageApi.cancelUsage(item.id)
1138c09e   李宇   feat(LqLaundryFlo...
305
306
307
  
  					if (res.code === 200) {
  						uni.showToast({
0df75a77   李宇   最新
308
309
310
  							title: res.msg || '作废成功',
  							icon: 'success',
  							duration: 1500
1138c09e   李宇   feat(LqLaundryFlo...
311
  						})
0df75a77   李宇   最新
312
313
314
315
  						// 刷新列表(与PC端保持一致,在消息提示后刷新)
  						setTimeout(() => {
  							this.refreshData()
  						}, 1500)
1138c09e   李宇   feat(LqLaundryFlo...
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
  					} else {
  						throw new Error(res.message || res.msg || '作废失败')
  					}
  				} catch (error) {
  					console.error('作废使用记录失败:', error)
  					uni.showToast({
  						title: error.message || error.msg || '作废失败,请重试',
  						icon: 'none'
  					})
  				} finally {
  					uni.hideLoading()
  				}
  			},
  
  			// 显示确认对话框
  			showConfirmDialog(title, content) {
  				return new Promise((resolve) => {
  					uni.showModal({
  						title: title,
  						content: content,
  						success: (res) => {
  							resolve(res.confirm)
  						},
  						fail: () => {
  							resolve(false)
  						}
  					})
  				})
  			},
  
0df75a77   李宇   最新
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
  			// 格式化金额
  			formatMoney(amount) {
  				if (!amount && amount !== 0) return '0.00'
  				return Number(amount).toFixed(2)
  			},
  
  			// 获取审批状态样式类
  			getApprovalStatusClass(status) {
  				if (!status) return 'tag-default'
  				const statusMap = {
  					'待审批': 'tag-warning',
  					'审批中': 'tag-primary',
  					'已通过': 'tag-success',
  					'未通过': 'tag-danger',
  					'已退回': 'tag-info'
  				}
  				return statusMap[status] || 'tag-default'
  			},
  
1138c09e   李宇   feat(LqLaundryFlo...
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
  			// 获取状态样式类
  			getStatusClass(isCanceled) {
  				return isCanceled ? 'canceled' : 'normal'
  			},
  
  			// 显示加载状态
  			showLoadingState() {
  				// 加载状态由模板控制
  			},
  
  			// 显示错误状态
  			showErrorState(message) {
  				uni.showToast({
  					title: message,
  					icon: 'none'
  				})
  			},
  
  			// 显示消息提示
  			showMessage(message, type = 'info') {
  				uni.showToast({
  					title: message,
  					icon: type === 'error' ? 'error' : 'none'
  				})
  			},
  
  			// 格式化日期范围显示
  			formatDateRange() {
  				if (!this.startDate || !this.endDate) {
  					return '请选择日期'
  				}
  				
  				// 直接格式化日期字符串,避免时区问题
  				const formatDisplay = (dateStr) => {
  					// dateStr 格式为 YYYY-MM-DD
  					const parts = dateStr.split('-')
  					if (parts.length === 3) {
  						return `${parts[0]}/${parts[1]}/${parts[2]}`
  					}
  					return dateStr
  				}
  				
  				return `${formatDisplay(this.startDate)} - ${formatDisplay(this.endDate)}`
  			},
  
  			// 处理日期确认
  			handleDateConfirm(e) {
  				console.log('日期选择结果:', e)
  				
  				// uni-calendar组件返回的是包含start和end的对象
  				if (e && e.range && e.range.data) {
  					// 更新dateRange用于API调用(时间戳格式)
49077d84   李宇   最新
417
418
  					const startTime = e.range.data[0]+' 00:00:00'
  					const endTime =  e.range.data[e.range.data.length-1]+' 23:59:59'
1138c09e   李宇   feat(LqLaundryFlo...
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
  					this.dateRange = [startTime, endTime]
  					
  					// 更新startDate和endDate用于显示
  					this.startDate = e.range.data[0]
  					this.endDate = e.range.data[e.range.data.length-1]
  					
  					// 日期变化时重新加载数据
  					this.refreshData()
  				}
  			}
  		}
  	}
  </script>
  
  <style lang="scss" scoped>
  	.container {
  		min-height: 100vh;
  		background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
  		padding: 40rpx 40rpx;
  		box-sizing: border-box;
  	}
  
  	.date-filter-card {
  		background: #fff;
  		border-radius: 32rpx;
  		box-shadow: 0 8rpx 32rpx rgba(76, 175, 80, 0.1);
  		padding: 40rpx;
  		margin-bottom: 40rpx;
  	}
  
  	.date-filter-header {
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  	}
  
  	.date-range-display {
  		display: flex;
  		align-items: center;
  		background: #f9fff9;
  		border: 3rpx solid #c8e6c9;
  		border-radius: 24rpx;
  		padding: 24rpx 32rpx;
  		cursor: pointer;
  		transition: all 0.2s ease;
  		justify-content: space-between;
  		width: 100%;
  		box-sizing: border-box;
  	}
  
  	.date-range-display:active {
  		border-color: #43a047;
  		background: #fff;
  		transform: scale(0.98);
  	}
  
  	.date-text {
  		font-size: 28rpx;
  		color: #2e7d32;
  		flex: 1;
  	}
  
  	.calendar-icon {
  		font-size: 32rpx;
  		margin-left: 16rpx;
  	}
  
  	.add-btn-wrapper {
  		margin-bottom: 40rpx;
  		display: flex;
  		justify-content: flex-end;
  	}
  
  	.add-btn {
  		display: flex;
  		align-items: center;
  		background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  		color: #fff;
  		padding: 24rpx 48rpx;
  		border-radius: 32rpx;
  		font-size: 28rpx;
  		font-weight: 600;
  		box-shadow: 0 8rpx 24rpx rgba(67, 233, 123, 0.3);
  		transition: all 0.2s ease;
  	}
  
  	.add-btn:active {
  		transform: scale(0.95);
  		box-shadow: 0 4rpx 12rpx rgba(67, 233, 123, 0.4);
  	}
  
  	.add-text {
  		letter-spacing: 2rpx;
  	}
  
  	.list-card {
  		background: #fff;
  		border-radius: 32rpx;
  		box-shadow: 0 8rpx 32rpx rgba(76, 175, 80, 0.1);
  		overflow: hidden;
  		max-height: 60vh;
  	}
  
  	.list-header {
  		background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%);
  		padding: 32rpx 40rpx;
  		color: #fff;
  		font-weight: 600;
  		letter-spacing: 2rpx;
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  	}
  
  	.header-text {
  		font-size: 32rpx;
  	}
  
  	.total-count {
  		font-size: 28rpx;
  		opacity: 0.9;
  	}
  
  	.list-content {
  		max-height: calc(60vh - 120rpx);
  		overflow-y: auto;
  	}
  
  	.list-item {
  		padding: 32rpx 40rpx;
  		border-bottom: 2rpx solid #f0f0f0;
  		cursor: pointer;
  		transition: all 0.2s ease;
  		position: relative;
  	}
  
  	.list-item:active {
  		background: #f8fff8;
  		transform: translateX(8rpx);
  	}
  
  	.list-item:last-child {
  		border-bottom: none;
  	}
  
  	.item-header {
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		margin-bottom: 16rpx;
  	}
  
  	.product-name {
  		font-weight: 600;
  		color: #2e7d32;
  		font-size: 32rpx;
  	}
  
  	.usage-time {
  		font-size: 24rpx;
  		color: #6a9c6a;
  	}
  
  	.item-details {
0df75a77   李宇   最新
583
584
  		display: flex;
  		flex-direction: column;
1138c09e   李宇   feat(LqLaundryFlo...
585
586
587
588
589
590
591
592
593
  		gap: 16rpx;
  		margin-bottom: 16rpx;
  	}
  
  	.detail-item {
  		display: flex;
  		align-items: center;
  		font-size: 28rpx;
  		color: #555;
0df75a77   李宇   最新
594
  		flex-wrap: wrap;
1138c09e   李宇   feat(LqLaundryFlo...
595
596
597
598
599
600
601
602
603
604
605
  	}
  
  	.detail-label {
  		color: #6a9c6a;
  		margin-right: 12rpx;
  		font-size: 24rpx;
  	}
  
  	.detail-value {
  		color: #2e7d32;
  		font-weight: 500;
0df75a77   李宇   最新
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
  		flex: 1;
  	}
  
  	.status-tag {
  		display: inline-block;
  		padding: 4rpx 16rpx;
  		border-radius: 20rpx;
  		font-size: 22rpx;
  		font-weight: 500;
  		text-align: center;
  	}
  
  	.tag-default {
  		background: #f5f5f5;
  		color: #909399;
  	}
  
  	.tag-primary {
  		background: #e3f2fd;
  		color: #409eff;
  	}
  
  	.tag-success {
  		background: #e8f5e9;
  		color: #67c23a;
  	}
  
  	.tag-warning {
  		background: #fff3e0;
  		color: #e6a23c;
  	}
  
  	.tag-danger {
  		background: #ffebee;
  		color: #f56c6c;
  	}
  
  	.tag-info {
  		background: #f4f4f5;
  		color: #909399;
1138c09e   李宇   feat(LqLaundryFlo...
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
  	}
  
  	.item-footer {
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		margin-top: 16rpx;
  	}
  
  	.status-badge {
  		display: inline-block;
  		padding: 8rpx 24rpx;
  		border-radius: 40rpx;
  		font-size: 24rpx;
  		font-weight: 500;
  		text-align: center;
  	}
  
  	.status-badge.normal {
  		background: #e8f5e9;
  		color: #2e7d32;
  		border: 2rpx solid #c8e6c9;
  	}
  
  	.status-badge.canceled {
  		background: #ffebee;
  		color: #c62828;
  		border: 2rpx solid #ffcdd2;
  	}
  
  	.action-buttons {
  		display: flex;
  		align-items: center;
  		gap: 16rpx;
  	}
  
  	.action-btn {
  		display: flex;
  		align-items: center;
  		padding: 12rpx 24rpx;
  		border-radius: 24rpx;
  		font-size: 24rpx;
  		font-weight: 500;
  		transition: all 0.2s ease;
  		box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
  	}
  
  	.action-btn:active {
  		transform: scale(0.95);
  		box-shadow: 0 1rpx 4rpx rgba(0, 0, 0, 0.15);
  	}
  
  	.cancel-btn {
  		background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
  		color: #fff;
  	}
  
  	.cancel-btn:active {
  		background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  	}
  
  	.btn-text {
  		letter-spacing: 1rpx;
  	}
  
  	.loading {
  		text-align: center;
  		padding: 80rpx 40rpx;
  		color: #6a9c6a;
  		font-size: 28rpx;
  	}
  
  	.empty-state {
  		text-align: center;
  		padding: 120rpx 40rpx;
  		color: #6a9c6a;
  	}
  
  	.empty-icon {
  		font-size: 120rpx;
  		margin-bottom: 32rpx;
  		opacity: 0.5;
  	}
  </style>