member-consume.vue
88.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
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
<template>
<view class="member-consume-container">
<view class="form-card">
<view class="form-content">
<form @submit="handleFormSubmit">
<!-- 会员选择 -->
<view class="form-group">
<text class="form-label">会员</text>
<view class="custom-select" @tap="removeid?'':openSelectModal('hy')">
<text class="select-text">{{ formData.hy || '请选择会员' }}</text>
<text class="select-arrow">▼</text>
</view>
</view>
<!-- 耗卡日期 - 只有新增耗卡时且为授权用户才显示 -->
<view class="form-group" v-if="canEditDate && !removeid">
<text class="form-label">耗卡日期</text>
<view class="input-wrapper">
<picker mode="date" :value="formData.hksj" @change="onDateChange">
<view class="custom-select">
<text class="select-text">{{ formData.hksj || '请选择耗卡日期' }}</text>
<text class="select-arrow">▼</text>
</view>
</picker>
</view>
</view>
<!-- 品项明细 -->
<view class="form-group">
<text class="form-label">品项明细</text>
<view class="px-container">
<view v-for="(px, index) in pxList" :key="index" class="px-row">
<!-- 品项选择区域 -->
<view v-if="px.px && px.pxmc" class="px-info">
<view class="px-info-title">{{ px.pxmc }}</view>
<view class="px-info-details">
<view class="px-info-item">
<text class="px-info-label">单价:</text>
<text class="px-info-value">¥{{ px.pxjg || 0 }}</text>
</view>
<view class="px-info-item" v-if="px.TotalPurchased ">
<text class="px-info-label">总购买:</text>
<text class="px-info-value">{{ px.TotalPurchased || 0 }}</text>
</view>
<view class="px-info-item" v-if="px.ConsumedCount ">
<text class="px-info-label">已消费:</text>
<text class="px-info-value">{{ px.ConsumedCount || 0 }}</text>
</view>
<view class="px-info-item" v-if="px.RemainingCount">
<text class="px-info-label">剩余:</text>
<text class="px-info-value">{{ px.RemainingCount || 0 }}</text>
</view>
<view class="px-info-item">
<text class="px-info-label">来源:</text>
<text class="px-info-value">{{ px.sourceType || "" }}</text>
</view>
<view class="px-info-item" >
<text class="px-info-label">科美手工费:</text>
<text class="px-info-value">{{ px.techBeautyLaborCost || "0" }}</text>
</view>
<view class="px-info-item">
<text class="px-info-label">健康师手工费:</text>
<text class="px-info-value">{{ px.healthCoachLaborCost || "0" }}</text>
</view>
<view class="px-info-item">
<text class="px-info-label">总业绩:</text>
<text class="px-info-value">{{ px.pxjg * px.projectNumber || "0" }}</text>
</view>
</view>
</view>
<view v-else class="px-select" @tap="selectPx(index)">
选择品项
</view>
<!-- 次数输入框 -->
<input :disabled="px.RemainingCount?false:true" type="number" class="px-number" placeholder="次数" min="1" :max="px.RemainingCount"
step="1" v-model="px.projectNumber" @input="updatePxNumber(index, $event)">
<!-- 删除按钮 -->
<button type="button" class="px-delete" @tap="deletePxRow(index)">删除</button>
<!-- 第三行:健康师和科技部老师 -->
<view class="px-row-third">
<!-- 健康师选择 -->
<view class="px-staff-section">
<view class="px-jks-select" v-if="px.qt2 != '医美'" @tap="selectPxJks(index)">
添加健康师
</view>
<view class="px-jks-list"
v-if="px.lqXhJksyjList && px.lqXhJksyjList.length > 0">
<view v-for="(jks, jksIndex) in px.lqXhJksyjList" :key="jksIndex"
class="px-staff-item">
<view class="px-staff-header">
<text class="px-staff-name">{{ jks.jksxm }}</text>
<button v-if="px.qt2 != '医美'" class="px-staff-remove"
@click="removePxJks(index, jksIndex)">删除</button>
</view>
<view class="px-staff-fields">
<view class="px-staff-row">
<view class="px-staff-field">
<text class="px-staff-field-label">业绩</text>
<input disabled type="text" v-model="jks.jksyj" placeholder="请输入业绩"
@change="updateJksField(index, jksIndex, 'jksyj', $event)">
</view>
<view v-if="px.qt2 != '医美'" class="px-staff-field">
<text class="px-staff-field-label">手工费</text>
<input disabled type="number" v-model="jks.laborCost"
placeholder="手工费" min="0" step="0.01"
@change="updateJksField(index, jksIndex, 'laborCost', $event)">
</view>
</view>
<view v-if="px.qt2 != '医美'" class="px-staff-row">
<view class="px-staff-field">
<text class="px-staff-field-label">次数</text>
<input disabled type="number" v-model="jks.kdpxNumber"
placeholder="次数" min="0" step="1"
@change="updateJksField(index, jksIndex, 'kdpxNumber', $event)">
</view>
<view class="px-staff-field">
<!-- 占位,保持布局平衡 -->
</view>
</view>
</view>
</view>
</view>
</view>
<!-- 科技部老师选择 -->
<view class="px-staff-section">
<view class="px-kjb-select" @tap="selectPxKjb(index)"
:style="{display: px.qt2 === '科美' ? 'block' : 'none'}">
添加科技部老师
</view>
<view class="px-kjb-list"
v-if="px.lqXhKjbsyjList && px.lqXhKjbsyjList.length > 0">
<view v-for="(kjb, kjbIndex) in px.lqXhKjbsyjList" :key="kjbIndex"
class="px-staff-item">
<view class="px-staff-header">
<text class="px-staff-name">{{ kjb.kjblsxm }}</text>
<button class="px-staff-remove"
@click="removePxKjb(index, kjbIndex)">删除</button>
</view>
<view class="px-staff-fields">
<view class="px-staff-row">
<view class="px-staff-field">
<text class="px-staff-field-label">业绩</text>
<input disabled type="text" v-model="kjb.kjblsyj" placeholder="请输入业绩"
@change="updateKjbField(index, kjbIndex, 'kjblsyj', $event)">
</view>
<view class="px-staff-field">
<text class="px-staff-field-label">手工费</text>
<input disabled type="number" v-model="kjb.laborCost"
placeholder="手工费" min="0" step="0.01"
@change="updateKjbField(index, kjbIndex, 'laborCost', $event)">
</view>
</view>
<view class="px-staff-row">
<view class="px-staff-field">
<text class="px-staff-field-label">次数</text>
<input disabled type="number" v-model="kjb.hdpxNumber"
placeholder="次数" min="0" step="1"
@change="updateKjbField(index, kjbIndex, 'hdpxNumber', $event)">
</view>
<view class="px-staff-field">
<!-- 占位,保持布局平衡 -->
</view>
</view>
</view>
</view>
</view>
</view>
<!-- 陪同选择(仅当 isAllowAccompanied 为 1 时显示) -->
<view class="px-staff-section" v-if="px.isAllowAccompanied == 1">
<view class="px-jks-select" @tap="selectAccompaniedJks(index)">
添加陪同健康师
</view>
<view class="px-jks-list"
v-if="px.accompaniedJksList && px.accompaniedJksList.length > 0">
<view v-for="(accompaniedJks, accompaniedIndex) in px.accompaniedJksList" :key="accompaniedIndex"
class="px-staff-item">
<view class="px-staff-header">
<text class="px-staff-name">{{ accompaniedJks.jksxm }}</text>
<button class="px-staff-remove"
@click="removeAccompaniedJks(index, accompaniedIndex)">删除</button>
</view>
<view class="px-staff-fields">
<view class="px-staff-row">
<!-- <view class="px-staff-field">
<text class="px-staff-field-label">是否陪同</text>
<input type="number" v-model="accompaniedJks.isAccompanied"
placeholder="是否陪同" min="0" max="1" step="1"
@change="updateAccompaniedJksField(index, accompaniedIndex, 'isAccompanied', $event)">
</view> -->
<view class="px-staff-field">
<text class="px-staff-field-label">陪同次数</text>
<input type="digit" v-model="accompaniedJks.accompaniedProjectNumber"
placeholder="陪同次数" min="0" step="1"
@change="updateAccompaniedJksField(index, accompaniedIndex, 'accompaniedProjectNumber', $event)">
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<button type="button" class="btn-add-px" @tap="addPxRow">添加品项</button>
</view>
<!-- 消费金额 -->
<view class="form-group">
<text class="form-label">消费金额</text>
<view class="input-wrapper">
<input type="number" v-model="formData.xfje" placeholder="自动计算" min="0" step="0.01"
disabled>
</view>
</view>
<!-- 手工费用 -->
<view class="form-group">
<text class="form-label">手工费用</text>
<view class="input-wrapper">
<input type="number" v-model="formData.sgfy" placeholder="自动计算" min="0" step="0.01"
disabled>
</view>
</view>
<!-- 是否加班 - 只在晚上7点半后显示 -->
<view class="form-group" v-if="showOvertimeOption && !removeid">
<text class="form-label">是否加班</text>
<view class="input-wrapper">
<checkbox-group @change="onOvertimeChange">
<view class="checkbox-wrapper" @tap.stop="toggleOvertime">
<checkbox value="overtime" :checked="formData.isOvertime" />
<text class="checkbox-label">加班</text>
</view>
</checkbox-group>
<!-- 加班系数下拉选择 -->
<view v-if="formData.isOvertime" class="overtime-select-wrapper">
<picker mode="selector" :range="overtimeOptions" :value="overtimeIndex" @change="onOvertimeCoefficientChange">
<view class="custom-select">
<text class="select-text">{{ formData.overtimeCoefficient > 0 ? formData.overtimeCoefficient : '请选择加班系数' }}</text>
<text class="select-arrow">▼</text>
</view>
</picker>
</view>
</view>
</view>
<view class="form-group" v-else-if="removeid">
<text class="form-label">是否加班</text>
<view class="input-wrapper">
<view class="custom-select">
<text class="select-text">{{ formData.overtimeCoefficient > 0 ? formData.overtimeCoefficient : '否' }}</text>
<!-- <text class="select-arrow">▼</text> -->
</view>
</view>
</view>
<!-- 会员签字 -->
<view class="form-group" v-if="!removeid">
<text class="form-label">会员签字</text>
<view class="input-wrapper">
<view v-if="!memberSignature" class="signature-placeholder">
<button @click="openSignatureModal" class="btn-signature-placeholder">
<text class="signature-placeholder-text">点击进行签字</text>
</button>
</view>
<view v-if="memberSignature" class="signature-preview">
<text class="preview-label">签字预览:</text>
<image @tap="previewSignature(memberSignature)" :src="memberSignature"
class="signature-image" mode="aspectFit" />
<view class="signature-actions">
<button @click="openSignatureModal" class="btn-re-signature">重新签字</button>
<button @click="clearMemberSignature" class="btn-clear-signature">清除签字</button>
</view>
</view>
</view>
</view>
<view class="form-group" v-else-if="memberSignature&&removeid">
<text class="form-label">会员签字</text>
<view class="input-wrapper">
<view class="signature-preview">
<image @tap="previewSignature(baseUrl+memberSignature)" :src="baseUrl+memberSignature"
class="signature-image" mode="aspectFit" />
</view>
</view>
</view>
<!-- 提交按钮 -->
<view class="btn-group">
<button type="submit" class="btn btn-primary"
@tap="issubmitOrder?submitConsume():null">{{ issubmitOrder?'提交':'提交中...' }}</button>
</view>
</form>
</view>
</view>
<!-- 选择弹窗 -->
<SearchSelectModal :show="showModal" :title="modalTitle" :options="currentOptions" :loading="modalLoading"
:has-more="hasMoreData" :search-param="searchParam"
:show-cross-store="currentSelectField === 'hy'"
:is-cross-store="isCrossStore"
@confirm="handleModalConfirm" @close="closeModal"
@load-more="handleLoadMore" @refresh="handleRefresh" @search="handleSearch"
@cross-store-change="onCrossStoreChange" />
<!-- 消息提示 -->
<u-toast ref="uToast"></u-toast>
<!-- 全屏签字弹窗 -->
<view v-if="showSignatureModal" class="signature-modal-overlay" @tap="closeSignatureModal">
<view class="signature-modal" @tap.stop>
<view class="signature-modal-header">
<text class="signature-modal-title"></text>
<button @click="closeSignatureModal" class="btn-close-modal">×</button>
</view>
<view class="signature-modal-content">
<SignaturePad :width="800" :height="500" :line-width="4" stroke-color="#2e7d32"
@confirm="handleSignatureConfirm" @clear="handleSignatureClear" ref="signaturePadModal" />
</view>
</view>
</view>
</view>
</template>
<script>
import SearchSelectModal from '@/components/SearchSelectModal.vue'
import SignaturePad from '@/components/SignaturePad.vue'
import memberApi from '@/apis/modules/member.js'
import lxApi from '@/apis/modules/lx.js'
import projectApi from '@/apis/modules/project.js'
import appointmentApi from '@/apis/modules/appointment.js'
import consumeApi from '@/apis/modules/consume.js'
import config from '@/common/config.js'
export default {
components: {
SearchSelectModal,
SignaturePad
},
data() {
return {
issubmitOrder: true,
baseUrl: config.getApiBaseUrl(),
// 表单数据
formData: {
hy: '',
hyzh: '',
hymc: '',
gklx: '',
hksj: '', // 耗卡日期
xfje: '',
sgfy: '',
isOvertime: false, // 是否加班
overtimeCoefficient: 0 // 加班系数,默认0
},
// 会员签字
memberSignature: '',
showSignatureModal: false,
scrollTop: 0,
// 选中的值
selectedValues: {
hy: null
},
// 品项列表
pxList: [],
// 弹窗相关
showModal: false,
modalTitle: '',
currentSelectField: '',
currentOptions: [],
modalLoading: false,
hasMoreData: true,
currentPage: 1,
pageSize: 20,
searchKeyword: '',
searchParam: '',
// 用户信息
userInfo: null,
// 跨店相关
isCrossStore: false,
// 选项数据
jksOptions: [],
kjbOptions: [],
// 当前选择的行索引
currentRowIndex: -1,
currentJksIndex: -1,
currentKjbIndex: -1,
mdxx: null,
removeinfo: {},
removeid: null,
// 加班系数选项
overtimeOptions: [0.5, 1, 1.5, 2],
// 陪同模式标识
isAccompaniedMode: false
}
},
onLoad(options) {
this.initializePage(options);
},
onUnload() {
// 页面卸载时恢复页面滚动
this.enablePageScroll();
},
computed: {
// 检查当前用户是否可以修改耗卡日期
canEditDate() {
// && this.userInfo.userId === '18628973287';
return this.userInfo
},
// 判断是否超过晚上8点,决定是否显示加班选项
showOvertimeOption() {
// return true;
const now = new Date();
const hours = now.getHours();
// 判断是否超过20:00(八点)
return hours >= 20;
},
// 获取当前加班系数在选项数组中的索引
overtimeIndex() {
const index = this.overtimeOptions.indexOf(this.formData.overtimeCoefficient);
return index >= 0 ? index : 0;
}
},
methods: {
// 处理日期变化
onDateChange(e) {
this.formData.hksj = e.detail.value;
},
// 跨店开关变化
onCrossStoreChange(value) {
this.isCrossStore = value;
// 如果弹窗已打开且正在选择会员,重新加载数据
if (this.showModal && this.currentSelectField === 'hy') {
this.currentPage = 1;
this.hasMoreData = true;
this.loadOptionsData('hy', 1, this.searchKeyword);
}
},
// 切换加班状态(点击容器时触发)
toggleOvertime() {
this.formData.isOvertime = !this.formData.isOvertime;
this.handleOvertimeChange(this.formData.isOvertime);
},
// 处理是否加班变化
onOvertimeChange(e) {
console.log('onOvertimeChange', e);
// checkbox-group 的 change 事件,e.detail.value 是一个数组,包含所有选中的值
// const checked = e.detail.value && e.detail.value.length > 0 && e.detail.value.includes('overtime');
// this.formData.isOvertime = checked;
// this.handleOvertimeChange(checked);
},
// 处理加班状态变化的统一逻辑
handleOvertimeChange(isOvertime) {
if (!isOvertime) {
// 如果取消勾选,重置加班系数为0
this.formData.overtimeCoefficient = 0;
} else {
// 如果勾选,默认选择第一个选项(0.5)
if (!this.formData.overtimeCoefficient || this.formData.overtimeCoefficient === 0) {
this.formData.overtimeCoefficient = 0.5;
}
}
},
// 处理加班系数选择变化
onOvertimeCoefficientChange(e) {
const index = e.detail.value;
this.formData.overtimeCoefficient = this.overtimeOptions[index];
},
// 签字相关方法
async newUploadBase64Image() {
let info = null;
await lxApi.UploadBase64Image({
"base64Data": this.memberSignature,
"imageType": "png",
"fileName": "memberSignature.png"
}).then(res => {
console.log('UploadBase64Image', res);
if (res.code == 200) {
info = res.data;
}
})
return info
},
previewSignature(e) {
console.log('previewSignature', e);
uni.previewImage({
urls: [e]
});
},
// 签字确认
handleSignatureConfirm(signatureData) {
this.memberSignature = signatureData.dataUrl;
this.showSignatureModal = false;
// 恢复页面滚动
this.enablePageScroll();
uni.showToast({
title: '签字确认成功',
icon: 'success'
});
},
handleSignatureClear() {
this.memberSignature = '';
},
clearMemberSignature() {
this.memberSignature = '';
if (this.$refs.signaturePad) {
this.$refs.signaturePad.clearSignature();
}
uni.showToast({
title: '签字已清除',
icon: 'success'
});
},
// 全屏签字相关方法
openSignatureModal() {
this.showSignatureModal = true;
// 禁止页面滚动
this.disablePageScroll();
},
closeSignatureModal() {
this.showSignatureModal = false;
// 恢复页面滚动
this.enablePageScroll();
},
// 禁止页面滚动
disablePageScroll() {
// 获取当前滚动位置
this.scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
// 设置页面不可滚动
document.body.style.overflow = 'hidden';
document.body.style.position = 'fixed';
document.body.style.width = '100%';
document.body.style.top = `-${this.scrollTop}px`;
},
// 恢复页面滚动
enablePageScroll() {
// 恢复页面滚动
document.body.style.overflow = '';
document.body.style.position = '';
document.body.style.width = '';
document.body.style.top = '';
// 恢复滚动位置
if (this.scrollTop !== undefined) {
window.scrollTo(0, this.scrollTop);
}
},
clearSignatureModal() {
if (this.$refs.signaturePadModal) {
this.$refs.signaturePadModal.clearSignature();
}
},
confirmSignatureModal() {
if (this.$refs.signaturePadModal) {
this.$refs.signaturePadModal.confirmSignature();
}
},
async getpxqtlist(list){
for(let i = 0; i < list.length; i++){
list[i].projectNumber = list[i].originalProjectNumber ;
let px = list[i].px;
const detailResult = await lxApi.getPxDetail(px);
list[i].qt2 = detailResult.data.qt2 || "";
// list[i].sgf = detailResult.data.sgf || 0;
list[i].healthCoachLaborCost = detailResult.data.healthCoachLaborCost || 0;
list[i].techBeautyLaborCost = detailResult.data.techBeautyLaborCost || 0;
list[i].isAllowAccompanied = detailResult.data.isAllowAccompanied || 0;
list[i].beautyType = detailResult.data.beautyType || '';
// 初始化陪同相关字段
if (!list[i].accompaniedJksList) {
list[i].accompaniedJksList = [];
}
let jkslist = []
let kjblist = []
let accompaniedJksList = []
list[i].lqXhJksyjList.forEach(jks => {
jks.kdpxNumber = jks.originalKdpxNumber;
jks.laborCost = jks.originalLaborCost;
if(jks.isAccompanied == 0){
jkslist.push(jks);
} else {
accompaniedJksList.push(jks);
}
});
list[i].lqXhKjbsyjList.forEach(kjb => {
kjb.kdpxNumber = kjb.originalKdpxNumber;
kjb.laborCost = kjb.originalLaborCost;
kjblist.push(kjb);
});
list[i].lqXhJksyjList = jkslist;
list[i].lqXhKjbsyjList = kjblist;
list[i].accompaniedJksList = accompaniedJksList;
}
this.pxList = list;
console.log(this.pxList);
this.calculateTotalAmounts();
this.$forceUpdate();
},
// 初始化页面
async initializePage(options) {
try {
// 获取用户信息
this.userInfo = uni.getStorageSync('userInfo');
if (!this.userInfo || Object.keys(this.userInfo).length === 0) {
uni.showToast({
title: '请先登录',
icon: 'none'
});
setTimeout(() => {
uni.reLaunch({
url: '/pages/login/login'
});
}, 1500);
return;
}
if (options.id) {
this.removeid = options.id;
this.API.getConsumeDetail(options.id).then(res => {
this.removeinfo = res.data;
this.formData.hy = res.data.hymc;
this.selectedValues.hy = res.data.hy;
this.formData.xfje = res.data.xfje;
this.formData.sgfy = res.data.sgfy;
this.formData.overtimeCoefficient = res.data.overtimeCoefficient;
this.getpxqtlist(res.data.lqXhPxmxList)
let hyqz = res.data.signatureFile ? JSON.parse(res.data.signatureFile) : [];
this.memberSignature = hyqz.length > 0 ? hyqz[0].url : '';
});
} else {
// 设置默认日期为当前日期
this.formData.hksj = this.utils.gettime().substring(0, 10);
// 添加默认的品项行
this.addPxRow();
}
// 初始化健康师和科技部老师数据
await this.loadInitialOptions();
} catch (error) {
console.error('页面初始化失败:', error);
uni.showToast({
title: '页面初始化失败',
icon: 'none'
});
}
},
// 加载初始选项数据
async loadInitialOptions() {
try {
// 并行加载健康师和科技部老师数据
const [jksResult, kjbResult] = await Promise.all([
this.getJksOptions(1, ''),
this.getKjbOptions(1, '')
]);
console.log('健康师数据加载完成:', this.jksOptions.length);
console.log('科技部老师数据加载完成:', this.kjbOptions.length);
} catch (error) {
console.error('加载初始选项数据失败:', error);
}
this.API.getLqMdxx(this.userInfo.mdid).then(res => {
this.mdxx = res.data;
});
},
// 打开选择弹窗
async openSelectModal(fieldId) {
this.currentSelectField = fieldId;
this.showModal = true;
this.modalTitle = '加载中...';
this.modalLoading = true;
this.currentPage = 1;
this.hasMoreData = true;
this.searchKeyword = '';
this.currentOptions = [];
try {
// 设置搜索参数
switch (fieldId) {
case 'hy':
this.searchParam = 'khmc';
this.modalTitle = '选择会员';
break;
case 'px':
this.searchParam = 'pxmc';
this.modalTitle = '选择品项';
break;
case 'jks':
this.searchParam = 'jksxm';
this.modalTitle = '选择健康师';
break;
case 'kjb':
this.searchParam = 'kjblsxm';
this.modalTitle = '选择科技部人员';
break;
}
await this.loadOptionsData(fieldId, 1);
} catch (error) {
console.error('获取选项数据失败:', error);
this.modalTitle = '加载失败';
this.currentOptions = [];
uni.showToast({
title: '数据加载失败,请检查网络连接',
icon: 'none'
});
} finally {
this.modalLoading = false;
}
},
// 关闭弹窗
closeModal() {
this.showModal = false;
this.currentSelectField = '';
this.currentOptions = [];
this.modalLoading = false;
this.hasMoreData = true;
this.currentPage = 1;
this.searchKeyword = '';
this.isAccompaniedMode = false;
},
// 加载选项数据
async loadOptionsData(fieldId, page = 1, searchKeyword = '') {
let options = [];
switch (fieldId) {
case 'hy':
options = await this.getMemberOptions(page, searchKeyword);
break;
case 'px':
this.hasMoreData = false;
options = await this.getPxOptions(page, searchKeyword);
break;
case 'jks':
options = await this.getJksOptions(page, searchKeyword);
break;
case 'kjb':
options = await this.getKjbOptions(page, searchKeyword);
break;
}
// 为每个选项添加全局唯一的 key
options = options.map((option, index) => ({
...option,
uniqueKey: `${fieldId}_${page}_${index}_${Date.now()}`
}));
if (page === 1) {
this.currentOptions = options;
} else {
this.currentOptions = [...this.currentOptions, ...options];
}
// 检查是否还有更多数据
if (options.length < this.pageSize) {
this.hasMoreData = false;
}
},
// 处理弹窗确认
handleModalConfirm(selectedOption) {
if (this.currentSelectField && selectedOption) {
if (this.currentSelectField === 'px') {
// 处理品项选择
this.handlePxSelection(selectedOption);
} else if (this.currentSelectField === 'jks') {
// 处理健康师选择
if (this.isAccompaniedMode) {
// 陪同健康师选择
this.handleAccompaniedJksSelection(selectedOption);
} else {
// 普通健康师选择
this.handleJksSelection(selectedOption);
}
} else if (this.currentSelectField === 'kjb') {
// 处理科技部老师选择
this.handleKjbSelection(selectedOption);
} else if (this.currentSelectField === 'hy') {
// 处理会员选择
this.formData.hy = selectedOption.label;
this.selectedValues.hy = selectedOption.value;
// 补充会员相关信息
this.formData.hyzh = selectedOption.value;
this.formData.hymc = selectedOption.label;
this.formData.gklx = selectedOption.khlx || '';
}
}
this.closeModal();
},
// 处理品项选择
async handlePxSelection(selectedOption) {
if (this.currentRowIndex >= 0) {
try {
// 请求品项详细信息
const detailResult = await lxApi.getPxDetail(selectedOption.px);
let qt2 = "";
let sgf = 0;
let techBeautyLaborCost = 0
let healthCoachLaborCost = 0
let isAllowAccompanied = 0;
if (detailResult.code === 200 && detailResult.data) {
qt2 = detailResult.data.qt2 || "";
sgf = detailResult.data.sgf || 0;
healthCoachLaborCost = detailResult.data.healthCoachLaborCost || 0;
techBeautyLaborCost = detailResult.data.techBeautyLaborCost || 0;
isAllowAccompanied = detailResult.data.isAllowAccompanied || 0;
}
this.pxList[this.currentRowIndex] = {
...this.pxList[this.currentRowIndex],
px: selectedOption.px,
pxmc: selectedOption.pxmc,
pxjg: selectedOption.ItemPrice || 0,
memberId: this.selectedValues.hy || "",
sourceType: selectedOption.sourceType || "",
totalPrice: (selectedOption.ItemPrice || 0) * (this.pxList[this.currentRowIndex]
.projectNumber || 1),
qt2: qt2, // 从接口获取的qt2字段
sgf: sgf, // 从接口获取的手工费
isAllowAccompanied: isAllowAccompanied, // 是否允许陪同
ItemName: selectedOption.pxmc,
ItemPrice: selectedOption.ItemPrice || 0,
TotalPurchased: selectedOption.TotalPurchased || 0,
ConsumedCount: selectedOption.ConsumedCount || 0,
RemainingCount: selectedOption.RemainingCount || 0,
BillingItemId: selectedOption.BillingItemId,
// 陪同相关字段
accompaniedJksList: [],// 陪同健康师列表
techBeautyLaborCost:techBeautyLaborCost,
healthCoachLaborCost:healthCoachLaborCost,
beautyType:detailResult.data.beautyType || '',
};
// 品项修改时,清空健康师和科技部老师列表
this.pxList[this.currentRowIndex].lqXhJksyjList = [];
this.pxList[this.currentRowIndex].lqXhKjbsyjList = [];
// 清空陪同健康师列表
this.pxList[this.currentRowIndex].accompaniedJksList = [];
this.calculateTotalAmounts();
// 如果是医美品项,自动选择T区健康师并分配全部业绩
if (qt2 === '医美') {
this.$nextTick(() => {
this.handleYimeiJksAutoSelection(this.currentRowIndex);
});
}
} catch (error) {
console.error('获取品项详情失败:', error);
uni.showToast({
title: '获取品项详情失败,请重试',
icon: 'none'
});
}
}
},
// 处理健康师选择
async handleJksSelection(selectedOption) {
if (this.currentRowIndex >= 0) {
if (!this.pxList[this.currentRowIndex].lqXhJksyjList) {
this.pxList[this.currentRowIndex].lqXhJksyjList = [];
}
const px = this.pxList[this.currentRowIndex];
const jksItem = {
jks: selectedOption.jks,
jksxm: selectedOption.jksxm,
jkszh: selectedOption.jkszh,
jksyj: "",
jsjId: "",
kdpxid: px.BillingItemId || px.px,
laborCost: 0, // 初始为0,后续通过均分计算
kdpxNumber: 0, // 初始为0,后续通过均分计算
isAccompanied: 0, // 是否陪同,默认0
accompaniedProjectNumber: 0 // 陪同次数,默认0
};
this.pxList[this.currentRowIndex].lqXhJksyjList.push(jksItem);
// 重新分配健康师的次数和手工费
this.redistributeJksNumbersAndLaborCost(this.currentRowIndex);
// 如果是医美品项,重新分配健康师业绩
if (px.qt2 === '医美') {
this.$nextTick(() => {
// this.handleYimeiJksDistribution(this.currentRowIndex);
});
} else {
// 非医美品项,如果有健康师和科技部老师,自动均分业绩
this.$nextTick(() => {
this.distributePerformance(this.currentRowIndex);
});
}
// 异步获取金三角信息
this.getJsjInfoByUserId(selectedOption.value, (jsjId, jsjName) => {
jksItem.jsjId = jsjId;
});
}
},
// 处理科技部老师选择
handleKjbSelection(selectedOption) {
if (this.currentRowIndex >= 0) {
if (!this.pxList[this.currentRowIndex].lqXhKjbsyjList) {
this.pxList[this.currentRowIndex].lqXhKjbsyjList = [];
}
const px = this.pxList[this.currentRowIndex];
const kjbItem = {
kjbls: selectedOption.kjbls,
kjblsxm: selectedOption.kjblsxm,
kjblszh: selectedOption.kjblszh,
kjblsyj: "",
hkpxid: px.BillingItemId || px.px,
laborCost: 0, // 初始为0,后续通过均分计算
hdpxNumber: 0 // 初始为0,后续通过均分计算
};
this.pxList[this.currentRowIndex].lqXhKjbsyjList.push(kjbItem);
// 重新分配科技部老师的次数和手工费
this.redistributeKjbNumbersAndLaborCost(this.currentRowIndex);
// 如果有健康师和科技部老师,自动均分业绩
this.$nextTick(() => {
this.distributePerformance(this.currentRowIndex);
});
}
},
// 处理加载更多
async handleLoadMore(page) {
if (this.currentSelectField && this.hasMoreData && !this.modalLoading) {
this.modalLoading = true;
try {
await this.loadOptionsData(this.currentSelectField, page, this.searchKeyword);
} catch (error) {
console.error('加载更多数据失败:', error);
uni.showToast({
title: '加载失败',
icon: 'none'
});
} finally {
this.modalLoading = false;
}
}
},
// 处理刷新
async handleRefresh() {
if (this.currentSelectField) {
this.currentPage = 1;
this.hasMoreData = true;
this.searchKeyword = '';
await this.loadOptionsData(this.currentSelectField, 1);
}
},
// 处理搜索
async handleSearch(searchKeyword) {
if (this.currentSelectField) {
this.searchKeyword = searchKeyword;
this.currentPage = 1;
this.hasMoreData = true;
this.modalLoading = true;
try {
await this.loadOptionsData(this.currentSelectField, 1, searchKeyword);
} catch (error) {
console.error('搜索失败:', error);
uni.showToast({
title: '搜索失败',
icon: 'none'
});
} finally {
this.modalLoading = false;
}
}
},
// 获取会员选项
async getMemberOptions(page = 1, searchKeyword = '') {
try {
const params = {
currentPage: page,
pageSize: this.pageSize,
};
if (searchKeyword) {
params.keyword = searchKeyword;
}
// 添加跨店参数
if (!this.isCrossStore) {
if(this.userInfo && this.userInfo.mdid) {
params.gsmd = this.userInfo.mdid;
} else{
params.gsmd = '暂无';
}
}
const result = await memberApi.getMemberList(params);
if (result.code === 200 && result.data) {
return result.data.list.map((item, index) => ({
value: item.id,
label: item.khmc,
sjh: item.sjh,
khlx: item.khlx,
khlxName: item.khlxName,
subtitle: '客户类型:' + (item.khlxName || '无') + ';手机号:' + (item.sjh || '无') +
';健康师:' + (item.mrsName || '无') + ';门店:' + (item.gsmdName || '无') + ';',
}));
}
return [];
} catch (error) {
console.error('获取会员列表出错:', error);
return [];
}
},
// 添加品项行
addPxRow() {
this.pxList.push({
px: "",
pxmc: "",
pxjg: 0,
memberId: "",
projectNumber: 1,
sourceType: "购买",
totalPrice: 0,
lqXhJksyjList: [],
lqXhKjbsyjList: [],
qt2: "",
isAllowAccompanied: 0,
accompaniedJksList: []
});
},
// 删除品项行
deletePxRow(rowIndex) {
if (this.pxList.length > 1) {
this.pxList.splice(rowIndex, 1);
this.calculateTotalAmounts();
} else {
uni.showToast({
title: '至少需要保留一个品项',
icon: 'none'
});
}
},
// 选择品项
async selectPx(rowIndex) {
this.currentRowIndex = rowIndex;
this.openSelectModal('px');
},
// 获取品项选项(从会员剩余品项API获取)
async getPxOptions(page = 1, searchKeyword = '') {
if (!this.selectedValues.hy) {
console.warn("请先选择会员");
return [];
}
try {
const params = {
memberId: this.selectedValues.hy
};
if (searchKeyword) {
params.xmmc = searchKeyword;
}
const result = await lxApi.getMemberRemainingItems(params);
if (result.code === 200 && result.data && result.data.RemainingItems) {
return result.data.RemainingItems.map(item => ({
value: item.BillingItemId,
label: item.ItemName,
px: item.ItemId,
pxmc: item.ItemName,
pxjg: item.ItemPrice || 0,
qt2: item.qt2 || "",
RemainingCount: item.RemainingCount || 0,
ItemPrice: item.ItemPrice || 0,
sgf: 0,
sourceType: item.SourceType || "购买",
TotalPurchased: item.TotalPurchased || 0,
ConsumedCount: item.ConsumedCount || 0,
BillingItemId: item.BillingItemId,
subtitle: '剩余: ' + (item.RemainingCount || 0) + ';类型:' + item.SourceType +
';单价:' + item.ItemPrice +';备注:' + (item.Remark || '无')+ ';'
}));
}
return [];
} catch (error) {
console.error('获取会员剩余品项出错:', error);
return [];
}
},
// 更新品项次数
updatePxNumber(rowIndex, event) {
const value = event.detail.value;
console.log('value',value)
if (this.pxList[rowIndex]) {
let inputNumber = parseInt(value);
// 验证不能超过剩余次数
if (inputNumber <= 0 ) {
inputNumber = 1;
console.log('inputNumber',inputNumber)
// 更新输入框显示的值
this.$nextTick(() => {
const inputElement = event.target;
if (inputElement) {
inputElement.value = inputNumber;
}
});
this.$forceUpdate();
}
this.pxList[rowIndex].projectNumber = inputNumber;
this.pxList[rowIndex].totalPrice = this.pxList[rowIndex].pxjg * this.pxList[rowIndex].projectNumber;
// 重新分配健康师和科技部老师的次数和手工费
this.redistributeJksNumbersAndLaborCost(rowIndex);
this.redistributeKjbNumbersAndLaborCost(rowIndex);
// 如果是医美品项,更新T区健康师业绩
if (this.pxList[rowIndex].qt2 === '医美') {
this.updateYimeiJksDistribution(rowIndex);
} else {
// 非医美品项,如果有健康师和科技部老师,自动均分业绩
this.distributePerformance(rowIndex);
}
}
},
// 计算总消费金额和手工费用
calculateTotalAmounts() {
let totalXfje = 0;
let totalSgfy = 0;
this.pxList.forEach(px => {
if (px.px && px.pxmc && px.pxjg && px.projectNumber) {
const pxTotal = px.pxjg * px.projectNumber;
totalXfje += pxTotal;
}
if (px.px && px.pxmc && px.projectNumber) {
// totalSgfy += px.sgf * px.projectNumber;
if (px.qt2 === '科美' && px.beautyType != 'cell') {
totalSgfy += px.techBeautyLaborCost * px.projectNumber;
} else if(px.qt2 === '科美' && px.beautyType == 'cell'){
if(px.lqXhKjbsyjList.length > 0){
totalSgfy += px.techBeautyLaborCost * px.projectNumber;
} else {
totalSgfy += px.healthCoachLaborCost * px.projectNumber;
}
} else {
totalSgfy += px.healthCoachLaborCost * px.projectNumber;
}
}
});
this.formData.xfje = totalXfje.toFixed(2);
this.formData.sgfy = totalSgfy.toFixed(2);
},
// 选择品项健康师
async selectPxJks(rowIndex) {
this.currentRowIndex = rowIndex;
this.currentJksIndex = this.pxList[rowIndex].lqXhJksyjList.length;
this.isAccompaniedMode = false;
this.openSelectModal('jks');
},
// 选择品项科技部老师
async selectPxKjb(rowIndex) {
this.currentRowIndex = rowIndex;
this.currentKjbIndex = this.pxList[rowIndex].lqXhKjbsyjList.length;
this.openSelectModal('kjb');
},
// 选择陪同健康师
async selectAccompaniedJks(rowIndex) {
this.currentRowIndex = rowIndex;
this.isAccompaniedMode = true;
this.openSelectModal('jks');
},
// 处理陪同健康师选择
async handleAccompaniedJksSelection(selectedOption) {
if (this.currentRowIndex >= 0) {
if (!this.pxList[this.currentRowIndex].accompaniedJksList) {
this.pxList[this.currentRowIndex].accompaniedJksList = [];
}
const px = this.pxList[this.currentRowIndex];
const accompaniedJksItem = {
jks: selectedOption.jks,
jksxm: selectedOption.jksxm,
jkszh: selectedOption.jkszh,
jksyj: 0, // 业绩默认为0,不参与逻辑
jsjId: "",
kdpxid: px.BillingItemId || px.px,
laborCost: 0, // 手工费默认为0,不参与逻辑
kdpxNumber: 0, // 次数默认为0,不参与逻辑
isAccompanied: 1, // 是否陪同,默认为1
accompaniedProjectNumber: 1 // 陪同次数,需要手动填写
};
this.pxList[this.currentRowIndex].accompaniedJksList.push(accompaniedJksItem);
this.isAccompaniedMode = false;
this.$forceUpdate();
// 异步获取金三角信息
this.getJsjInfoByUserId(selectedOption.value, (jsjId, jsjName) => {
accompaniedJksItem.jsjId = jsjId;
});
}
},
// 删除陪同健康师
removeAccompaniedJks(rowIndex, accompaniedIndex) {
if (this.pxList[rowIndex].accompaniedJksList) {
this.pxList[rowIndex].accompaniedJksList.splice(accompaniedIndex, 1);
}
this.$forceUpdate();
},
// 更新陪同健康师字段
updateAccompaniedJksField(rowIndex, accompaniedIndex, field, event) {
const value = event.detail.value;
if (this.pxList[rowIndex].accompaniedJksList && this.pxList[rowIndex].accompaniedJksList[accompaniedIndex]) {
if (field === 'accompaniedProjectNumber' || field === 'isAccompanied') {
this.pxList[rowIndex].accompaniedJksList[accompaniedIndex][field] = parseInt(value) || 0;
} else {
this.pxList[rowIndex].accompaniedJksList[accompaniedIndex][field] = value;
}
}
this.$forceUpdate();
},
// 获取健康师选项
async getJksOptions(page = 1, searchKeyword = '') {
try {
const params = {
currentPage: page,
pageSize: this.pageSize,
gw: '健康师',
mdid: this.userInfo.mdid
};
if (searchKeyword) {
params.jksxm = searchKeyword;
}
const result = await appointmentApi.getHealthWorkerList(params);
if (result.code === 200 && result.data) {
const options = result.data.list.map((item, index) => ({
value: item.id,
label: item.realName || `健康师${index + 1}`,
fullName: item.realName || `健康师${index + 1}`,
id: item.id,
jks: item.id, // 添加jks字段
jkszh: item.id,
jksxm: item.realName || `健康师${index + 1}`,
userName: item.userName || item.account || item.id,
account: item.account || item.userName || item.id,
subtitle: item.department || item.role || ''
}));
// 如果是第一页且没有搜索关键词,存储到jksOptions中
if (page === 1 && !searchKeyword) {
this.jksOptions = options;
}
return options;
}
return [];
} catch (error) {
console.error('获取健康师列表出错:', error);
return [];
}
},
// 获取科技部人员选项
async getKjbOptions(page = 1, searchKeyword = '') {
try {
const params = {
currentPage: page,
pageSize: this.pageSize,
gw: '科技老师' // 可以根据实际API调整筛选条件
};
if (searchKeyword) {
params.kjblsxm = searchKeyword;
}
const result = await appointmentApi.getHealthWorkerList(params);
if (result.code === 200 && result.data) {
const options = result.data.list.map((item, index) => ({
value: item.id,
label: item.realName || `科技部人员${index + 1}`,
fullName: item.realName || `科技部人员${index + 1}`,
id: item.id,
kjbls: item.id, // 添加kjbls字段
kjblszh: item.id,
kjblsxm: item.realName || `科技部人员${index + 1}`,
userName: item.userName || item.account || item.id,
account: item.account || item.userName || item.id,
subtitle: item.department || item.role || ''
}));
// 如果是第一页且没有搜索关键词,存储到kjbOptions中
if (page === 1 && !searchKeyword) {
this.kjbOptions = options;
}
return options;
}
return [];
} catch (error) {
console.error('获取科技部人员列表出错:', error);
return [];
}
},
// 删除品项健康师
removePxJks(rowIndex, jksIndex) {
console.log('删除健康师:', rowIndex, jksIndex);
if (this.pxList[rowIndex].lqXhJksyjList) {
this.pxList[rowIndex].lqXhJksyjList.splice(jksIndex, 1);
// 重新分配健康师的次数和手工费
this.redistributeJksNumbersAndLaborCost(rowIndex);
// 如果是医美品项,重新分配健康师业绩
if (this.pxList[rowIndex].qt2 === '医美') {
this.$nextTick(() => {
this.handleYimeiJksDistribution(rowIndex);
});
} else {
// 非医美品项,如果有健康师和科技部老师,自动均分业绩
this.$nextTick(() => {
this.distributePerformance(rowIndex);
});
}
}
this.$forceUpdate()
},
// 删除品项科技部老师
removePxKjb(rowIndex, kjbIndex) {
console.log('删除科技部老师:', rowIndex, kjbIndex);
if (this.pxList[rowIndex].lqXhKjbsyjList) {
this.pxList[rowIndex].lqXhKjbsyjList.splice(kjbIndex, 1);
// 重新分配科技部老师的次数和手工费
this.redistributeKjbNumbersAndLaborCost(rowIndex);
// 如果有健康师和科技部老师,自动均分业绩
this.$nextTick(() => {
this.distributePerformance(rowIndex);
});
}
this.$forceUpdate()
},
// 更新健康师字段
updateJksField(rowIndex, jksIndex, field, event) {
const value = event.detail.value;
if (this.pxList[rowIndex].lqXhJksyjList && this.pxList[rowIndex].lqXhJksyjList[jksIndex]) {
if (field === 'laborCost' || field === 'kdpxNumber') {
this.pxList[rowIndex].lqXhJksyjList[jksIndex][field] = parseFloat(value) || 0;
} else {
this.pxList[rowIndex].lqXhJksyjList[jksIndex][field] = value;
}
}
this.$forceUpdate()
},
// 更新科技部老师字段
updateKjbField(rowIndex, kjbIndex, field, event) {
const value = event.detail.value;
if (this.pxList[rowIndex].lqXhKjbsyjList && this.pxList[rowIndex].lqXhKjbsyjList[kjbIndex]) {
if (field === 'laborCost' || field === 'hdpxNumber') {
this.pxList[rowIndex].lqXhKjbsyjList[kjbIndex][field] = parseFloat(value) || 0;
} else {
this.pxList[rowIndex].lqXhKjbsyjList[kjbIndex][field] = value;
}
}
this.$forceUpdate()
},
// 处理表单提交
handleFormSubmit(event) {
event.preventDefault();
this.submitConsume();
},
// 提交耗卡
async submitConsume() {
// 验证表单
if (!this.selectedValues.hy) {
uni.showToast({
title: '请选择会员',
icon: 'none'
});
return;
}
if(!this.validateForm()){
return;
}
if (this.removeid) {
// 检查是否有科美品项
// const hasKemei = this.pxList.some(px => px.qt2 === '科美');
// 过滤品项列表,只保留提交需要的字段
const filteredPxList = this.pxList.map(px => ({
billingItemId: px.BillingItemId || px.billingItemId,
px: px.px,
memberId: px.memberId,
pxmc: px.pxmc,
pxjg: px.pxjg,
projectNumber: px.projectNumber,
sourceType: px.sourceType,
totalPrice: px.pxjg * px.projectNumber,
lqXhJksyjList: [...px.lqXhJksyjList,...px.accompaniedJksList] || [],
lqXhKjbsyjList: px.lqXhKjbsyjList || [],
// accompaniedJksList: px.accompaniedJksList || []
}));
const formData = {
...this.removeinfo,
xfje: this.formData.xfje,
sgfy: this.formData.sgfy,
lqXhPxmxList:filteredPxList.filter(px => px.px && px.pxmc),
// overtimeCoefficient: this.formData.overtimeCoefficient || 0
};
console.log({...formData});
// return;
this.issubmitOrder = false;
const result = await this.API.updateConsumeForNoDelete(formData)
uni.hideLoading();
if (result.code === 200) {
uni.showToast({
title: '修改成功!',
icon: 'success'
});
this.clearForm();
this.issubmitOrder = true;
setTimeout(() => {
// 返回上一页
uni.navigateBack();
}, 1000);
} else {
uni.showToast({
title: result.msg || '提交失败,请重试',
icon: 'none'
});
this.issubmitOrder = true;
}
} else {
try {
// 检查是否有科美品项
const hasKemei = this.pxList.some(px => px.qt2 === '科美');
// 过滤品项列表,只保留提交需要的字段
const filteredPxList = this.pxList.map(px => ({
billingItemId: px.BillingItemId,
px: px.px,
memberId: px.memberId,
pxmc: px.pxmc,
pxjg: px.pxjg,
projectNumber: px.projectNumber,
sourceType: px.sourceType,
totalPrice: px.pxjg * px.projectNumber,
lqXhJksyjList: [...px.lqXhJksyjList,...px.accompaniedJksList] || [],
lqXhKjbsyjList: px.lqXhKjbsyjList || [],
// accompaniedJksList: px.accompaniedJksList || []
}));
// 处理会员签字
let hyqz = []
if (this.memberSignature) {
let memberinfo = await this.newUploadBase64Image()
console.error(memberinfo)
if (memberinfo) {
hyqz.push({
name: memberinfo.name,
fileId: memberinfo.name,
url: memberinfo.url
});
}
}
// 收集表单数据
// 处理耗卡日期:如果用户设置了日期则使用设置的日期,否则使用当前时间
let hksjValue = this.utils.gettime();
if (this.formData.hksj) {
// 如果设置了日期,则添加时分秒
hksjValue = this.formData.hksj + ' ' + new Date().toTimeString().substring(0, 8);
}
const formData = {
md: this.userInfo.mdid || "",
"mdbh": this.userInfo.mdid,
"mdmc": this.mdxx.dm,
hy: this.selectedValues.hy,
"hyzh": this.formData.hyzh,
"hymc": this.formData.hymc,
"gklx": this.formData.gklx,
xfje: this.formData.xfje,
sgfy: this.formData.sgfy,
hksj: hksjValue,
sfykjb: hasKemei ? "是" : "否", // 是否有科技部
lqXhPxmxList: filteredPxList.filter(px => px.px && px.pxmc),
signatureFile: JSON.stringify(hyqz),
overtimeCoefficient: this.formData.overtimeCoefficient || 0
};
console.log("耗卡数据:", formData);
// return
uni.showLoading({
title: '正在提交...'
});
this.issubmitOrder = false;
// 调用实际的API
const result = await consumeApi.submitConsume(formData);
uni.hideLoading();
if (result.code === 200) {
uni.showToast({
title: '耗卡成功!',
icon: 'success'
});
this.clearForm();
this.issubmitOrder = true;
} else {
uni.showToast({
title: result.msg || '提交失败,请重试',
icon: 'none'
});
this.issubmitOrder = true;
}
} catch (error) {
uni.hideLoading();
console.error('提交失败:', error);
uni.showToast({
title: '网络错误,请稍后重试',
icon: 'none'
});
}
}
},
validateForm() {
if (this.pxList.length === 0) {
uni.showToast({
title: '请至少添加一个品项',
icon: 'none'
});
return;
}
// 验证每个品项的信息
for (let i = 0; i < this.pxList.length; i++) {
const px = this.pxList[i];
// 验证品项基本信息
if (!px.px || !px.pxmc) {
uni.showToast({
title: `第${i + 1}个品项信息不完整,请重新选择`,
icon: 'none'
});
return;
}
}
// 验证相同品项的次数总和不能超过剩余次数
// 按品项分组(优先使用 BillingItemId,如果没有则使用 px)
console.log('========== 开始验证相同品项次数总和 ==========');
console.log('品项列表:', this.pxList.map((px, idx) => ({
行号: idx + 1,
品项名称: px.pxmc,
BillingItemId: px.BillingItemId,
px: px.px,
次数: px.projectNumber,
剩余次数: px.RemainingCount
})));
const pxGroups = new Map();
for (let i = 0; i < this.pxList.length; i++) {
const px = this.pxList[i];
// 生成唯一标识:优先使用 BillingItemId,否则使用 px
const key = px.BillingItemId;
console.log(`处理第${i + 1}行: 品项=${px.pxmc}, BillingItemId=${key}, 次数=${px.projectNumber}, 剩余次数=${px.RemainingCount}`);
if (!pxGroups.has(key)) {
pxGroups.set(key, {
items: [],
pxName: px.pxmc || '',
remainingCount: null
});
console.log(` 创建新分组: key=${key}, 品项名称=${px.pxmc}`);
}
const group = pxGroups.get(key);
group.items.push({
index: i,
px: px,
projectNumber: px.projectNumber || 0
});
console.log(` 添加到分组: 当前分组有${group.items.length}个品项`);
// 记录第一个有 RemainingCount 的值作为该品项的剩余次数
if (group.remainingCount === null && px.RemainingCount !== undefined && px.RemainingCount !== null) {
group.remainingCount = px.RemainingCount;
console.log(` 设置剩余次数: ${px.RemainingCount}`);
}
}
console.log('分组结果:', Array.from(pxGroups.entries()).map(([key, group]) => ({
key: key,
品项名称: group.pxName,
剩余次数: group.remainingCount,
包含行数: group.items.length,
行号列表: group.items.map(item => item.index + 1),
次数列表: group.items.map(item => item.projectNumber)
})));
// 验证每个分组的次数总和
for (const [key, group] of pxGroups.entries()) {
console.log(`\n验证分组: key=${key}, 品项=${group.pxName}`);
// 只验证有 RemainingCount 的品项(修改时已存在的品项可能没有此字段)
if (group.remainingCount === null) {
console.log(` 跳过验证: 该品项没有剩余次数字段(可能是修改时已存在的品项)`);
continue;
}
// 计算该品项在所有行的次数总和
const totalNumber = group.items.reduce((sum, item) => sum + Number(item.projectNumber), 0);
const rowNumbers = group.items.map(item => item.index + 1).join('、');
console.log(` 次数总和: ${totalNumber} (行号: ${rowNumbers})`);
console.log(` 剩余次数: ${group.remainingCount}`);
console.log(` 验证结果: ${totalNumber > group.remainingCount ? '❌ 失败' : '✅ 通过'}`);
if (totalNumber > group.remainingCount) {
console.error(`验证失败: 品项"${group.pxName}"在第${rowNumbers}行的次数总和(${totalNumber})超过剩余次数(${group.remainingCount})`);
uni.showToast({
title: `品项"${group.pxName}"在第${rowNumbers}行的次数总和(${totalNumber})不能超过剩余次数(${group.remainingCount})`,
icon: 'none'
});
return;
}
}
console.log('========== 相同品项次数总和验证通过 ==========\n');
// 继续验证其他信息
for (let i = 0; i < this.pxList.length; i++) {
const px = this.pxList[i];
// 验证健康师(特殊处理:px为cell时,健康师和科技部老师至少选择一个)
const isSpecialPx = px.beautyType == 'cell';
// 过滤掉陪同健康师(isAccompanied为1的健康师不参与验证)
const normalJksList = px.lqXhJksyjList ? px.lqXhJksyjList.filter(jks => !jks.isAccompanied || jks.isAccompanied === 0) : [];
const hasJks = normalJksList.length > 0;
const hasKjb = px.lqXhKjbsyjList && px.lqXhKjbsyjList.length > 0;
if (isSpecialPx) {
// px为cell时,健康师和科技部老师至少选择一个
if (!hasJks && !hasKjb) {
uni.showToast({
// (px=${px.px})
title: `第${i + 1}个品项必须至少选择一个健康师或科技部老师`,
icon: 'none'
});
return;
}
} else {
// 其他品项必须选择健康师
if (!hasJks) {
uni.showToast({
title: `第${i + 1}个品项必须至少选择一个健康师`,
icon: 'none'
});
return;
}
}
// 计算健康师业绩总和(只有当选择了健康师时才进行验证)
let jksTotalYj = 0;
let jksTotalLaborCost = 0;
let jksTotalNumber = 0;
// 检查是否为医美品项
const isYimei = px.qt2 === '医美';
let tquJks = null; // T区健康师
let otherJksList = []; // 其他健康师
// 只有当选择了健康师时才进行健康师相关验证(排除陪同健康师)
if (hasJks) {
// 分离T区健康师和其他健康师(排除陪同健康师)
for (let j = 0; j < normalJksList.length; j++) {
const jks = normalJksList[j];
// 验证健康师是否选择
if (!jks.jks || !jks.jksxm) {
uni.showToast({
title: `第${i + 1}个品项的第${j + 1}个健康师必须选择`,
icon: 'none'
});
return;
}
// 验证健康师业绩必须填写(医美品项的非T区健康师除外)
const isTquJks = isYimei && jks.jksxm && jks.jksxm.includes('T区');
const isNonTquJks = isYimei && !isTquJks;
if (!isNonTquJks && (!jks.jksyj || jks.jksyj.trim() === "")) {
uni.showToast({
title: `第${i + 1}个品项的第${j + 1}个健康师业绩必须填写`,
icon: 'none'
});
return;
}
// 验证业绩为数字(医美品项的非T区健康师可以为空或0)
const yj = parseFloat(jks.jksyj || 0);
if (isNaN(yj) || yj < 0) {
uni.showToast({
title: `第${i + 1}个品项的第${j + 1}个健康师业绩必须为有效数字`,
icon: 'none'
});
return;
}
// 医美品项特殊处理:检查是否包含"T区"
if (isYimei && jks.jksxm && jks.jksxm.includes('T区')) {
tquJks = jks;
} else {
otherJksList.push(jks);
}
jksTotalYj += yj;
jksTotalLaborCost += parseFloat(jks.laborCost) || 0;
jksTotalNumber += parseInt(jks.kdpxNumber) || 0;
}
// 医美品项特殊验证
if (isYimei) {
const pxTotalAmount = px.pxjg * px.projectNumber;
// const pxTotalLaborCost = (px.sgf || 0) * px.projectNumber;
if (tquJks) {
// 有T区健康师的情况
// 验证T区健康师业绩等于品项总金额
const tquYj = parseFloat(tquJks.jksyj);
if (Math.abs(tquYj - pxTotalAmount) > 0.01) {
uni.showToast({
title: `第${i + 1}个品项是医美品项,T区健康师业绩(${tquYj.toFixed(2)})必须等于品项金额(${pxTotalAmount.toFixed(2)})`,
icon: 'none'
});
return;
}
// 验证T区健康师次数和手工费等于品项总次数和总手工费
// if (parseInt(tquJks.kdpxNumber) !== px.projectNumber) {
// uni.showToast({
// title: `第${i + 1}个品项是医美品项,T区健康师次数必须等于品项次数(${px.projectNumber})`,
// icon: 'none'
// });
// return;
// }
// if (Math.abs(parseFloat(tquJks.laborCost) - pxTotalLaborCost) > 0.01) {
// uni.showToast({
// title: `第${i + 1}个品项是医美品项,T区健康师手工费必须等于品项手工费(${pxTotalLaborCost.toFixed(2)})`,
// icon: 'none'
// });
// return;
// }
// 验证其他健康师业绩为0
for (let k = 0; k < otherJksList.length; k++) {
const otherJks = otherJksList[k];
const otherYj = parseFloat(otherJks.jksyj);
if (Math.abs(otherYj) > 0.01) {
uni.showToast({
title: `第${i + 1}个品项是医美品项,非T区健康师业绩必须为0`,
icon: 'none'
});
return;
}
}
// 验证其他健康师次数和手工费都为0
for (let k = 0; k < otherJksList.length; k++) {
const otherJks = otherJksList[k];
if (parseInt(otherJks.kdpxNumber) !== 0) {
uni.showToast({
title: `第${i + 1}个品项是医美品项,非T区健康师次数必须为0`,
icon: 'none'
});
return;
}
if (Math.abs(parseFloat(otherJks.laborCost)) > 0.01) {
uni.showToast({
title: `第${i + 1}个品项是医美品项,非T区健康师手工费必须为0`,
icon: 'none'
});
return;
}
}
} else {
// 没有T区健康师的情况,按普通品项验证
// if (Math.abs(jksTotalYj - pxTotalAmount) > 0.01) {
// uni.showToast({
// title: `第${i + 1}个品项的健康师业绩总和(${jksTotalYj.toFixed(2)})必须等于品项金额(${pxTotalAmount.toFixed(2)})`,
// icon: 'none'
// });
// return;
// }
}
} else {
// 非医美品项,按原逻辑验证
const pxTotalAmount = px.pxjg * px.projectNumber;
// 如果同时有健康师和科技部老师,健康师组和科技老师组都获得全部业绩;否则健康师获得全部业绩
const expectedJksAmount = pxTotalAmount; // 无论是否有科技部老师,健康师组都获得全部业绩
// if (Math.abs(jksTotalYj - expectedJksAmount) > 0.01) {
// uni.showToast({
// title: `第${i + 1}个品项的健康师业绩总和(${jksTotalYj.toFixed(2)})必须等于品项金额(${pxTotalAmount.toFixed(2)})`,
// icon: 'none'
// });
// return;
// }
}
} // 结束健康师验证逻辑
// 如果是科美品项,验证科技部老师(特殊处理:px为cell允许没有科技部老师)
if (px.qt2 === '科美') {
if (!isSpecialPx && (!px.lqXhKjbsyjList || px.lqXhKjbsyjList.length === 0)) {
uni.showToast({
title: `第${i + 1}个品项是科美品项,必须至少选择一个科技部老师`,
icon: 'none'
});
return;
}
// 只有当选择了科技部老师时才进行科技部老师相关验证
if (hasKjb) {
let kjbTotalYj = 0;
let kjbTotalLaborCost = 0;
let kjbTotalNumber = 0;
const pxTotalAmount = px.pxjg * px.projectNumber;
for (let k = 0; k < px.lqXhKjbsyjList.length; k++) {
const kjb = px.lqXhKjbsyjList[k];
// 验证科技部老师是否选择
if (!kjb.kjbls || !kjb.kjblsxm) {
uni.showToast({
title: `第${i + 1}个品项的第${k + 1}个科技部老师必须选择`,
icon: 'none'
});
return;
}
// 验证科技部老师业绩必须填写
if (!kjb.kjblsyj || kjb.kjblsyj.trim() === "") {
uni.showToast({
title: `第${i + 1}个品项的第${k + 1}个科技部老师业绩必须填写`,
icon: 'none'
});
return;
}
// 验证业绩为数字
const yj = parseFloat(kjb.kjblsyj);
if (isNaN(yj) || yj < 0) {
uni.showToast({
title: `第${i + 1}个品项的第${k + 1}个科技部老师业绩必须为有效数字`,
icon: 'none'
});
return;
}
kjbTotalYj += yj;
kjbTotalLaborCost += parseFloat(kjb.laborCost) || 0;
kjbTotalNumber += parseInt(kjb.hdpxNumber) || 0;
}
// 如果同时有健康师和科技部老师,科技老师组获得全部业绩;否则科技部老师获得全部业绩
const expectedKjbAmount = pxTotalAmount; // 无论是否有健康师,科技老师组都获得全部业绩
// if (Math.abs(kjbTotalYj - expectedKjbAmount) > 0.01) {
// uni.showToast({
// title: `第${i + 1}个品项的科技部老师业绩总和(${kjbTotalYj.toFixed(2)})必须等于品项金额(${pxTotalAmount.toFixed(2)})`,
// icon: 'none'
// });
// return;
// }
} // 结束科技部老师验证逻辑
} else if (hasKjb && hasJks) {
// 非科美品项,但如果同时有健康师和科技部老师,也需要验证均分
let kjbTotalYj = 0;
const pxTotalAmount = px.pxjg * px.projectNumber;
for (let k = 0; k < px.lqXhKjbsyjList.length; k++) {
const kjb = px.lqXhKjbsyjList[k];
// 验证科技部老师是否选择
if (!kjb.kjbls || !kjb.kjblsxm) {
uni.showToast({
title: `第${i + 1}个品项的第${k + 1}个科技部老师必须选择`,
icon: 'none'
});
return;
}
// 验证科技部老师业绩必须填写
if (!kjb.kjblsyj || kjb.kjblsyj.trim() === "") {
uni.showToast({
title: `第${i + 1}个品项的第${k + 1}个科技部老师业绩必须填写`,
icon: 'none'
});
return;
}
// 验证业绩为数字
const yj = parseFloat(kjb.kjblsyj);
if (isNaN(yj) || yj < 0) {
uni.showToast({
title: `第${i + 1}个品项的第${k + 1}个科技部老师业绩必须为有效数字`,
icon: 'none'
});
return;
}
kjbTotalYj += yj;
}
// 验证科技部老师业绩总和等于品项金额(全部各自组内均分)
const expectedKjbAmount = pxTotalAmount;
// if (Math.abs(kjbTotalYj - expectedKjbAmount) > 0.01) {
// uni.showToast({
// title: `第${i + 1}个品项的科技部老师业绩总和(${kjbTotalYj.toFixed(2)})必须等于品项金额(${pxTotalAmount.toFixed(2)})`,
// icon: 'none'
// });
// return;
// }
}
}
return true;
},
// 重新分配健康师的次数和手工费
redistributeJksNumbersAndLaborCost(pxIndex) {
const px = this.pxList[pxIndex];
console.log('px:', px);
if (!px.lqXhJksyjList || px.lqXhJksyjList.length === 0) {
return;
}
// 过滤掉陪同健康师(isAccompanied为1的健康师不参与计算)
const normalJksList = px.lqXhJksyjList.filter(jks => !jks.isAccompanied || jks.isAccompanied === 0);
if (normalJksList.length === 0) {
return;
}
// 如果是科美品项,健康师的次数和手工费都是0
if (px.qt2 === '科美' && px.beautyType != 'cell') {
normalJksList.forEach(jks => {
jks.kdpxNumber = 0;
jks.laborCost = 0;
});
return;
}
if (px.beautyType == 'cell' && px.lqXhKjbsyjList.length > 0) {
normalJksList.forEach(jks => {
jks.kdpxNumber = 0;
jks.laborCost = 0;
});
return;
}
// 计算品项总次数和总手工费
const totalNumber = px.projectNumber || 0;
const totalLaborCost = (px.healthCoachLaborCost || 0) * totalNumber;
// 健康师数量(排除陪同健康师)
const jksCount = normalJksList.length;
if (jksCount > 0) {
// 次数和手工费都小数均分,保留两位小数
const avgNumber = totalNumber / jksCount;
const avgLaborCost = totalLaborCost / jksCount;
normalJksList.forEach((jks, index) => {
// 次数:小数均分,保留两位小数
jks.kdpxNumber = parseFloat(avgNumber.toFixed(2));
// 手工费:小数均分,保留两位小数
jks.laborCost = avgLaborCost.toFixed(2);
});
}
this.$forceUpdate()
},
// 重新分配科技部老师的次数和手工费
redistributeKjbNumbersAndLaborCost(pxIndex) {
this.calculateTotalAmounts();
const px = this.pxList[pxIndex];
// 计算品项总次数和总手工费
const totalNumber = px.projectNumber || 0;
const totalLaborCost = (px.techBeautyLaborCost || 0) * totalNumber;
const totalLaborCostjks = (px.healthCoachLaborCost || 0) * totalNumber;
// 科技部老师数量
const kjbCount = px.lqXhKjbsyjList.length;
const jksCount = px.lqXhJksyjList.length;
if (!px.lqXhKjbsyjList || px.lqXhKjbsyjList.length === 0) {
const avgNumberjks = totalNumber / jksCount;
const avgLaborCostjks = totalLaborCostjks / jksCount;
px.lqXhJksyjList.forEach((jks, index) => {
jks.kdpxNumber = parseFloat(avgNumberjks.toFixed(2));
jks.laborCost = avgLaborCostjks.toFixed(2);
});
return;
}
if (kjbCount > 0) {
// 次数和手工费都小数均分,保留两位小数
const avgNumber = totalNumber / kjbCount;
const avgLaborCost = totalLaborCost / kjbCount;
px.lqXhKjbsyjList.forEach((kjb, index) => {
// 次数:小数均分,保留两位小数
kjb.hdpxNumber = parseFloat(avgNumber.toFixed(2));
// 手工费:小数均分,保留两位小数
kjb.laborCost = avgLaborCost.toFixed(2);
});
px.lqXhJksyjList.forEach(jks => {
jks.kdpxNumber = 0;
jks.laborCost = 0;
});
}
this.$forceUpdate()
},
// 医美品项自动选择T区健康师
handleYimeiJksAutoSelection(pxIndex) {
const px = this.pxList[pxIndex];
if (px.qt2 !== '医美') {
return;
}
// 检查健康师选项是否已加载
if (!this.jksOptions || this.jksOptions.length === 0) {
console.warn('健康师选项尚未加载,无法自动选择T区健康师');
return;
}
// 查找T区健康师
const tquJks = this.jksOptions.find(jks => jks.fullName && jks.fullName.includes('T区'));
if (tquJks) {
// 自动添加T区健康师
const pxTotalAmount = px.pxjg * px.projectNumber;
// const pxTotalLaborCost = (px.sgf || 0) * px.projectNumber;
const jksItem = {
"jks": tquJks.id,
"jksxm": tquJks.fullName,
"jkszh": tquJks.userName || tquJks.account || tquJks.id,
"jksyj": pxTotalAmount.toFixed(2), // 全部业绩
"jsjId": "",
// "laborCost": pxTotalLaborCost.toFixed(2), // 全部手工费
// "kdpxNumber": px.projectNumber, // 全部次数
"laborCost": 0, // 全部手工费
"kdpxNumber":0, // 全部次数
"kdpxid": px.BillingItemId || px.px,
"isAccompanied": 0, // 是否陪同,默认0
"accompaniedProjectNumber": 0 // 陪同次数,默认0
};
// 使用Vue.set确保响应式更新
this.$set(this.pxList[pxIndex], 'lqXhJksyjList', [jksItem]);
// 强制更新视图
this.$forceUpdate();
// 获取金三角信息
this.getJsjInfoByUserId(tquJks.id, (jsjId, jsjName) => {
jksItem.jsjId = jsjId;
});
} else {
console.warn('未找到T区健康师,请确保健康师列表中包含名称带有"T区"的健康师');
}
},
// 医美品项健康师业绩自动分配
handleYimeiJksDistribution(pxIndex) {
const px = this.pxList[pxIndex];
if (px.qt2 !== '医美' || !px.lqXhJksyjList || px.lqXhJksyjList.length === 0) {
return;
}
const pxTotalAmount = px.pxjg * px.projectNumber;
const pxTotalLaborCost = (px.sgf || 0) * px.projectNumber;
// 过滤掉陪同健康师(isAccompanied为1的健康师不参与计算)
const normalJksList = px.lqXhJksyjList.filter(jks => !jks.isAccompanied || jks.isAccompanied === 0);
if (normalJksList.length === 0) {
return;
}
// 分离T区健康师和其他健康师(排除陪同健康师)
let tquJks = null;
let otherJksList = [];
for (let i = 0; i < normalJksList.length; i++) {
const jks = normalJksList[i];
if (jks.jksxm && jks.jksxm.includes('T区')) {
tquJks = jks;
} else {
otherJksList.push(jks);
}
}
if (tquJks) {
// 有T区健康师的情况
// T区健康师获得全部业绩、次数和手工费
tquJks.jksyj = pxTotalAmount.toFixed(2);
tquJks.kdpxNumber = px.projectNumber;
tquJks.laborCost = pxTotalLaborCost.toFixed(2);
// 其他健康师业绩、次数和手工费都为0
if (otherJksList.length > 0) {
for (let i = 0; i < otherJksList.length; i++) {
const otherJks = otherJksList[i];
otherJks.jksyj = 0;
otherJks.kdpxNumber = 0;
otherJks.laborCost = 0;
}
}
} else {
// 没有T区健康师的情况,按普通品项重新分配
this.redistributeJksNumbersAndLaborCost(pxIndex);
}
},
// 根据用户ID获取金三角信息
getJsjInfoByUserId(userId, callback) {
// let date = new Date();
// let formattedDate = this.formatDate(date, 'yyyy-MM-dd HH:mm:ss');
let formattedDate = this.formData.hksj
console.log('formattedDate:', formattedDate);
memberApi.getJsjInfoByUserMonth(userId, formattedDate).then((res) => {
if (res.code === 200 && res.data) {
const jsjId = res.data.jsjId;
const jsjName = res.data.jsjName;
if (callback) {
callback(jsjId, jsjName);
}
} else {
if (callback) {
callback('');
}
}
}).catch((err) => {
console.error('获取金三角信息出错:', err);
if (callback) {
callback('');
}
});
},
// 更新医美品项T区健康师业绩分配
updateYimeiJksDistribution(pxIndex) {
const px = this.pxList[pxIndex];
if (px.qt2 !== '医美' || !px.lqXhJksyjList || px.lqXhJksyjList.length === 0) {
return;
}
const pxTotalAmount = px.pxjg * px.projectNumber;
// const pxTotalLaborCost = (px.sgf || 0) * px.projectNumber;
// 过滤掉陪同健康师(isAccompanied为1的健康师不参与计算)
const normalJksList = px.lqXhJksyjList.filter(jks => !jks.isAccompanied || jks.isAccompanied === 0);
// 查找T区健康师(排除陪同健康师)
const tquJks = normalJksList.find(jks => jks.jksxm && jks.jksxm.includes('T区'));
if (tquJks) {
// 更新T区健康师的业绩、次数和手工费
tquJks.jksyj = pxTotalAmount.toFixed(2);
// tquJks.kdpxNumber = px.projectNumber;
// tquJks.laborCost = pxTotalLaborCost.toFixed(2);
tquJks.kdpxNumber = 0;
tquJks.laborCost = 0;
} else {
// 如果没有T区健康师,重新分配所有健康师的次数和手工费
this.redistributeJksNumbersAndLaborCost(pxIndex);
}
},
// 业绩均分:当同时有健康师和科技部老师时,自动均分业绩
distributePerformance(pxIndex) {
const px = this.pxList[pxIndex];
if (!px || !px.px || !px.pxmc) {
return;
}
// 医美品项不处理均分
if (px.qt2 === '医美') {
return;
}
// 过滤掉陪同健康师(isAccompanied为1的健康师不参与计算)
const normalJksList = px.lqXhJksyjList ? px.lqXhJksyjList.filter(jks => !jks.isAccompanied || jks.isAccompanied === 0) : [];
const hasJks = normalJksList.length > 0;
const hasKjb = px.lqXhKjbsyjList && px.lqXhKjbsyjList.length > 0;
const pxTotalAmount = px.pxjg * px.projectNumber;
// 如果同时有健康师和科技部老师,全部各自组内均分
// 健康师组:总业绩全部在健康师之间均分
// 科技老师组:总业绩全部在科技老师之间均分
if (hasJks && hasKjb) {
// 健康师组:总业绩全部,在健康师之间均分(排除陪同健康师)
const jksCount = normalJksList.length;
const avgJksAmount = pxTotalAmount / jksCount;
normalJksList.forEach((jks, index) => {
// 转为字符串格式,避免验证时的类型问题
jks.jksyj = avgJksAmount.toFixed(2);
});
// 科技老师组:总业绩全部,在科技老师之间均分
const kjbCount = px.lqXhKjbsyjList.length;
const avgKjbAmount = pxTotalAmount / kjbCount;
px.lqXhKjbsyjList.forEach((kjb, index) => {
// 转为字符串格式,避免验证时的类型问题
kjb.kjblsyj = avgKjbAmount.toFixed(2);
});
} else if (hasJks && !hasKjb) {
// 只有健康师,健康师组获得全部业绩,在健康师之间均分(排除陪同健康师)
const jksCount = normalJksList.length;
const avgJksAmount = pxTotalAmount / jksCount;
normalJksList.forEach((jks, index) => {
jks.jksyj = avgJksAmount.toFixed(2);
});
} else if (!hasJks && hasKjb) {
// 只有科技部老师,科技老师组获得全部业绩,在科技老师之间均分
const kjbCount = px.lqXhKjbsyjList.length;
const avgKjbAmount = pxTotalAmount / kjbCount;
px.lqXhKjbsyjList.forEach((kjb, index) => {
kjb.kjblsyj = avgKjbAmount.toFixed(2);
});
}
this.$forceUpdate();
},
// 格式化日期方法
formatDate(date, format) {
if (!date) return '';
const d = new Date(date);
const year = d.getFullYear();
const month = String(d.getMonth() + 1).padStart(2, '0');
const day = String(d.getDate()).padStart(2, '0');
const hours = String(d.getHours()).padStart(2, '0');
const minutes = String(d.getMinutes()).padStart(2, '0');
const seconds = String(d.getSeconds()).padStart(2, '0');
return format
.replace('yyyy', year)
.replace('MM', month)
.replace('dd', day)
.replace('HH', hours)
.replace('mm', minutes)
.replace('ss', seconds);
},
// 清空表单
clearForm() {
this.formData = {
hy: '',
hyzh: '',
hymc: '',
gklx: '',
hksj: this.utils.gettime().substring(0, 10),
xfje: '',
sgfy: '',
isOvertime: false,
overtimeCoefficient: 0
};
this.selectedValues = {
hy: null
};
this.pxList = [];
this.memberSignature = '';
if (this.$refs.signaturePad) {
this.$refs.signaturePad.clearSignature();
}
this.addPxRow();
}
}
}
</script>
<style lang="scss" scoped>
.member-consume-container {
min-height: 100vh;
background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
padding: 20rpx;
}
.header {
background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%);
border-radius: 36rpx;
padding: 48rpx;
text-align: center;
margin-bottom: 48rpx;
box-shadow: 0 8rpx 48rpx 0 rgba(76, 175, 80, 0.10);
}
.header-title {
color: #fff;
font-size: 36rpx;
font-weight: bold;
letter-spacing: 4rpx;
}
.form-card {
background: #fff;
border-radius: 36rpx;
box-shadow: 0 8rpx 48rpx 0 rgba(76, 175, 80, 0.10);
border: 3rpx solid #c8e6c9;
overflow: hidden;
}
.form-content {
padding: 48rpx;
}
.form-group {
margin-bottom: 40rpx;
}
.form-group:last-child {
margin-bottom: 0;
}
.form-label {
display: block;
margin-bottom: 16rpx;
font-weight: bold;
color: #388e3c;
letter-spacing: 2rpx;
font-size: 28rpx;
}
.custom-select {
position: relative;
background: #f9fff9;
border: 3rpx solid #c8e6c9;
border-radius: 20rpx;
padding: 28rpx 24rpx;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
z-index: 10;
min-height: 80rpx;
height: 80rpx;
box-sizing: border-box;
}
.select-text {
font-size: 28rpx;
color: #2e7d32;
flex: 1;
}
.select-arrow {
position: absolute;
right: 24rpx;
top: 50%;
transform: translateY(-50%);
color: #6a9c6a;
font-size: 24rpx;
pointer-events: none;
}
.input-wrapper {
position: relative;
}
input {
width: 100%;
padding: 0 24rpx;
border: 3rpx solid #c8e6c9;
border-radius: 20rpx;
font-size: 28rpx;
background: #f9fff9;
color: #2e7d32;
box-sizing: border-box;
min-height: 80rpx;
height: 80rpx;
// box-sizing: border-box;
}
input:focus {
outline: none;
border-color: #43a047;
box-shadow: 0 0 0 6rpx rgba(76, 175, 80, 0.1);
background: #fff;
}
input:disabled {
background: #f5f5f5;
color: #666;
cursor: not-allowed;
}
/* 加班相关样式 */
.checkbox-wrapper {
display: flex;
align-items: center;
margin-bottom: 16rpx;
}
.checkbox-label {
margin-left: 12rpx;
font-size: 28rpx;
color: #2e7d32;
}
.overtime-select-wrapper {
margin-top: 16rpx;
}
/* 品项相关样式 */
.px-container {
margin-bottom: 32rpx;
}
.px-row {
display: flex;
gap: 24rpx;
margin-bottom: 24rpx;
align-items: center;
flex-wrap: wrap;
padding: 32rpx;
border: 2rpx solid #e0e0e0;
border-radius: 20rpx;
background: #fafafa;
}
.px-select {
flex: 2;
padding: 24rpx;
border: 3rpx solid #c8e6c9;
border-radius: 20rpx;
font-size: 28rpx;
background: #f9fff9;
color: #2e7d32;
cursor: pointer;
position: relative;
min-width: 400rpx;
text-align: center;
}
.px-select:focus {
outline: none;
border-color: #43a047;
box-shadow: 0 0 0 6rpx rgba(76, 175, 80, 0.1);
background: #fff;
}
.px-info {
flex: 2;
padding: 24rpx;
border: 3rpx solid #e0e0e0;
border-radius: 20rpx;
font-size: 24rpx;
background: #f8f9fa;
color: #495057;
min-width: 400rpx;
}
.px-info-title {
font-weight: bold;
color: #2e7d32;
margin-bottom: 12rpx;
font-size: 28rpx;
}
.px-info-details {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8rpx;
font-size: 24rpx;
}
.px-info-item {
display: flex;
align-items: center;
}
.px-info-label {
color: #6c757d;
font-weight: 500;
margin-right: 20rpx;
}
.px-info-value {
color: #495057;
font-weight: 600;
}
.px-number {
flex: 1;
// padding: 24rpx;
border: 3rpx solid #c8e6c9;
border-radius: 20rpx;
font-size: 28rpx;
background: #f9fff9;
color: #2e7d32;
min-width: 160rpx;
}
.px-delete {
padding: 24rpx 32rpx;
// border: 3rpx solid #ddd;
border-radius: 20rpx;
background: #f5f5f5;
color: #666;
cursor: pointer;
font-size: 24rpx;
transition: all 0.2s ease;
}
.px-delete:hover {
background: #e8e8e8;
border-color: #ccc;
}
.btn-add-px {
width: 100%;
padding: 0 40rpx;
border: 3rpx solid #43a047;
border-radius: 20rpx;
background: #e8f5e9;
color: #2e7d32;
font-size: 28rpx;
font-weight: bold;
}
/* 品项第三行样式(健康师和科技部老师选择) */
.px-row-third {
display: block;
margin-top: 16rpx;
width: 100%;
}
.px-staff-section {
width: 100%;
margin-bottom: 24rpx;
}
.px-staff-section:last-child {
margin-bottom: 0;
}
.px-jks-select,
.px-kjb-select {
padding: 16rpx 24rpx;
border: 3rpx solid #c8e6c9;
border-radius: 16rpx;
background: #f9fff9;
color: #2e7d32;
cursor: pointer;
font-size: 24rpx;
text-align: center;
transition: all 0.2s ease;
}
.px-jks-select:hover,
.px-kjb-select:hover {
background: #e8f5e9;
border-color: #43a047;
}
.px-jks-list,
.px-kjb-list {
margin-top: 16rpx;
border: 2rpx solid #e0e0e0;
border-radius: 12rpx;
background: #fff;
}
.px-staff-item {
padding: 16rpx;
border-bottom: 2rpx solid #f0f0f0;
font-size: 24rpx;
}
.px-staff-item:last-child {
border-bottom: none;
}
.px-staff-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12rpx;
}
.px-staff-name {
flex: 1;
color: #2e7d32;
font-weight: bold;
}
.px-staff-remove {
background: #f44336;
color: #fff;
border: none;
border-radius: 8rpx;
padding: 4rpx 12rpx;
font-size: 20rpx;
cursor: pointer;
}
.px-staff-remove:hover {
background: #d32f2f;
}
.px-staff-fields {
display: flex;
flex-direction: column;
gap: 16rpx;
}
.px-staff-row {
display: flex;
gap: 16rpx;
align-items: center;
}
.px-staff-field {
flex: 1;
min-width: 200rpx;
}
.px-staff-field input {
width: 100%;
// padding: 12rpx 16rpx;
border: 2rpx solid #ddd;
border-radius: 8rpx;
font-size: 24rpx;
background: #f9f9f9;
}
.px-staff-field input:focus {
outline: none;
border-color: #43a047;
background: #fff;
}
.px-staff-field-label {
display: block;
font-size: 20rpx;
color: #666;
margin-bottom: 8rpx;
font-weight: 500;
}
.btn-group {
display: flex;
gap: 24rpx;
margin-top: 48rpx;
}
.btn {
flex: 1;
padding: 10rpx 40rpx;
border: none;
border-radius: 20rpx;
font-size: 28rpx;
font-weight: bold;
cursor: pointer;
transition: all 0.2s ease;
letter-spacing: 2rpx;
}
.btn-primary {
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
color: #fff;
box-shadow: 0 4rpx 16rpx rgba(67, 233, 123, 0.3);
}
.btn-primary:hover {
box-shadow: 0 8rpx 32rpx rgba(67, 233, 123, 0.4);
transform: translateY(-2rpx);
}
/* 签字相关样式 */
.signature-preview {
margin-top: 24rpx;
padding: 24rpx;
background: #f9fff9;
border: 2rpx solid #c8e6c9;
border-radius: 16rpx;
}
.preview-label {
display: block;
font-size: 26rpx;
color: #2e7d32;
font-weight: bold;
margin-bottom: 16rpx;
}
.signature-image {
width: 100%;
max-width: 300rpx;
height: 120rpx;
border: 2rpx solid #e0e0e0;
border-radius: 12rpx;
background: #fff;
margin-bottom: 16rpx;
}
.btn-clear-signature {
padding: 12rpx 24rpx;
background: #f5f5f5;
color: #666;
border: 2rpx solid #ddd;
border-radius: 12rpx;
font-size: 24rpx;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-clear-signature:hover {
background: #e0e0e0;
}
/* 全屏签字弹窗样式 */
.signature-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.signature-modal {
width: 100%;
background: #fff;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.signature-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30rpx 40rpx;
background: #f8f9fa;
border-bottom: 2rpx solid #e9ecef;
}
.signature-modal-title {
font-size: 32rpx;
font-weight: bold;
color: #2e7d32;
}
.btn-close-modal {
width: 60rpx;
height: 60rpx;
background: #f5f5f5;
border: none;
border-radius: 50%;
font-size: 36rpx;
color: #666;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
margin: 0;
}
.btn-close-modal:hover {
background: #e0e0e0;
color: #333;
}
.signature-modal-content {
background: #fff;
flex: 1;
width: 100%;
}
/* 全屏模式下SignaturePad组件样式调整 */
.signature-modal-content .signature-container {
height: 100%;
border: none;
border-radius: 0;
box-shadow: none;
}
.signature-modal-content .signature-header {
padding: 20rpx 30rpx;
background: #f8f9fa;
border-bottom: 2rpx solid #e9ecef;
}
.signature-modal-content .signature-title {
font-size: 32rpx;
font-weight: bold;
color: #2e7d32;
}
.signature-modal-content .btn-clear,
.signature-modal-content .btn-confirm {
padding: 16rpx 32rpx;
font-size: 28rpx;
font-weight: 500;
border-radius: 12rpx;
}
.signature-modal-content .btn-clear {
background: #f5f5f5;
color: #666;
border: 2rpx solid #ddd;
}
.signature-modal-content .btn-clear:hover {
background: #e0e0e0;
color: #333;
}
.signature-modal-content .btn-confirm {
background: #2e7d32;
color: #fff;
border: none;
}
.signature-modal-content .btn-confirm:hover {
background: #1b5e20;
transform: translateY(-2rpx);
}
.signature-modal-content .signature-pad {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 20rpx;
}
.signature-modal-content .signature-tips {
padding: 20rpx;
text-align: center;
background: #f8f9fa;
border-top: 2rpx solid #e9ecef;
}
.signature-modal-content .tips-text {
font-size: 24rpx;
color: #666;
}
/* 签字占位符样式 */
.signature-placeholder {
display: flex;
justify-content: center;
align-items: center;
min-height: 200rpx;
border: 2rpx dashed #c8e6c9;
border-radius: 16rpx;
background: #f9fff9;
}
.btn-signature-placeholder {
background: #2e7d32;
color: #fff;
border: none;
border-radius: 16rpx;
font-size: 28rpx;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4rpx 16rpx rgba(46, 125, 50, 0.3);
}
.btn-signature-placeholder:hover {
background: #1b5e20;
transform: translateY(-2rpx);
box-shadow: 0 8rpx 32rpx rgba(46, 125, 50, 0.4);
}
.signature-placeholder-text {
color: #fff;
}
/* 签字操作按钮样式 */
.signature-actions {
display: flex;
gap: 16rpx;
margin-top: 16rpx;
}
.btn-re-signature {
flex: 1;
padding: 12rpx 24rpx;
background: #2e7d32;
color: #fff;
border: none;
border-radius: 12rpx;
font-size: 24rpx;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-re-signature:hover {
background: #1b5e20;
}
@media (max-width: 750rpx) {
// .form-content {
// padding: 40rpx;
// }
// .px-row {
// flex-direction: column;
// }
// .px-select,
// .px-info,
// .px-number {
// min-width: 100%;
// }
// .signature-preview {
// padding: 20rpx;
// }
// .preview-label {
// font-size: 24rpx;
// }
// .signature-image {
// max-width: 250rpx;
// height: 100rpx;
// }
// .btn-clear-signature {
// padding: 10rpx 20rpx;
// font-size: 22rpx;
// }
}
</style>