index.vue
44.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
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
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
883
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
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
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
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
<template>
<div class="rebate-page">
<!-- 搜索区域 -->
<div class="search-section">
<div class="search-form">
<div class="search-row">
<div class="search-item">
<span class="search-label">经销商名称</span>
<el-input
v-model="searchForm.dealerName"
placeholder="请输入经销商名称"
clearable
size="small"
style="width: 160px"
/>
</div>
<div class="search-item">
<span class="search-label">返利编号</span>
<el-input
v-model="searchForm.rebateNo"
placeholder="请输入返利编号"
clearable
size="small"
style="width: 160px"
/>
</div>
<div class="search-item">
<span class="search-label">日期</span>
<el-date-picker
v-model="dateRange"
type="daterange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
size="small"
format="YYYY-MM-DD"
value-format="YYYY-MM-DD"
@change="handleDateRangeChange"
style="width: 240px"
/>
</div>
<div class="search-actions">
<el-button type="primary" size="small" @click="handleSearch" :loading="loading">
查询
</el-button>
<el-button size="small" @click="handleReset">
重置
</el-button>
</div>
</div>
</div>
</div>
<!-- 图表区域 -->
<div class="charts-section">
<div class="charts-container">
<!-- 左侧趋势图 -->
<div class="chart-card trend-chart">
<div class="chart-header">
<h3 class="chart-title">返利统计</h3>
<div class="chart-legend">
<div class="legend-item">
<span class="legend-dot" style="background-color: #4CAF50;"></span>
<span>返利金额</span>
</div>
<div class="legend-item">
<span class="legend-dot" style="background-color: #2196F3;"></span>
<span>已审核返利</span>
</div>
</div>
</div>
<div class="chart-content">
<div ref="trendChart" class="chart"></div>
</div>
</div>
<!-- 右侧饼图 -->
<div class="chart-card pie-chart">
<div class="chart-header">
<h3 class="chart-title">计算统计</h3>
<div class="chart-legend">
<div class="legend-item">
<span class="legend-dot" style="background-color: #2196F3;"></span>
<span>已计算</span>
</div>
<div class="legend-item">
<span class="legend-dot" style="background-color: #4CAF50;"></span>
<span>未计算</span>
</div>
</div>
</div>
<div class="chart-content">
<div ref="pieChart" class="chart"></div>
</div>
</div>
</div>
</div>
<!-- 数据表格 -->
<div class="table-section">
<div class="table-header">
<div class="table-title">
返利记录
</div>
<div class="table-info">
数据状态: {{ loading ? '加载中...' : `共${rebateList.length}条记录` }}
</div>
</div>
<el-table
v-loading="loading"
:data="rebateList"
style="width: 100%"
:header-cell-style="{ background: '#fafafa', color: '#333', fontWeight: 'normal' }"
:empty-text="rebateList.length === 0 ? '暂无数据' : ''"
size="small"
>
<el-table-column prop="rebateNo" label="返利编号" width="140" align="center" />
<el-table-column prop="orderNo" label="订单编号" width="140" align="center" />
<el-table-column prop="dealerCode" label="经销商代码" width="120" align="center" />
<el-table-column prop="dealerName" label="经销商名称" min-width="150" />
<el-table-column prop="productCode" label="产品编码" width="120" align="center" />
<el-table-column prop="rebateAmount" label="返利金额" width="120" align="right">
<template #default="{ row }">
<span class="amount-text">{{ formatAmount(row.rebateAmount) }}</span>
</template>
</el-table-column>
<el-table-column prop="rebateDate" label="返利日期" width="120" align="center" />
<el-table-column prop="operateTypeText" label="操作类型" width="100" align="center">
<template #default="{ row }">
<el-tag :type="getOperateTypeTagType(row.operateType)" size="small">
{{ row.operateTypeText || getOperateTypeText(row.operateType) }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="calcFlagText" label="计算状态" width="100" align="center">
<template #default="{ row }">
<el-tag :type="getCalcFlagTagType(row.calcFlag)" size="small">
{{ row.calcFlagText || getCalcFlagText(row.calcFlag) }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="updateTime" label="更新时间" width="150" align="center">
<template #default="{ row }">
{{ formatDate(row.updateTime) }}
</template>
</el-table-column>
<el-table-column label="操作" width="80" align="center">
<template #default="{ row }">
<el-button type="primary" size="small" link @click="handleViewDetail(row)">
详情
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<div class="pagination-wrapper">
<div class="pagination-info">
共 {{ pagination.total }} 条,{{ pagination.pageSize }}/页
</div>
<el-pagination
v-model:current-page="pagination.pageNum"
v-model:page-size="pagination.pageSize"
:page-sizes="[10, 20, 50, 100]"
:total="pagination.total"
layout="sizes, prev, pager, next"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
small
/>
<div class="pagination-jump">
前往
<el-input
v-model="jumpPage"
size="small"
style="width: 50px; margin: 0 8px;"
@keyup.enter="handleJumpPage"
/>
页
</div>
</div>
</div>
<!-- 返利详情对话框 -->
<el-dialog
v-model="detailDialogVisible"
title="返利详情"
width="800px"
:close-on-click-modal="false"
>
<div v-if="rebateDetail" class="rebate-detail">
<el-descriptions :column="2" border>
<el-descriptions-item label="返利编号">
{{ rebateDetail.rebateNo }}
</el-descriptions-item>
<el-descriptions-item label="订单编号">
{{ rebateDetail.orderNo }}
</el-descriptions-item>
<el-descriptions-item label="经销商代码">
{{ rebateDetail.dealerCode }}
</el-descriptions-item>
<el-descriptions-item label="经销商名称">
{{ rebateDetail.dealerName }}
</el-descriptions-item>
<el-descriptions-item label="产品编码">
{{ rebateDetail.productCode }}
</el-descriptions-item>
<el-descriptions-item label="返利金额">
<span class="amount-text">¥{{ formatAmount(rebateDetail.rebateAmount) }}</span>
</el-descriptions-item>
<el-descriptions-item label="返利日期">
{{ rebateDetail.rebateDate }}
</el-descriptions-item>
<el-descriptions-item label="操作类型">
<el-tag :type="getOperateTypeTagType(rebateDetail.operateType)">
{{ rebateDetail.operateTypeText || getOperateTypeText(rebateDetail.operateType) }}
</el-tag>
</el-descriptions-item>
<el-descriptions-item label="计算状态">
<el-tag :type="getCalcFlagTagType(rebateDetail.calcFlag)">
{{ rebateDetail.calcFlagText || getCalcFlagText(rebateDetail.calcFlag) }}
</el-tag>
</el-descriptions-item>
<el-descriptions-item label="创建时间">
{{ rebateDetail.createTime ? formatDate(rebateDetail.createTime) : '-' }}
</el-descriptions-item>
<el-descriptions-item label="更新时间">
{{ rebateDetail.updateTime ? formatDate(rebateDetail.updateTime) : '-' }}
</el-descriptions-item>
<el-descriptions-item label="上传时间">
{{ rebateDetail.uploadTime ? formatDate(rebateDetail.uploadTime) : '-' }}
</el-descriptions-item>
</el-descriptions>
</div>
<template #footer>
<el-button @click="detailDialogVisible = false">关闭</el-button>
</template>
</el-dialog>
<!-- 新增/编辑返利对话框 -->
<el-dialog
v-model="formDialogVisible"
:title="isEdit ? '编辑返利' : '新增返利'"
width="600px"
:close-on-click-modal="false"
>
<el-form
ref="rebateFormRef"
:model="rebateForm"
:rules="rebateFormRules"
label-width="100px"
>
<el-form-item label="经销商" prop="dealerName">
<el-input v-model="rebateForm.dealerName" placeholder="请输入经销商名称" />
</el-form-item>
<el-form-item label="产品名称" prop="productName">
<el-input v-model="rebateForm.productName" placeholder="请输入产品名称" />
</el-form-item>
<el-form-item label="产品型号">
<el-input v-model="rebateForm.productModel" placeholder="请输入产品型号" />
</el-form-item>
<el-form-item label="返利类型" prop="rebateType">
<el-select v-model="rebateForm.rebateType" placeholder="请选择返利类型" style="width: 100%">
<el-option label="销量返利" :value="1" />
<el-option label="业绩返利" :value="2" />
<el-option label="年度返利" :value="3" />
<el-option label="特殊返利" :value="4" />
</el-select>
</el-form-item>
<el-form-item label="返利政策" prop="policyName">
<el-input v-model="rebateForm.policyName" placeholder="请输入返利政策名称" />
</el-form-item>
<el-form-item label="计算基数" prop="calculationBase">
<el-input-number
v-model="rebateForm.calculationBase"
:precision="2"
:min="0"
style="width: 100%"
placeholder="请输入计算基数"
/>
</el-form-item>
<el-form-item label="返利比例(%)" prop="rebateRate">
<el-input-number
v-model="rebateForm.rebateRate"
:precision="2"
:min="0"
:max="100"
style="width: 100%"
placeholder="请输入返利比例"
/>
</el-form-item>
<el-form-item label="返利金额" prop="rebateAmount">
<el-input-number
v-model="rebateForm.rebateAmount"
:precision="2"
:min="0"
style="width: 100%"
placeholder="请输入返利金额"
/>
</el-form-item>
<el-form-item label="返利周期" prop="periodRange">
<el-date-picker
v-model="periodRange"
type="datetimerange"
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
format="YYYY-MM-DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
style="width: 100%"
/>
</el-form-item>
<el-form-item label="申请备注">
<el-input
v-model="rebateForm.applyRemark"
type="textarea"
:rows="3"
placeholder="请输入申请备注"
/>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="formDialogVisible = false">取消</el-button>
<el-button type="primary" @click="handleSubmit" :loading="submitLoading">
确定
</el-button>
</template>
</el-dialog>
<!-- 审核对话框 -->
<el-dialog
v-model="auditDialogVisible"
title="审核返利"
width="500px"
:close-on-click-modal="false"
>
<el-form
ref="auditFormRef"
:model="auditForm"
:rules="auditFormRules"
label-width="100px"
>
<el-form-item label="审核结果" prop="status">
<el-radio-group v-model="auditForm.status">
<el-radio :label="1">审核通过</el-radio>
<el-radio :label="3">审核拒绝</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="审核备注">
<el-input
v-model="auditForm.auditRemark"
type="textarea"
:rows="4"
placeholder="请输入审核备注"
/>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="auditDialogVisible = false">取消</el-button>
<el-button type="primary" @click="handleSubmitAudit" :loading="auditLoading">
确定
</el-button>
</template>
</el-dialog>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, onMounted } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { Search, Refresh, Plus, Check, Close, Money, Delete, Download } from '@element-plus/icons-vue'
import * as echarts from 'echarts'
import rebateApi, { type Rebate, type RebateSearchParams } from '@/api/rebate'
import { formatDate } from '@/utils/index'
// 响应式数据
const loading = ref(false)
const submitLoading = ref(false)
const auditLoading = ref(false)
const rebateList = ref<Rebate[]>([])
const selectedRebates = ref<Rebate[]>([])
const rebateDetail = ref<Rebate | null>(null)
// 图表引用
const trendChart = ref<HTMLElement>()
const pieChart = ref<HTMLElement>()
// 日期范围
const dateRange = ref<[string, string] | null>(null)
// 对话框显示状态
const detailDialogVisible = ref(false)
const formDialogVisible = ref(false)
const auditDialogVisible = ref(false)
const isEdit = ref(false)
// 分页数据
const pagination = reactive({
pageNum: 1,
pageSize: 10,
total: 0
})
// 页面跳转
const jumpPage = ref<number | string>('')
// 搜索表单
const searchForm = reactive<RebateSearchParams>({
pageNum: 1,
pageSize: 10,
rebateNo: '',
dealerCode: '',
dealerName: '',
productCode: '',
operateType: undefined,
calcFlag: undefined,
rebateStartDate: '',
rebateEndDate: ''
})
// 日期范围
const applyDateRange = ref<[string, string] | null>(null)
const periodRange = ref<[string, string] | null>(null)
// 返利表单
const rebateFormRef = ref()
const rebateForm = reactive({
rebateId: undefined,
dealerId: 1, // 这里应该从经销商选择器获取
dealerName: '',
productId: 1, // 这里应该从产品选择器获取
productName: '',
productModel: '',
rebateType: undefined,
policyName: '',
calculationBase: undefined,
rebateRate: undefined,
rebateAmount: undefined,
periodStart: '',
periodEnd: '',
applyRemark: ''
})
// 审核表单
const auditFormRef = ref()
const auditForm = reactive({
rebateId: undefined as number | undefined,
status: undefined as number | undefined,
auditRemark: ''
})
// 表单验证规则
const rebateFormRules = {
dealerName: [
{ required: true, message: '请输入经销商名称', trigger: 'blur' }
],
productName: [
{ required: true, message: '请输入产品名称', trigger: 'blur' }
],
rebateType: [
{ required: true, message: '请选择返利类型', trigger: 'change' }
],
policyName: [
{ required: true, message: '请输入返利政策名称', trigger: 'blur' }
],
calculationBase: [
{ required: true, message: '请输入计算基数', trigger: 'blur' }
],
rebateRate: [
{ required: true, message: '请输入返利比例', trigger: 'blur' }
],
rebateAmount: [
{ required: true, message: '请输入返利金额', trigger: 'blur' }
]
}
const auditFormRules = {
status: [
{ required: true, message: '请选择审核结果', trigger: 'change' }
]
}
// 获取返利类型标签类型
const getRebateTypeTagType = (rebateType: number) => {
switch (rebateType) {
case 1:
return 'primary'
case 2:
return 'success'
case 3:
return 'warning'
case 4:
return 'danger'
default:
return 'info'
}
}
// 获取状态标签类型
const getStatusTagType = (status: number) => {
switch (status) {
case 0:
return 'warning'
case 1:
return 'success'
case 2:
return 'primary'
case 3:
return 'danger'
default:
return 'info'
}
}
// 格式化金额
const formatAmount = (amount: number) => {
return amount ? amount.toLocaleString('zh-CN', { minimumFractionDigits: 2 }) : '0.00'
}
// 获取操作类型文本
const getOperateTypeText = (operateType: number) => {
switch (operateType) {
case 1: return '新增'
case 2: return '修改'
case 3: return '删除'
default: return '未知'
}
}
// 获取操作类型标签类型
const getOperateTypeTagType = (operateType: number) => {
switch (operateType) {
case 1: return 'success'
case 2: return 'warning'
case 3: return 'danger'
default: return 'info'
}
}
// 获取计算状态文本
const getCalcFlagText = (calcFlag: number | undefined) => {
switch (calcFlag) {
case 0: return '未计算'
case 1: return '已计算'
default: return '未知'
}
}
// 获取计算状态标签类型
const getCalcFlagTagType = (calcFlag: number | undefined) => {
switch (calcFlag) {
case 0: return 'warning'
case 1: return 'success'
default: return 'info'
}
}
// 获取返利列表
const getRebateList = async () => {
try {
loading.value = true
const params = {
...searchForm,
pageNum: pagination.pageNum,
pageSize: pagination.pageSize
}
console.log('请求参数:', params)
const response = await rebateApi.getRebatePage(params)
console.log('完整API响应:', response)
console.log('响应数据结构:', response.data)
console.log('响应对象类型:', typeof response)
console.log('响应对象键:', Object.keys(response || {}))
// 检查不同层级的数据
if (response) {
console.log('response存在')
if (response.data !== undefined) {
console.log('response.data存在:', response.data)
} else {
console.log('response.data不存在,检查其他字段')
console.log('response直接内容:', response)
}
}
// 根据后端实际返回的数据结构进行解析
let dataList = []
let total = 0
if (response) {
let responseData = null
// 首先尝试获取数据,response.data可能不存在
if (response.data !== undefined) {
responseData = response.data
console.log('使用response.data:', responseData)
} else {
// 如果response.data不存在,直接使用response
responseData = response
console.log('直接使用response:', responseData)
}
if (responseData) {
// 情况1: 直接返回数组
if (Array.isArray(responseData)) {
dataList = responseData
total = responseData.length
console.log('情况1: 直接数组,长度:', dataList.length)
}
// 情况2: 包含records字段(MyBatis Plus分页格式)
else if (responseData.records && Array.isArray(responseData.records)) {
dataList = responseData.records
total = responseData.total || responseData.records.length
console.log('情况2: records格式,长度:', dataList.length, '总数:', total)
}
// 情况3: 包含data字段的嵌套结构
else if (responseData.data) {
if (Array.isArray(responseData.data)) {
dataList = responseData.data
total = responseData.total || responseData.data.length
console.log('情况3a: data数组格式,长度:', dataList.length)
} else if (responseData.data.records) {
dataList = responseData.data.records
total = responseData.data.total || 0
console.log('情况3b: data.records格式,长度:', dataList.length)
}
}
// 情况4: 其他对象格式,寻找数组字段
else if (typeof responseData === 'object' && responseData !== null) {
const keys = Object.keys(responseData)
console.log('对象的所有键:', keys)
// 寻找可能的数组字段
const arrayFields = keys.filter(key => Array.isArray(responseData[key]))
console.log('数组字段:', arrayFields)
if (arrayFields.length > 0) {
const arrayField = arrayFields[0]
dataList = responseData[arrayField]
total = responseData.total || responseData.count || dataList.length
console.log('情况4: 找到数组字段', arrayField, '长度:', dataList.length)
}
}
}
}
rebateList.value = dataList
pagination.total = total
console.log('最终解析的列表数据:', rebateList.value)
console.log('数据条数:', rebateList.value.length)
console.log('分页总数:', pagination.total)
if (rebateList.value.length === 0) {
console.warn('解析后的数据为空,请检查数据结构')
console.warn('如果需要测试,可以取消注释下面的模拟数据')
// 临时模拟数据用于测试(可以取消注释来测试表格显示)
/*
rebateList.value = [
{
rebateId: 1,
rebateNo: 'RB2025-001',
orderNo: 'ORD-2025-001',
dealerCode: 'DEALER001',
dealerName: '测试经销商1',
productCode: 'PROD001',
rebateAmount: 1000.00,
rebateDate: '2025-01-15',
operateType: 1,
calcFlag: 0,
createTime: '2025-01-15 10:00:00',
updateTime: '2025-01-15 10:00:00'
}
]
pagination.total = 1
*/
}
} catch (error) {
console.error('获取返利列表失败:', error)
ElMessage.error('获取返利列表失败')
rebateList.value = []
pagination.total = 0
} finally {
loading.value = false
}
}
// 处理日期范围变化
const handleDateRangeChange = (dates: [string, string] | null) => {
if (dates) {
searchForm.rebateStartDate = dates[0]
searchForm.rebateEndDate = dates[1]
} else {
searchForm.rebateStartDate = ''
searchForm.rebateEndDate = ''
}
}
// 搜索
const handleSearch = () => {
pagination.pageNum = 1
getRebateList()
}
// 重置
const handleReset = () => {
Object.assign(searchForm, {
pageNum: 1,
pageSize: 10,
rebateNo: undefined,
dealerName: undefined,
productName: undefined,
rebateType: undefined,
status: undefined,
applyStartTime: undefined,
applyEndTime: undefined
})
applyDateRange.value = null
pagination.pageNum = 1
getRebateList()
}
// 刷新
const handleRefresh = () => {
getRebateList()
}
// 分页变化
const handleSizeChange = (size: number) => {
pagination.pageSize = size
pagination.pageNum = 1
getRebateList()
}
const handleCurrentChange = (page: number) => {
pagination.pageNum = page
getRebateList()
}
// 页面跳转
const handleJumpPage = () => {
const page = Number(jumpPage.value)
if (page && page > 0 && page <= Math.ceil(pagination.total / pagination.pageSize)) {
pagination.pageNum = page
getRebateList()
jumpPage.value = ''
}
}
// 选择变化
const handleSelectionChange = (selection: Rebate[]) => {
selectedRebates.value = selection
}
// 查看详情
const handleViewDetail = async (row: Rebate) => {
try {
if (!row.rebateId) return
console.log('查看详情,返利ID:', row.rebateId)
const response = await rebateApi.getRebateById(row.rebateId)
console.log('详情接口响应:', response)
// 根据request.ts拦截器的处理,response.data已经是实际数据
if (response && response.data) {
rebateDetail.value = response.data
detailDialogVisible.value = true
console.log('详情数据:', response.data)
} else {
ElMessage.error('获取返利详情失败')
}
} catch (error) {
console.error('获取返利详情失败:', error)
ElMessage.error('获取返利详情失败')
}
}
// 新增
const handleAdd = () => {
isEdit.value = false
resetRebateForm()
formDialogVisible.value = true
}
// 编辑
const handleEdit = (row: Rebate) => {
ElMessage.info(`编辑返利记录:${row.rebateNo}`)
// 这里可以打开编辑对话框或跳转到编辑页面
}
// 标记已计算
const handleMarkCalculated = async (row: Rebate) => {
try {
await ElMessageBox.confirm('确认标记该返利为已计算吗?', '确认操作', {
type: 'warning'
})
await rebateApi.markRebateCalculated(row.rebateId!)
ElMessage.success('标记成功')
getRebateList()
} catch (error) {
if (error !== 'cancel') {
console.error('标记失败:', error)
ElMessage.error('标记失败')
}
}
}
// 重置表单
const resetRebateForm = () => {
Object.assign(rebateForm, {
rebateId: undefined,
dealerId: 1,
dealerName: '',
productId: 1,
productName: '',
productModel: '',
rebateType: undefined,
policyName: '',
calculationBase: undefined,
rebateRate: undefined,
rebateAmount: undefined,
periodStart: '',
periodEnd: '',
applyRemark: ''
})
periodRange.value = null
rebateFormRef.value?.clearValidate()
}
// 提交表单
const handleSubmit = async () => {
try {
await rebateFormRef.value?.validate()
if (periodRange.value) {
rebateForm.periodStart = periodRange.value[0]
rebateForm.periodEnd = periodRange.value[1]
}
submitLoading.value = true
if (isEdit.value) {
await rebateApi.updateRebate(rebateForm as any)
ElMessage.success('更新返利成功')
} else {
await rebateApi.addRebate(rebateForm as any)
ElMessage.success('新增返利成功')
}
formDialogVisible.value = false
getRebateList()
} catch (error) {
console.error('提交表单失败:', error)
ElMessage.error('操作失败')
} finally {
submitLoading.value = false
}
}
// 删除
const handleDelete = async (row: Rebate) => {
try {
await ElMessageBox.confirm('确认删除该返利记录吗?', '确认删除', {
type: 'warning'
})
const { data } = await rebateApi.deleteRebate(row.rebateId!)
if (data.code === 200) {
ElMessage.success('删除成功')
getRebateList()
} else {
ElMessage.error(data.message || '删除失败')
}
} catch (error) {
if (error !== 'cancel') {
console.error('删除返利失败:', error)
ElMessage.error('删除返利失败')
}
}
}
// 批量标记已计算
const handleBatchMarkCalculated = async () => {
try {
if (selectedRebates.value.length === 0) {
ElMessage.warning('请选择要标记的记录')
return
}
await ElMessageBox.confirm(`确认标记选中的 ${selectedRebates.value.length} 条返利记录为已计算吗?`, '确认操作', {
type: 'warning'
})
const rebateIds = selectedRebates.value.map(item => item.rebateId!)
const { data } = await rebateApi.batchMarkRebateCalculated(rebateIds)
if (data.code === 200) {
ElMessage.success('批量标记成功')
getRebateList()
} else {
ElMessage.error(data.message || '批量标记失败')
}
} catch (error) {
if (error !== 'cancel') {
console.error('批量标记失败:', error)
ElMessage.error('批量标记失败')
}
}
}
// 批量删除
const handleBatchDelete = async () => {
try {
if (selectedRebates.value.length === 0) {
ElMessage.warning('请选择要删除的记录')
return
}
await ElMessageBox.confirm(`确认删除选中的 ${selectedRebates.value.length} 条返利记录吗?`, '确认删除', {
type: 'warning'
})
const rebateIds = selectedRebates.value.map(item => item.rebateId!)
const { data } = await rebateApi.batchDeleteRebate(rebateIds)
if (data.code === 200) {
ElMessage.success('批量删除成功')
getRebateList()
} else {
ElMessage.error(data.message || '批量删除失败')
}
} catch (error) {
if (error !== 'cancel') {
console.error('批量删除返利失败:', error)
ElMessage.error('批量删除返利失败')
}
}
}
// 审核
const handleAudit = (row: Rebate) => {
auditForm.rebateId = row.rebateId
auditForm.status = undefined
auditForm.auditRemark = ''
auditDialogVisible.value = true
}
// 提交审核
const handleSubmitAudit = async () => {
try {
await auditFormRef.value?.validate()
auditLoading.value = true
// 模拟审核操作
ElMessage.success('审核返利成功')
auditDialogVisible.value = false
getRebateList()
} catch (error) {
console.error('审核返利失败:', error)
ElMessage.error('审核返利失败')
} finally {
auditLoading.value = false
}
}
// 批量审核
const handleBatchAudit = async (status: number) => {
try {
const statusText = status === 1 ? '通过' : '拒绝'
await ElMessageBox.confirm(`确认批量审核${statusText}选中的 ${selectedRebates.value.length} 条返利记录吗?`, '确认审核', {
type: 'warning'
})
// 模拟批量审核操作
ElMessage.success(`批量审核${statusText}成功`)
getRebateList()
} catch (error) {
if (error !== 'cancel') {
console.error('批量审核失败:', error)
ElMessage.error('批量审核失败')
}
}
}
// 发放
const handleRelease = async (row: any) => {
try {
await ElMessageBox.confirm('确认发放该返利吗?', '确认发放', {
type: 'warning'
})
// 模拟发放操作
ElMessage.success('发放返利成功')
getRebateList()
} catch (error) {
if (error !== 'cancel') {
console.error('发放返利失败:', error)
ElMessage.error('发放返利失败')
}
}
}
// 批量发放
const handleBatchRelease = async () => {
try {
await ElMessageBox.confirm(`确认批量发放选中的 ${selectedRebates.value.length} 条返利记录吗?`, '确认发放', {
type: 'warning'
})
// 模拟批量发放操作
ElMessage.success('批量发放返利成功')
getRebateList()
} catch (error) {
if (error !== 'cancel') {
console.error('批量发放返利失败:', error)
ElMessage.error('批量发放返利失败')
}
}
}
// 导出
const handleExport = async () => {
try {
loading.value = true
const params = { ...searchForm }
const response = await rebateApi.exportRebate(params)
// 创建下载链接
const blob = new Blob([response.data], {
type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
})
const url = window.URL.createObjectURL(blob)
const link = document.createElement('a')
link.href = url
link.download = `返利数据_${new Date().toISOString().split('T')[0]}.xlsx`
document.body.appendChild(link)
link.click()
document.body.removeChild(link)
window.URL.revokeObjectURL(url)
ElMessage.success('导出成功')
} catch (error) {
console.error('导出失败:', error)
ElMessage.error('导出失败')
} finally {
loading.value = false
}
}
// 初始化趋势图
const initTrendChart = async () => {
if (!trendChart.value) return
const chart = echarts.init(trendChart.value)
try {
// 调用后端API获取月度统计数据
const response = await rebateApi.getRebateMonthlyStats()
let monthlyData = []
if (response && response.data) {
monthlyData = response.data
}
const months = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']
// 处理后端返回的月度数据
const totalTrendData = months.map((month, index) => {
const monthIndex = index + 1
const monthData = monthlyData.find((item: any) => item.month === monthIndex)
return monthData ? monthData.totalAmount : 0
})
const calculatedTrendData = months.map((month, index) => {
const monthIndex = index + 1
const monthData = monthlyData.find((item: any) => item.month === monthIndex)
return monthData ? monthData.calculatedAmount : 0
})
const option = {
tooltip: {
trigger: 'axis',
formatter: (params: any) => {
let result = `${params[0].axisValue}<br/>`
params.forEach((param: any) => {
result += `${param.seriesName}: ¥${param.value.toLocaleString()}<br/>`
})
return result
}
},
grid: {
left: '8%',
right: '8%',
top: '15%',
bottom: '15%'
},
xAxis: {
type: 'category',
boundaryGap: false,
data: months,
axisLine: { show: false },
axisTick: { show: false },
axisLabel: {
color: '#999',
fontSize: 12
}
},
yAxis: {
type: 'value',
axisLine: { show: false },
axisTick: { show: false },
splitLine: {
show: true,
lineStyle: {
color: '#f0f0f0',
type: 'dashed'
}
},
axisLabel: {
color: '#999',
fontSize: 12,
formatter: (value: number) => `${(value / 1000).toFixed(0)}k`
}
},
series: [
{
name: '返利金额',
type: 'line',
smooth: true,
data: totalTrendData,
itemStyle: { color: '#4CAF50' },
lineStyle: {
color: '#4CAF50',
width: 3
},
symbol: 'circle',
symbolSize: 6,
showSymbol: true
},
{
name: '已审核返利',
type: 'line',
smooth: true,
data: calculatedTrendData,
itemStyle: { color: '#2196F3' },
lineStyle: {
color: '#2196F3',
width: 3
},
symbol: 'circle',
symbolSize: 6,
showSymbol: true
}
]
}
chart.setOption(option)
} catch (error) {
console.error('获取趋势图数据失败:', error)
// 如果API调用失败,使用当前列表数据作为备用方案
const totalAmount = rebateList.value.reduce((sum, item) => sum + (item.rebateAmount || 0), 0)
const calculatedAmount = rebateList.value
.filter(item => item.calcFlag === 1)
.reduce((sum, item) => sum + (item.rebateAmount || 0), 0)
const months = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']
const totalTrendData = months.map(() => Math.floor(totalAmount / 12))
const calculatedTrendData = months.map(() => Math.floor(calculatedAmount / 12))
const fallbackOption = {
tooltip: {
trigger: 'axis',
formatter: (params: any) => {
let result = `${params[0].axisValue}<br/>`
params.forEach((param: any) => {
result += `${param.seriesName}: ¥${param.value.toLocaleString()}<br/>`
})
return result
}
},
grid: {
left: '8%',
right: '8%',
top: '15%',
bottom: '15%'
},
xAxis: {
type: 'category',
boundaryGap: false,
data: months,
axisLine: { show: false },
axisTick: { show: false },
axisLabel: {
color: '#999',
fontSize: 12
}
},
yAxis: {
type: 'value',
axisLine: { show: false },
axisTick: { show: false },
splitLine: {
show: true,
lineStyle: {
color: '#f0f0f0',
type: 'dashed'
}
},
axisLabel: {
color: '#999',
fontSize: 12,
formatter: (value: number) => `${(value / 1000).toFixed(0)}k`
}
},
series: [
{
name: '返利金额',
type: 'line',
smooth: true,
data: totalTrendData,
itemStyle: { color: '#4CAF50' },
lineStyle: {
color: '#4CAF50',
width: 3
},
symbol: 'circle',
symbolSize: 6,
showSymbol: true
},
{
name: '已审核返利',
type: 'line',
smooth: true,
data: calculatedTrendData,
itemStyle: { color: '#2196F3' },
lineStyle: {
color: '#2196F3',
width: 3
},
symbol: 'circle',
symbolSize: 6,
showSymbol: true
}
]
}
chart.setOption(fallbackOption)
}
// 响应式调整
window.addEventListener('resize', () => chart.resize())
}
// 初始化饼图
const initPieChart = async () => {
if (!pieChart.value) return
const chart = echarts.init(pieChart.value)
try {
// 调用后端API获取状态统计数据
const response = await rebateApi.getRebateStatusStats()
let statusData = { calculatedCount: 0, unCalculatedCount: 0 }
if (response && response.data) {
statusData = response.data
}
const option = {
tooltip: {
trigger: 'item',
formatter: '{b}: {c} ({d}%)'
},
series: [
{
name: '审核状态',
type: 'pie',
radius: ['35%', '65%'],
center: ['50%', '50%'],
data: [
{
value: statusData.calculatedCount || 0,
name: '已计算',
itemStyle: { color: '#2196F3' }
},
{
value: statusData.unCalculatedCount || 0,
name: '未计算',
itemStyle: { color: '#4CAF50' }
}
],
label: {
show: true,
position: 'inside',
formatter: '{b}\n{d}%',
fontSize: 12,
color: '#fff',
fontWeight: 'bold'
},
labelLine: {
show: false
},
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
},
label: {
fontSize: 14
}
}
}
]
}
chart.setOption(option)
} catch (error) {
console.error('获取饼图数据失败:', error)
// 如果API调用失败,使用当前列表数据作为备用方案
const calculatedCount = rebateList.value.filter(item => item.calcFlag === 1).length
const unCalculatedCount = rebateList.value.filter(item => item.calcFlag === 0).length
const fallbackOption = {
tooltip: {
trigger: 'item',
formatter: '{b}: {c} ({d}%)'
},
series: [
{
name: '审核状态',
type: 'pie',
radius: ['35%', '65%'],
center: ['50%', '50%'],
data: [
{
value: calculatedCount,
name: '已审核',
itemStyle: { color: '#2196F3' }
},
{
value: unCalculatedCount,
name: '未审核',
itemStyle: { color: '#4CAF50' }
}
],
label: {
show: true,
position: 'inside',
formatter: '{b}\n{d}%',
fontSize: 12,
color: '#fff',
fontWeight: 'bold'
},
labelLine: {
show: false
},
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
},
label: {
fontSize: 14
}
}
}
]
}
chart.setOption(fallbackOption)
}
// 响应式调整
window.addEventListener('resize', () => chart.resize())
}
// 页面加载时获取数据
onMounted(async () => {
await getRebateList()
setTimeout(async () => {
await initTrendChart()
await initPieChart()
}, 100)
})
</script>
<style scoped lang="scss">
.rebate-page {
padding: 20px;
background: #f5f7fa;
min-height: 100vh;
}
.search-section {
background: white;
padding: 16px 20px;
margin-bottom: 16px;
border-radius: 4px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
.search-form {
.search-row {
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
.search-item {
display: flex;
align-items: center;
gap: 8px;
.search-label {
font-size: 14px;
color: #333;
white-space: nowrap;
min-width: 70px;
}
}
.search-actions {
margin-left: auto;
display: flex;
gap: 8px;
}
}
}
}
.charts-section {
margin-bottom: 16px;
.charts-container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 16px;
.chart-card {
background: white;
border-radius: 4px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
overflow: hidden;
.chart-header {
padding: 16px 20px 8px 20px;
border-bottom: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
align-items: center;
.chart-title {
font-size: 16px;
font-weight: 500;
color: #333;
margin: 0;
}
.chart-legend {
display: flex;
gap: 16px;
.legend-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: #666;
.legend-dot {
width: 8px;
height: 8px;
border-radius: 50%;
}
}
}
}
&.trend-chart {
.chart {
height: 260px;
}
}
&.pie-chart {
.chart {
height: 240px;
}
}
.chart-content {
padding: 12px 20px 20px 20px;
}
}
}
}
.chart {
width: 100%;
}
.table-section {
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
.table-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 20px 0 20px;
margin-bottom: 16px;
.table-title {
font-size: 16px;
font-weight: 500;
color: #333;
}
.table-info {
font-size: 12px;
color: #999;
}
}
.el-table {
border: none;
:deep(.el-table__header) {
th {
background-color: #fafafa;
border: none;
font-weight: 500;
color: #333;
}
}
:deep(.el-table__body) {
tr:hover > td {
background-color: #f5f7fa;
}
td {
border: none;
border-bottom: 1px solid #f0f0f0;
}
}
}
.pagination-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 20px;
border-top: 1px solid #f0f0f0;
background: #fafafa;
.pagination-info {
font-size: 14px;
color: #666;
}
.pagination-jump {
display: flex;
align-items: center;
font-size: 14px;
color: #666;
}
}
}
.amount-text {
color: #f56c6c;
font-weight: 500;
}
.rebate-detail {
max-height: 600px;
overflow-y: auto;
}
// 响应式设计
@media (max-width: 1200px) {
.charts-container {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.rebate-page {
padding: 16px;
}
.search-form .form-row {
flex-direction: column;
align-items: flex-start;
gap: 12px;
.form-actions {
margin-left: 0;
margin-top: 12px;
}
}
}
</style>