Blame view

绿纤uni-app/pages/laundry-flow-list/laundry-flow-list.vue 13.9 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
39
40
41
42
43
44
45
  <template>
  	<view class="container">
  		<!-- 查询条件 -->
  		<view class="filter-card">
  			<view class="filter-row">
  				<view class="filter-item">
  					<text class="filter-label">流水类型</text>
  					<picker mode="selector" :range="flowTypeOptions" range-key="label" :value="flowTypeIndex" @change="onFlowTypeChange">
  						<view class="picker-view">
  							{{ flowTypeOptions[flowTypeIndex].label }}
  							<text class="picker-arrow">▼</text>
  						</view>
  					</picker>
  				</view>
  			</view>
  			<view class="filter-buttons">
  				<view class="filter-btn" @click="search">查询</view>
  				<view class="filter-btn reset-btn" @click="reset">重置</view>
  			</view>
  		</view>
  
  		<!-- 操作按钮 -->
  		<view class="action-buttons">
  			<view class="action-btn send-btn" @click="goToSend">
  				<text class="btn-text">创建送出记录</text>
  			</view>
  			<view class="action-btn return-btn" @click="goToReturn">
  				<text class="btn-text">创建送回记录</text>
  			</view>
  		</view>
  
  		<!-- 数据列表 -->
  		<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" @click="viewDetail(item)">
  					<view class="item-header">
  						<view class="flow-type-badge" :class="item.flowType === 0 ? 'send-type' : 'return-type'">
  							<text class="flow-type-icon">{{ item.flowType === 0 ? '📤' : '📥' }}</text>
  							<text class="flow-type-text">{{ item.flowTypeName || '无' }}</text>
  						</view>
0f14a621   李宇   最新
46
  						<view class="create-time">{{ utils.formatTime(item.createTime) }}</view>
