index.vue
42.3 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
<template>
<div class="NCC-common-layout">
<div class="NCC-common-layout-center">
<el-row class="NCC-common-search-box" :gutter="16">
<el-form @submit.native.prevent>
<!-- <el-col :span="6">
<el-form-item label="开单会员">
<el-select v-model="query.kdhy" placeholder="开单会员" clearable >
<el-option v-for="(item, index) in kdhyOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col> -->
<el-col :span="6">
<el-form-item label="开单日期">
<el-date-picker v-model="query.kdrq" type="daterange" value-format="timestamp" format="yyyy-MM-dd"
start-placeholder="开始日期" end-placeholder="结束日期">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="开单会员">
<!-- <el-input v-model="query.kdhyc" placeholder="开单会员" clearable /> -->
<el-select
:style='{"width":"100%"}'
v-model="query.kdhy"
filterable
remote
clearable
reserve-keyword
placeholder="请输入关键词"
:remote-method="remoteMethod"
:loading="kdhyLoading">
<el-option
v-for="item in kdhyOptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="单据门店">
<el-select v-model="query.djmd" placeholder="单据门店" clearable @change="handleDjmdChange">
<el-option v-for="(item, index) in djmdOptions" :key="index" :label="item.fullName"
:value="item.id" />
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="6">
<el-form-item label="会员手机号">
<el-input v-model="query.kdhysjh" placeholder="会员手机号" clearable />
</el-form-item>
</el-col> -->
<template v-if="showAll">
<el-col :span="6">
<el-form-item label="健康师">
<el-select v-model="query.jksId" placeholder="健康师" clearable filterable>
<el-option v-for="(item, index) in jksOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="科技老师">
<el-select v-model="query.kjblsId" placeholder="科技老师" clearable filterable>
<el-option v-for="(item, index) in kjbOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="合作机构">
<el-select v-model="query.hgjg" placeholder="合作机构" clearable>
<el-option v-for="(item, index) in hgjgOptions" :key="index" :label="item.fullName"
:value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="整单业绩">
<el-input v-model="query.zdyj" placeholder="整单业绩" clearable />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="实付业绩">
<el-input v-model="query.sfyj" placeholder="实付业绩" clearable />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="欠款">
<el-input v-model="query.qk" placeholder="欠款" clearable />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="付款方式">
<el-select v-model="query.fkfs" placeholder="付款方式" clearable>
<el-option v-for="(item, index) in fkfsOptions" :key="index" :label="item.fullName"
:value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="结算机构">
<el-select v-model="query.fkyy" placeholder="结算机构" clearable>
<el-option v-for="(item, index) in fkyyOptions" :key="index" :label="item.fullName"
:value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="是否首开订单">
<el-select v-model="query.sfskdd" placeholder="是否首开订单">
<el-option v-for="(item, index) in sfskddOptions" :key="index" :label="item.fullName"
:value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="是否作废">
<el-select v-model="query.isEffective" placeholder="是否作废">
<el-option label="正常" value="1"></el-option>
<el-option label="作废" value="-1"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="ID">
<el-input v-model="query.id" placeholder="ID" clearable />
</el-form-item>
</el-col>
</template>
<el-col :span="6">
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
<el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
<el-button type="text" icon="el-icon-arrow-down" @click="showAll = true" v-if="!showAll">展开</el-button>
<el-button type="text" icon="el-icon-arrow-up" @click="showAll = false" v-else>收起</el-button>
</el-form-item>
</el-col>
</el-form>
</el-row>
<div class="NCC-common-layout-main NCC-flex-main">
<div class="NCC-common-head">
<!-- <div>
<el-button type="primary" icon="el-icon-plus" @click="addOrUpdateHandle()">新增</el-button>
<el-button type="success" icon="el-icon-user" @click="openMemberCreateDialog()">建档</el-button>
<el-button type="text" icon="el-icon-download" @click="exportData()">导出</el-button>
<el-button type="text" icon="el-icon-delete" @click="handleBatchRemoveDel()">批量删除</el-button>
</div> -->
<div class="NCC-common-head-right">
<el-tooltip effect="dark" content="刷新" placement="top">
<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="reset()" />
</el-tooltip>
<screenfull isContainer />
</div>
</div>
<NCC-table v-loading="listLoading" :data="list" has-c @selection-change="handleSelectionChange"
:header-cell-style="{ background: '#f5f7fa', color: '#606266' }">
<el-table-column prop="id" label="ID" width="150" align="left" />
<!-- 展开行 -->
<el-table-column type="expand" width="50">
<template slot-scope="props">
<div class="expand-container" v-if="props.row.ItemDetails && props.row.ItemDetails.length > 0">
<div class="expand-title">
<i class="el-icon-goods"></i>
项目明细
</div>
<el-table :data="props.row.ItemDetails" border size="small" :header-cell-style="{ background: '#f5f7fa', color: '#606266' }">
<el-table-column prop="pxmc" label="项目名称" align="left" width="180">
<template slot-scope="scope">
<div class="item-name">
<i class="el-icon-goods item-icon"></i>
<span>{{ scope.row.pxmc || '无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column prop="px" label="项目编号" align="left" width="120">
<template slot-scope="scope">
<span>{{ scope.row.px || '无' }}</span>
</template>
</el-table-column>
<el-table-column prop="pxjg" label="项目价格" align="right" width="120">
<template slot-scope="scope">
<span class="amount-value">¥{{ formatMoney(scope.row.pxjg) }}</span>
</template>
</el-table-column>
<el-table-column prop="projectNumber" label="项目次数" align="right" width="100">
<template slot-scope="scope">
<span>{{ scope.row.projectNumber || 0 }}</span>
</template>
</el-table-column>
<el-table-column prop="totalPrice" label="总价" align="right" width="120">
<template slot-scope="scope">
<span class="amount-value">¥{{ formatMoney(scope.row.totalPrice) }}</span>
</template>
</el-table-column>
<el-table-column prop="actualPrice" label="实付金额" align="right" width="120">
<template slot-scope="scope">
<span class="amount-paid">¥{{ formatMoney(scope.row.actualPrice) }}</span>
</template>
</el-table-column>
<el-table-column prop="sourceType" label="来源类型" align="left" width="100">
<template slot-scope="scope">
<el-tag size="small" type="info">
{{ scope.row.sourceType || '无' }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="remark" label="备注" align="left" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.remark || '无' }}</span>
</template>
</el-table-column>
</el-table>
</div>
<div class="expand-empty" v-else>
<i class="el-icon-info"></i>
<span>暂无项目明细</span>
</div>
</template>
</el-table-column>
<!-- 开单编号 -->
<el-table-column label="开单编号" width="180" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="order-info">
<i class="el-icon-document order-icon"></i>
<span class="text-nowrap">{{ scope.row.id || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 开单会员 -->
<!-- <el-table-column label="开单会员" width="100" align="center">
<template slot-scope="scope">
<div class="member-info">
<i class="el-icon-user member-icon"></i>
<span class="text-nowrap">{{ scope.row.kdhy | dynamicText(kdhyOptions) || '无' }}</span>
</div>
</template>
</el-table-column> -->
<!-- 开单会员名称 -->
<el-table-column label="开单会员" width="100" align="center">
<template slot-scope="scope">
<div class="member-name">
<i class="el-icon-user-solid member-name-icon"></i>
<span class="text-nowrap">{{ scope.row.kdhyc || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 会员手机号 -->
<el-table-column label="会员手机号" width="120" align="center">
<template slot-scope="scope">
<div class="phone-info">
<i class="el-icon-phone phone-icon"></i>
<span class="text-nowrap">{{ scope.row.kdhysjh || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 单据门店 -->
<el-table-column label="单据门店" width="120" align="center">
<template slot-scope="scope">
<div class="store-info">
<i class="el-icon-office-building store-icon"></i>
<span class="text-nowrap">{{ scope.row.djmd | dynamicText(djmdOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 金三角 -->
<el-table-column label="金三角" width="120" align="center">
<template slot-scope="scope">
<div class="jsj-info">
<i class="el-icon-star-on jsj-icon"></i>
<span class="text-nowrap">{{ scope.row.jsj | dynamicText(jsjOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 开单日期 -->
<!-- <el-table-column label="开单日期" width="120" align="center">
<template slot-scope="scope">
<div class="date-info">
<i class="el-icon-date date-icon"></i>
<span class="text-nowrap">{{ formatDate(scope.row.kdrq) }}</span>
</div>
</template>
</el-table-column> -->
<el-table-column prop="kdrq" label="开单日期" width="140" align="left" :formatter="ncc.tableDateFormat" />
<!-- 顾客类型 -->
<el-table-column label="顾客类型" width="120" align="center">
<template slot-scope="scope">
<div class="customer-type-info">
<i class="el-icon-user customer-type-icon"></i>
<span class="text-nowrap">{{ scope.row.gjlx }}</span>
</div>
</template>
</el-table-column>
<!-- 整单业绩 -->
<el-table-column label="整单业绩" width="120" align="center">
<template slot-scope="scope">
<div class="amount-info">
<i class="el-icon-money amount-icon"></i>
<span class="text-nowrap">{{ scope.row.zdyj || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 实付业绩 -->
<el-table-column label="实付业绩" width="120" align="center">
<template slot-scope="scope">
<div class="paid-amount-info">
<i class="el-icon-coin paid-amount-icon"></i>
<span class="text-nowrap">{{ scope.row.sfyj || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 储扣金额 -->
<el-table-column label="储扣金额" width="300" align="center">
<template slot-scope="scope">
<div class="paid-amount-info">
<i class="el-icon-money amount-icon"></i>
<span class="text-nowrap">{{ scope.row.deductAmount || '无' }}</span>
<!-- -
<span class="text-nowrap">{{ (Number(scope.row.zdyj)-Number(scope.row.sfyj) - Number(scope.row.qk)) || '无' }}</span> -->
</div>
</template>
</el-table-column>
<!-- 欠款 -->
<el-table-column label="欠款" width="100" align="center">
<template slot-scope="scope">
<div class="debt-info">
<i class="el-icon-warning debt-icon"></i>
<span class="text-nowrap">{{ scope.row.qk || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 储扣方式 -->
<!-- <el-table-column label="储扣方式" width="120" align="center">
<template slot-scope="scope">
<div class="storage-info">
<i class="el-icon-coin storage-icon"></i>
<span class="text-nowrap">{{ scope.row.ckfs | dynamicText(ckfsOptions) || '无' }}</span>
</div>
</template>
</el-table-column> -->
<!-- 储扣明细 -->
<!-- <el-table-column label="储扣明细" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="storage-detail-info">
<i class="el-icon-document storage-detail-icon"></i>
<span class="text-nowrap">{{ scope.row.ckmx || '无' }}</span>
</div>
</template>
</el-table-column> -->
<!-- 付款方式 -->
<el-table-column label="付款方式" width="120" align="center">
<template slot-scope="scope">
<div class="payment-info">
<i class="el-icon-credit-card payment-icon"></i>
<span class="text-nowrap">{{ scope.row.fkfs | dynamicText(fkfsOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 结算机构 -->
<el-table-column label="结算机构" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="hospital-info">
<i class="el-icon-office-building hospital-icon"></i>
<span class="text-nowrap">{{ scope.row.fkyy | dynamicText(fkyyOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 合作机构 -->
<el-table-column label="合作机构" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="cooperation-info">
<i class="el-icon-office-building cooperation-icon"></i>
<span class="text-nowrap">{{ scope.row.hgjg | dynamicText(hgjgOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 付款判断 -->
<el-table-column label="付款判断" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="payment-judge-info">
<i class="el-icon-check payment-judge-icon"></i>
<span class="text-nowrap">{{ scope.row.fkpd || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 客户来源 -->
<el-table-column label="客户来源" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="source-info">
<i class="el-icon-connection source-icon"></i>
<span class="text-nowrap">{{ scope.row.khly | dynamicText(khlyOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 推荐人 -->
<el-table-column label="推荐人" width="100" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="referrer-info">
<i class="el-icon-user referrer-icon"></i>
<span class="text-nowrap">{{ scope.row.tjr || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 是否首开订单 -->
<el-table-column label="是否首开订单" width="140" align="center">
<template slot-scope="scope">
<div class="first-order-info">
<i class="el-icon-star-on first-order-icon"></i>
<span class="text-nowrap">{{ scope.row.sfskdd | dynamicText(sfskddOptions) || '无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column prop="appointmentId" label="关联预约号" align="left" width="180">
<template slot-scope="scope">
<el-link v-if="scope.row.appointmentId" type="primary" @click="goToYyjl(scope.row.appointmentId)" :underline="false">
{{ scope.row.appointmentId }}
</el-link>
<span v-else>-</span>
</template>
</el-table-column>
<!-- 操作人 -->
<el-table-column label="操作人" width="180" align="center" >
<template slot-scope="scope">
<div class="referrer-info">
<i class="el-icon-user referrer-icon"></i>
<span class="text-nowrap">{{ scope.row.createUserName?scope.row.createUserName+'('+scope.row.createUser+')':'无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="是否作废" width="140" align="center">
<template slot-scope="scope">
<div class="first-order-info">
<i class="el-icon-star-on first-order-icon"></i>
<span class="text-nowrap">{{ scope.row.isEffective == '1'?'正常':'作废'}}</span>
</div>
</template>
</el-table-column>
<!-- 简介 -->
<el-table-column label="简介" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="intro-info">
<i class="el-icon-document intro-icon"></i>
<span class="text-nowrap">{{ scope.row.jj || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 备注 -->
<el-table-column label="备注" show-overflow-tooltip v-if="isshow">
<template slot-scope="scope">
<div class="remark-info">
<i class="el-icon-document remark-icon"></i>
<span class="text-nowrap">{{ scope.row.bz || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 健康师业绩 -->
<el-table-column label="健康师业绩" width="130" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="jks-amount-info">
<i class="el-icon-medicine-box jks-amount-icon"></i>
<span class="text-nowrap">{{ scope.row.jksyj || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 科技部老师业绩 -->
<el-table-column label="科技部老师业绩" width="150" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="kjb-amount-info">
<i class="el-icon-cpu kjb-amount-icon"></i>
<span class="text-nowrap">{{ scope.row.kjblsyj || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 品项信息 -->
<el-table-column label="品项信息" width="120" align="center" v-if="isshow">
<template slot-scope="scope">
<div class="product-info">
<i class="el-icon-goods product-icon"></i>
<span class="text-nowrap">{{ scope.row.pxxx || '无' }}</span>
</div>
</template>
</el-table-column>
<!-- 操作 -->
<el-table-column label="操作" width="180" align="left" fixed="right">
<template slot-scope="scope">
<div class="action-buttons">
<el-button
v-has="'btn_edit'"
type="text"
icon="el-icon-edit"
@click="addOrUpdateHandle(scope.row.id)"
class="edit-btn"
>
编辑
</el-button>
<el-button type="text" @click="detailHandle(scope.row.id)" class="edit-btn">
详情
</el-button>
<el-button
v-has="'btn_remove'"
type="text"
icon="el-icon-delete"
@click="handleDel(scope.row.id)"
class="delete-btn"
>
删除
</el-button>
</div>
</template>
</el-table-column>
</NCC-table>
<pagination :total="total" :page.sync="listQuery.currentPage" :limit.sync="listQuery.pageSize"
@pagination="initData" />
</div>
</div>
<NCC-Form v-if="formVisible" ref="NCCForm" @refresh="refresh" />
<ExportBox v-if="exportBoxVisible" ref="ExportBox" @download="download" />
<LqKdKdjlbDetail ref="detailDialog" />
<MemberCreateDialog :visible.sync="memberCreateVisible" @success="handleMemberCreateSuccess" />
</div>
</template>
<script>
import request from '@/utils/request'
import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
import NCCForm from './Form'
import ExportBox from './ExportBox'
import LqKdKdjlbDetail from './detail'
import MemberCreateDialog from './MemberCreateDialog'
import { previewDataInterface } from '@/api/systemData/dataInterface'
import { number } from 'echarts/lib/export'
export default {
components: { NCCForm, ExportBox, MemberCreateDialog, LqKdKdjlbDetail },
data() {
return {
kdhyLoading: false,
isshow: false,
showAll: false,
query: {
id: undefined,
kdhy: undefined,
kdhyc: undefined,
kdhysjh: undefined,
djmd: undefined,
jsj: undefined,
kdrq: undefined,
gjlx: undefined,
hgjg: undefined,
zdyj: undefined,
sfyj: undefined,
qk: undefined,
ckfs: undefined,
ckmx: undefined,
fkfs: undefined,
fkyy: undefined,
fkpd: undefined,
khly: undefined,
tjr: undefined,
sfskdd: undefined,
jj: undefined,
bz: undefined,
jksyj: undefined,
kjblsyj: undefined,
pxxx: undefined,
jksId: undefined,
kjblsId: undefined,
},
list: [],
listLoading: true,
multipleSelection: [], total: 0,
listQuery: {
currentPage: 1,
pageSize: 10,
sort: "desc",
sidx: "",
},
formVisible: false,
exportBoxVisible: false,
memberCreateVisible: false,
columnList: [
{ prop: 'id', label: '开单编号' },
{ prop: 'kdhy', label: '开单会员' },
{ prop: 'kdhyc', label: '开单会员名称' },
{ prop: 'kdhysjh', label: '会员手机号' },
{ prop: 'djmd', label: '单据门店' },
{ prop: 'jsj', label: '金三角' },
{ prop: 'kdrq', label: '开单日期' },
{ prop: 'gjlx', label: '顾客类型' },
{ prop: 'hgjg', label: '合作机构' },
{ prop: 'zdyj', label: '整单业绩' },
{ prop: 'sfyj', label: '实付业绩' },
{ prop: 'qk', label: '欠款' },
{ prop: 'ckfs', label: '储扣方式' },
{ prop: 'ckmx', label: '储扣明细' },
{ prop: 'fkfs', label: '付款方式' },
{ prop: 'fkyy', label: '结算机构' },
{ prop: 'fkpd', label: '付款判断' },
{ prop: 'khly', label: '客户来源' },
{ prop: 'tjr', label: '推荐人' },
{ prop: 'sfskdd', label: '是否首开订单' },
{ prop: 'jj', label: '简介' },
{ prop: 'bz', label: '备注' },
{ prop: 'jksyj', label: '健康师业绩' },
{ prop: 'kjblsyj', label: '科技部老师业绩' },
{ prop: 'pxxx', label: '品项信息' },
],
kdhyOptions: [],
djmdOptions: [],
jsjOptions: [],
hgjgOptions: [],
ckfsOptions: [{ "fullName": "储值卡", "id": "储值卡" }, { "fullName": "扣项", "id": "扣项" }, { "fullName": "套餐", "id": "套餐" }],
fkfsOptions: [{ "fullName": "现金", "id": "现金" }, { "fullName": "微信", "id": "微信" }, { "fullName": "支付宝", "id": "支付宝" }, { "fullName": "银行卡", "id": "银行卡" }, { "fullName": "合作", "id": "合作" }, { "fullName": "医院", "id": "医院" }],
fkyyOptions: [],
khlyOptions: [{ "fullName": "自然到店", "id": "自然到店" }, { "fullName": "会员推广", "id": "会员推广" }, { "fullName": "网络推广", "id": "网络推广" }],
sfskddOptions: [{ "fullName": "是", "id": "是" }, { "fullName": "否", "id": "否" }],
jksOptions: [],
kjbOptions: [],
}
},
computed: {},
created() {
// if(this.$route.query.employeeId){
// this.query.createUser = this.$route.query.employeeId
// }
if(this.$route.query.storeId){
this.query.djmd = this.$route.query.storeId
}
if(this.$route.query.startTime && this.$route.query.endTime) {
this.query.kdrq = [this.$route.query.startTime, this.$route.query.endTime]
}
// 从路由参数中读取健康师ID,用于筛选开单记录
if(this.$route.query.jksId){
this.query.jksId = this.$route.query.jksId
}
this.initData()
this.getkdhyOptions();
this.getdjmdOptions();
this.getjsjOptions();
this.gethgjgOptions();
this.getfkyyOptions();
this.getjksOptions();
this.getkjbOptions();
},
methods: {
goToYyjl(id) {
if (id) {
this.$router.push({
path: '/lqYyjl',
query: { id: id }
})
}
},
detailHandle(id) {
this.$refs.detailDialog.init(id)
},
getkdhyOptions() {
request({
url: '/api/Extend/LqKhxx?page=1&pageSize=10',
method: 'GET',
}).then((res) => {
if (res.code == 200 && res.data.list.length > 0) {
this.kdhyOptions = res.data.list.map(item => ({
value: item.id,
label: `${item.khmc}`+'('+item.sjh+' '+item.gsmdName+')',
}));
} else {
this.kdhyOptions = [];
}
console.error(this.kdhyOptions)
})
},
async remoteMethod(query){
if (query !== '') {
this.kdhyLoading = true;
await request({
url: '/api/Extend/LqKhxx?page=1&pageSize=20&keyword='+query,
method: 'GET',
}).then((res) => {
this.kdhyLoading = false;
if (res.code == 200 && res.data.list.length > 0) {
this.kdhyOptions = res.data.list.map(item => ({
value: item.id,
label: `${item.khmc}`+'('+item.sjh +' '+item.gsmdName+')',
}));
} else {
this.kdhyOptions = [];
}
console.error(this.kdhyOptions)
})
} else {
// this.kdhyOptions = [];
}
},
getdjmdOptions() {
previewDataInterface('730960205902251269').then(res => {
this.djmdOptions = res.data
});
},
getjsjOptions() {
previewDataInterface('733894897408410885').then(res => {
this.jsjOptions = res.data
});
},
gethgjgOptions() {
previewDataInterface('733896629660157189').then(res => {
this.hgjgOptions = res.data
});
},
getfkyyOptions() {
previewDataInterface('733898797075137797').then(res => {
this.fkyyOptions = res.data
});
},
// 获取健康师选项
getjksOptions() {
// 如果选择了门店,则根据门店获取健康师;否则获取所有健康师
const mdid = this.query.djmd ? `&mdid=${this.query.djmd}` : '';
request({
url: `/api/Extend/user?page=1&pageSize=1000${mdid}&gw=健康师`,
method: 'GET',
}).then((res) => {
if (res.code == 200 && res.data.list.length > 0) {
this.jksOptions = res.data.list.map(item => ({
fullName: item.realName || item.name || item.userName,
id: item.id,
value: item.id,
label: item.realName || item.name || item.userName,
}));
} else {
this.jksOptions = [];
}
})
},
// 获取科技部老师选项
async getkjbOptions() {
const userResponse = await request({
url: `/api/Extend/user?page=1&pageSize=1000&gw=科技老师`,
method: 'GET',
});
if (userResponse.code == 200 && userResponse.data && userResponse.data.list.length > 0) {
this.kjbOptions = userResponse.data.list.map(item => ({
fullName: item.realName || item.name || item.userName,
id: item.id,
value: item.id,
label: item.realName || item.name || item.userName,
}));
} else {
this.kjbOptions = [];
}
},
initData() {
this.listLoading = true;
let _query = {
...this.listQuery,
...this.query
};
let query = {}
for (let key in _query) {
if (Array.isArray(_query[key])) {
query[key] = _query[key].join()
} else {
query[key] = _query[key]
}
}
request({
url: `/api/Extend/LqKdKdjlb`,
method: 'GET',
data: query
}).then(res => {
this.list = res.data.list
this.total = res.data.pagination.total
this.listLoading = false
})
},
handleDel(id) {
this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
type: 'warning'
}).then(() => {
request({
url: `/api/Extend/LqKdKdjlb/${id}`,
method: 'DELETE'
}).then(res => {
this.$message({
type: 'success',
message: res.msg,
onClose: () => {
this.initData()
}
});
})
}).catch(() => {
});
},
handleSelectionChange(val) {
const res = val.map(item => item.id)
this.multipleSelection = res
},
handleBatchRemoveDel() {
if (!this.multipleSelection.length) {
this.$message({
type: 'error',
message: '请选择一条数据',
duration: 1500,
})
return
}
const ids = this.multipleSelection
this.$confirm('您确定要删除这些数据吗, 是否继续?', '提示', {
type: 'warning'
}).then(() => {
request({
url: `/api/Extend/LqKdKdjlb/batchRemove`,
method: 'POST',
data: ids,
}).then(res => {
this.$message({
type: 'success',
message: res.msg,
onClose: () => {
this.initData()
}
});
})
}).catch(() => { })
},
addOrUpdateHandle(id, isDetail) {
this.formVisible = true
this.$nextTick(() => {
this.$refs.NCCForm.init(id, isDetail)
})
},
exportData() {
this.exportBoxVisible = true
this.$nextTick(() => {
this.$refs.ExportBox.init(this.columnList)
})
},
download(data) {
let query = { ...data, ...this.listQuery, ...this.query }
request({
url: `/api/Extend/LqKdKdjlb/Actions/Export`,
method: 'GET',
data: query
}).then(res => {
if (!res.data.url) return
window.location.href = this.define.comUrl + res.data.url
this.$refs.ExportBox.visible = false
this.exportBoxVisible = false
})
},
search() {
this.listQuery = {
currentPage: 1,
pageSize: 10,
sort: "desc",
sidx: "",
}
this.initData()
},
refresh(isrRefresh) {
this.formVisible = false
if (isrRefresh) this.initData()
},
reset() {
for (let key in this.query) {
this.query[key] = undefined
}
this.listQuery = {
currentPage: 1,
pageSize: 10,
sort: "desc",
sidx: "",
}
this.initData()
},
// 格式化日期
formatDate(date) {
if (!date) return '无'
const d = new Date(date)
if (isNaN(d.getTime())) return '无'
return d.toLocaleDateString('zh-CN', {
year: 'numeric',
month: '2-digit',
day: '2-digit'
})
},
// 格式化金额
formatMoney(amount) {
if (!amount && amount !== 0) return '0.00'
return Number(amount).toFixed(2)
},
// 打开会员建档弹窗
openMemberCreateDialog() {
this.memberCreateVisible = true
},
// 处理会员建档成功
handleMemberCreateSuccess(memberData) {
console.log('会员建档成功:', memberData)
// 刷新会员列表
this.getkdhyOptions()
// 自动选择新创建的会员
if (memberData && memberData.id) {
this.query.kdhy = memberData.id
this.$message.success('会员建档成功,已自动选择该会员')
}
},
// 单据门店变化时重新加载健康师列表
handleDjmdChange() {
this.query.jksId = undefined; // 清空健康师选择
this.getjksOptions();
}
}
}
</script>
<style lang="scss" scoped>
// 通用文本不换行样式
.text-nowrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
// 开单编号样式
.order-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.order-icon {
color: #409EFF;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 会员信息样式
.member-info,
.member-name {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.member-icon,
.member-name-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 手机号样式
.phone-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.phone-icon {
color: #409EFF;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 门店信息样式
.store-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.store-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 金三角样式
.jsj-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.jsj-icon {
color: #E6A23C;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 日期样式
.date-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.date-icon {
color: #909399;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 金额相关样式
.amount-info,
.paid-amount-info,
.jks-amount-info,
.kjb-amount-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.amount-icon,
.paid-amount-icon,
.jks-amount-icon,
.kjb-amount-icon {
color: #409EFF;
font-size: 16px;
}
span {
font-weight: 600;
color: #409EFF;
}
}
// 欠款样式
.debt-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.debt-icon {
color: #F56C6C;
font-size: 16px;
}
span {
font-weight: 500;
color: #F56C6C;
}
}
// 付款方式样式
.payment-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.payment-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 客户来源样式
.source-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.source-icon {
color: #909399;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 推荐人样式
.referrer-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.referrer-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 备注样式
.remark-info {
display: flex;
align-items: center;
gap: 6px;
.remark-icon {
color: #909399;
font-size: 14px;
}
span {
color: #606266;
}
}
// 顾客类型样式
.customer-type-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.customer-type-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 合作机构样式
.cooperation-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.cooperation-icon {
color: #909399;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 储扣方式样式
.storage-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.storage-icon {
color: #E6A23C;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 储扣明细样式
.storage-detail-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.storage-detail-icon {
color: #909399;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 结算机构样式
.hospital-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.hospital-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 付款判断样式
.payment-judge-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.payment-judge-icon {
color: #409EFF;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 是否首开订单样式
.first-order-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.first-order-icon {
color: #E6A23C;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 简介样式
.intro-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.intro-icon {
color: #909399;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 品项信息样式
.product-info {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
.product-icon {
color: #67C23A;
font-size: 16px;
}
span {
font-weight: 500;
color: #303133;
}
}
// 操作按钮样式
.action-buttons {
display: flex;
align-items: center;
gap: 8px;
.edit-btn {
color: #409EFF;
&:hover {
color: #66b1ff;
}
}
.delete-btn {
color: #F56C6C;
&:hover {
color: #f78989;
}
}
}
// 展开行样式
.expand-container {
padding: 16px;
background: #fafafa;
border-radius: 4px;
margin: 8px 0;
.expand-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
color: #303133;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 1px solid #e4e7ed;
i {
color: #409EFF;
font-size: 16px;
}
}
.item-name {
display: flex;
align-items: center;
gap: 6px;
.item-icon {
color: #67C23A;
font-size: 14px;
}
}
.amount-value {
font-weight: 600;
color: #409EFF;
}
.amount-paid {
font-weight: 600;
color: #67C23A;
}
}
.expand-empty {
padding: 20px;
text-align: center;
color: #909399;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
i {
font-size: 16px;
}
}
</style>