1138c09e   李宇   feat(LqLaundryFlo...
47
48
  					</view>
  					<view class="item-details">
2036dd49   李宇   最新
49
  						<view class="detail-item full-width" >
6137a4e4   李宇   ```
50
  							<text class="detail-label" style="width: 40px;">批次号:</text>
1138c09e   李宇   feat(LqLaundryFlo...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  							<text class="detail-value">{{ item.batchNumber || '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">门店:</text>
  							<text class="detail-value">{{ item.storeName || '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">产品类型:</text>
  							<text class="detail-value">{{ item.productType || '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">清洗商:</text>
  							<text class="detail-value">{{ item.laundrySupplierName || '无' }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">数量:</text>
  							<text class="detail-value">{{ item.quantity || 0 }}</text>
  						</view>
2036dd49   李宇   最新
69
70
71
  						<view class="detail-item full-width">
  							<text class="detail-label">{{ item.flowType === 0 ? '送出时间:' : '送回时间:' }}</text>
  							<text class="detail-value">{{ item.flowType === 0 
0f14a621   李宇   最新
72
73
  								? (item.sendTime ? utils.formatTime(item.sendTime) : '无')
  								: (item.returnTime ? utils.formatTime(item.returnTime) : '无')
2036dd49   李宇   最新
74
75
  							}}</text>
  						</view>
6137a4e4   李宇   ```
76
  				<!-- 		<view class="detail-item">
1138c09e   李宇   feat(LqLaundryFlo...
77
78
79
80
81
82
  							<text class="detail-label">清洗单价:</text>
  							<text class="detail-value">¥{{ item.laundryPrice || 0 }}</text>
  						</view>
  						<view class="detail-item">
  							<text class="detail-label">总费用:</text>
  							<text class="detail-value highlight">¥{{ item.totalPrice || 0 }}</text>
6137a4e4   李宇   ```
83
  						</view> -->
1138c09e   李宇   feat(LqLaundryFlo...
84
85
86
87
88
89
90
91
92
  						<view class="detail-item full-width">
  							<text class="detail-label">备注:</text>
  							<text class="detail-value">{{ item.remark || '无' }}</text>
  						</view>
  					</view>
  					<view class="item-footer">
  						<view class="status-badge" :class="item.isEffective === 1 ? 'effective' : 'ineffective'">
  							{{ item.isEffective === 1 ? '有效' : '无效' }}
  						</view>
2036dd49   李宇   最新
93
94
95
96
97
98
  						<view class="footer-actions">
  							<view class="create-user">创建人: {{ item.createUserName || '无' }}</view>
  							<view class="edit-btn" @click.stop="editRecord(item)">
  								<text class="edit-text">编辑</text>
  							</view>
  						</view>
1138c09e   李宇   feat(LqLaundryFlo...
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
  					</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 laundryFlowApi from '@/apis/modules/laundry-flow.js'
  
  	export default {
  		data() {
  			return {
  				loading: false,
  				dataList: [],
  				currentPage: 1,
  				pageSize: 10,
  				totalCount: 0,
  				hasMore: true,
  				loadmoreStatus: 'loadmore',
  				loadText: {
  					loadmore: '点击或上拉加载更多',
  					loading: '正在加载...',
  					nomore: '没有更多了'
  				},
  				// 查询条件
  				query: {
  					flowType: undefined
  				},
  				flowTypeOptions: [
  					{ label: '全部', value: undefined },
  					{ label: '送出', value: 0 },
  					{ label: '送回', value: 1 }
  				],
  				flowTypeIndex: 0,
                  userInfo: uni.getStorageSync('userInfo'),
  				newuserInfo: uni.getStorageSync('newuserInfo'),
  			}
  		},
  
  		onLoad() {
  			this.initializePage()
  		},
  
  		onShow() {
  			// 页面显示时刷新数据(如果从添加页面返回)
  			if (this.dataList.length > 0) {
  				this.refreshData()
  			}
  		},
  
  		methods: {
  			// 初始化页面
  			async initializePage() {
  				try {
  					await this.checkLoginStatus()
  					await this.loadList()
  				} catch (error) {
  					console.error('页面初始化失败:', error)
  					this.showErrorState('页面初始化失败,请刷新重试')
  				}
  			},
  
  			// 检查登录状态
  			async checkLoginStatus() {
  				const token = uni.getStorageSync('token')
  				if (!token) {
  					uni.reLaunch({
  						url: '/pages/login/login'
  					})
  					return
  				}
  			},
  
  			// 加载列表数据
  			async loadList() {
  				if (this.loading) return
  
  				try {
  					this.loading = true
  
  					const params = {
  						currentPage: this.currentPage,
  						pageSize: this.pageSize
  					}
  
  					// 添加查询条件
  					if (this.query.flowType !== undefined) {
  						params.flowType = this.query.flowType
  					}
                      // if (this.userInfo && this.userInfo.userId) {
                      //     params.createUser = this.userInfo.userId
                      // } else {
                      //     params.createUser = '暂无'
                      // }
  					
  					params.StoreId = this.newuserInfo.mdid || '暂无'
  					const res = await laundryFlowApi.getLaundryFlowList(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.loadList()
  			},
  
  			// 加载更多
  			async loadMore() {
  				if (this.loading || !this.hasMore || this.loadmoreStatus === 'nomore') return
  
  				this.loadmoreStatus = 'loading'
  				this.currentPage++
  				await this.loadList()
  			},
  
  			// 查询
  			search() {
  				this.refreshData()
  			},
  
  			// 重置
  			reset() {
  				this.query = {
  					flowType: undefined
  				}
  				this.flowTypeIndex = 0
  				this.refreshData()
  			},
  
  			// 流水类型变化
  			onFlowTypeChange(e) {
  				this.flowTypeIndex = e.detail.value
  				this.query.flowType = this.flowTypeOptions[this.flowTypeIndex].value
  			},
  
  			// 跳转到送出记录页面
  			goToSend() {
  				uni.navigateTo({
  					url: '/pages/laundry-flow-send/laundry-flow-send'
  				})
  			},
  
  			// 跳转到送回记录页面
  			goToReturn() {
  				uni.navigateTo({
  					url: '/pages/laundry-flow-return/laundry-flow-return'
  				})
  			},
  
  			// 查看详情
  			viewDetail(item) {
  				uni.navigateTo({
  					url: `/pages/laundry-flow-detail/laundry-flow-detail?id=${item.id}`
  				})
  			},
  
2036dd49   李宇   最新
303
304
305
306
307
308
309
  			// 编辑记录
  			editRecord(item) {
  				uni.navigateTo({
  					url: `/pages/laundry-flow-edit/laundry-flow-edit?id=${item.id}`
  				})
  			},
  
1138c09e   李宇   feat(LqLaundryFlo...
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
  			// 显示错误状态
  			showErrorState(message) {
  				uni.showToast({
  					title: message,
  					icon: 'none'
  				})
  			},
  
  			// 显示消息提示
  			showMessage(message, type = 'info') {
  				uni.showToast({
  					title: message,
  					icon: type === 'error' ? 'error' : 'none'
  				})
  			}
  		}
  	}
  </script>
  
  <style lang="scss" scoped>
  	.container {
  		min-height: 100vh;
  		background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
  		padding: 40rpx 40rpx;
  		box-sizing: border-box;
  	}
  
  	.filter-card {
  		background: #fff;
  		border-radius: 32rpx;
  		box-shadow: 0 8rpx 32rpx rgba(76, 175, 80, 0.1);
  		padding: 40rpx;
  		margin-bottom: 40rpx;
  	}
  
  	.filter-row {
  		display: flex;
  		flex-wrap: wrap;
  		gap: 24rpx;
  		margin-bottom: 32rpx;
  	}
  
  	.filter-item {
  		flex: 1;
  		min-width: 200rpx;
  	}
  
  	.filter-label {
  		font-size: 28rpx;
  		color: #2e7d32;
  		margin-bottom: 16rpx;
  		display: block;
  	}
  
  	.picker-view {
  		display: flex;
  		align-items: center;
  		justify-content: space-between;
  		background: #f9fff9;
  		border: 3rpx solid #c8e6c9;
  		border-radius: 24rpx;
  		padding: 24rpx 32rpx;
  		font-size: 28rpx;
  		color: #2e7d32;
  	}
  
  	.picker-arrow {
  		font-size: 24rpx;
  		color: #6a9c6a;
  		margin-left: 16rpx;
  	}
  
  	.filter-buttons {
  		display: flex;
  		gap: 24rpx;
  	}
  
  	.filter-btn {
  		flex: 1;
  		text-align: center;
  		background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  		color: #fff;
  		padding: 24rpx;
  		border-radius: 24rpx;
  		font-size: 28rpx;
  		font-weight: 600;
  		box-shadow: 0 4rpx 16rpx rgba(67, 233, 123, 0.3);
  	}
  
  	.filter-btn.reset-btn {
  		background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  		color: #666;
  		box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  	}
  
  	.action-buttons {
  		display: flex;
  		gap: 24rpx;
  		margin-bottom: 40rpx;
  	}
  
  	.action-btn {
  		flex: 1;
  		text-align: center;
  		padding: 28rpx;
  		border-radius: 32rpx;
  		font-size: 28rpx;
  		font-weight: 600;
  		box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.15);
  	}
  
  	.send-btn {
  		background: linear-gradient(135deg, #409EFF 0%, #66b1ff 100%);
  		color: #fff;
  	}
  
  	.return-btn {
  		background: linear-gradient(135deg, #67C23A 0%, #85ce61 100%);
  		color: #fff;
  	}
  
  	.btn-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;
  	}
  
  	.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;
  	}
  
  	.flow-type-badge {
  		display: flex;
  		align-items: center;
  		padding: 8rpx 24rpx;
  		border-radius: 40rpx;
  		font-size: 24rpx;
  		font-weight: 500;
  	}
  
  	.flow-type-badge.send-type {
  		background: #e3f2fd;
  		color: #1976d2;
  		border: 2rpx solid #90caf9;
  	}
  
  	.flow-type-badge.return-type {
  		background: #e8f5e9;
  		color: #388e3c;
  		border: 2rpx solid #a5d6a7;
  	}
  
  	.flow-type-icon {
  		margin-right: 8rpx;
  		font-size: 28rpx;
  	}
  
  	.flow-type-text {
  		font-size: 24rpx;
  	}
  
  	.create-time {
  		font-size: 24rpx;
  		color: #6a9c6a;
  	}
  
  	.item-details {
  		display: grid;
  		grid-template-columns: 1fr 1fr;
  		gap: 16rpx;
  		margin-bottom: 16rpx;
  	}
  
  	.detail-item {
  		display: flex;
  		align-items: center;
  		font-size: 28rpx;
  		color: #555;
  	}
  
  	.detail-item.full-width {
  		grid-column: 1 / -1;
  	}
  
  	.detail-label {
  		color: #6a9c6a;
  		margin-right: 12rpx;
  		font-size: 24rpx;
  	}
  
  	.detail-value {
  		color: #2e7d32;
  		font-weight: 500;
  	}
  
  	.detail-value.highlight {
  		color: #f57c00;
  		font-weight: 600;
  	}
  
  	.item-footer {
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		margin-top: 16rpx;
  	}
  
2036dd49   李宇   最新
567
568
569
570
571
572
  	.footer-actions {
  		display: flex;
  		align-items: center;
  		gap: 16rpx;
  	}
  
1138c09e   李宇   feat(LqLaundryFlo...
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
  	.status-badge {
  		display: inline-block;
  		padding: 8rpx 24rpx;
  		border-radius: 40rpx;
  		font-size: 24rpx;
  		font-weight: 500;
  	}
  
  	.status-badge.effective {
  		background: #e8f5e9;
  		color: #2e7d32;
  		border: 2rpx solid #c8e6c9;
  	}
  
  	.status-badge.ineffective {
  		background: #ffebee;
  		color: #c62828;
  		border: 2rpx solid #ffcdd2;
  	}
  
  	.create-user {
  		font-size: 24rpx;
  		color: #6a9c6a;
  	}
  
2036dd49   李宇   最新
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
  	.edit-btn {
  		display: flex;
  		align-items: center;
  		gap: 8rpx;
  		padding: 8rpx 16rpx;
  		background: linear-gradient(135deg, #409EFF 0%, #66b1ff 100%);
  		border-radius: 20rpx;
  		color: #fff;
  		font-size: 24rpx;
  	}
  
  	.edit-icon {
  		font-size: 24rpx;
  	}
  
  	.edit-text {
  		font-size: 24rpx;
  	}
  
1138c09e   李宇   feat(LqLaundryFlo...
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
  	.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>