index.vue 46.4 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
<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-input v-model="query.id" placeholder="客户编码" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="客户名称">
							<el-input v-model="query.khmc" placeholder="客户名称" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="手机号">
							<el-input v-model="query.sjh" placeholder="手机号" clearable />	
						</el-form-item>
					</el-col>
					<template v-if="showAll">
					<el-col :span="6">
						<el-form-item label="档案号">
							<el-input v-model="query.dah" placeholder="档案号" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="性别">
							<el-select v-model="query.xb" placeholder="性别" clearable >
								<el-option v-for="(item, index) in xbOptions" :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.gzhzt" placeholder="公众号状态" clearable >
								<el-option v-for="(item, index) in gzhztOptions" :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.wxnc" placeholder="微信昵称" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="小程序状态">
							<el-select v-model="query.wxxcxzt" placeholder="小程序状态" clearable >
								<el-option v-for="(item, index) in wxxcxztOptions" :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.zjdlsj" 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-select v-model="query.khmqgs" placeholder="客户目前归属" clearable >
								<el-option v-for="(item, index) in khmqgsOptions" :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.gsmd" placeholder="归属门店" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="注册时间">
							<el-date-picker v-model="query.zcsj" 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-select v-model="query.khlx" placeholder="客户类型" clearable >
								<el-option v-for="(item, index) in khlxOptions" :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.khjd" placeholder="客户阶段" clearable >
								<el-option v-for="(item, index) in khjdOptions" :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.khxf" placeholder="客户消费" >
								<el-option v-for="(item, index) in khxfOptions" :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.xfpc" placeholder="消费频次" clearable >
								<el-option v-for="(item, index) in xfpcOptions" :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.tjr" placeholder="推荐人" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="负责顾问">
							<el-input v-model="query.fzgw" placeholder="负责顾问" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="美容师">
							<el-input v-model="query.mrs" placeholder="美容师" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="进店渠道">
							<el-input v-model="query.jdqd" placeholder="进店渠道" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="联系地址">
							<el-input v-model="query.lxdz" placeholder="联系地址" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="备注">
							<el-input v-model="query.bz" placeholder="备注" />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="首次到店">
							<el-date-picker v-model="query.scdd" 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-date-picker v-model="query.zjdd" 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.wddts" placeholder="未到店天数" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="阳历生日">
							<el-date-picker v-model="query.yanglsr" 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-date-picker v-model="query.yinlsr" 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.ml" placeholder="年龄" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="最近服务人员">
							<el-input v-model="query.zjycfwry" placeholder="最近服务人员" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="期间到店频次">
							<el-input v-model="query.qjddpc" placeholder="期间到店频次" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="期间服务单次">
							<el-input v-model="query.qjfwdc" placeholder="期间服务单次" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="期间现金消费">
							<el-input v-model="query.qjxjxf" placeholder="期间现金消费" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="期间项目耗卡">
							<el-input v-model="query.qjxmhk" placeholder="期间项目耗卡" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="期间储值消耗">
							<el-input v-model="query.qjczxh" placeholder="期间储值消耗" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="剩余储值">
							<el-input v-model="query.sycz" placeholder="剩余储值" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="剩余积分">
							<el-input v-model="query.syjf" placeholder="剩余积分" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="剩余品项金额">
							<el-input v-model="query.sypxje" placeholder="剩余品项金额" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="剩余套餐金额">
							<el-input v-model="query.sytcje" placeholder="剩余套餐金额" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="项目耗卡金额">
							<el-input v-model="query.ljxmhkje" placeholder="项目耗卡金额" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="累计储值消耗">
							<el-input v-model="query.ljczxh" placeholder="累计储值消耗" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="累计消费次数">
							<el-input v-model="query.ljxfcs" placeholder="累计消费次数" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="累计服务次数">
							<el-input v-model="query.ljfwcs" placeholder="累计服务次数" clearable />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="现金消费金额">
							<el-input v-model="query.ljxjxfje" placeholder="现金消费金额" 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="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 label="客户编码" width="140" align="center">
						<template slot-scope="scope">
							<div class="customer-code-info">
								<i class="el-icon-postcard customer-code-icon"></i>
								<span class="text-nowrap">{{ scope.row.id || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 客户名称 -->
					<el-table-column label="客户名称" width="120" align="center">
						<template slot-scope="scope">
							<div class="customer-name-info">
								<i class="el-icon-user-solid customer-name-icon"></i>
								<span class="text-nowrap">{{ scope.row.khmc || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 手机号 -->
					<el-table-column label="手机号" width="130" align="center">
						<template slot-scope="scope">
							<div class="phone-info">
								<i class="el-icon-phone phone-icon"></i>
								<span class="text-nowrap">{{ scope.row.sjh || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 档案号 -->
					<el-table-column label="档案号" width="120" align="center">
						<template slot-scope="scope">
							<div class="archive-info">
								<i class="el-icon-folder archive-icon"></i>
								<span class="text-nowrap">{{ scope.row.dah || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 性别 -->
					<el-table-column label="性别" width="80" align="center">
						<template slot-scope="scope">
							<div class="gender-info">
								<i class="el-icon-user gender-icon" :class="getGenderClass(scope.row.xb)"></i>
								<span class="text-nowrap">{{ scope.row.xb | dynamicText(xbOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 公众号状态 -->
					<el-table-column label="公众号状态" width="120" align="center">
						<template slot-scope="scope">
							<div class="wechat-status-info">
								<i class="el-icon-chat-dot-round wechat-status-icon" :class="getStatusClass(scope.row.gzhzt)"></i>
								<span class="text-nowrap">{{ scope.row.gzhzt | dynamicText(gzhztOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 微信昵称 -->
					<el-table-column label="微信昵称" width="120" align="center">
						<template slot-scope="scope">
							<div class="wechat-name-info">
								<i class="el-icon-chat-line-round wechat-name-icon"></i>
								<span class="text-nowrap">{{ scope.row.wxnc || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 小程序状态 -->
					<el-table-column label="小程序状态" width="120" align="center">
						<template slot-scope="scope">
							<div class="miniprogram-status-info">
								<i class="el-icon-mobile-phone miniprogram-status-icon" :class="getStatusClass(scope.row.wxxcxzt)"></i>
								<span class="text-nowrap">{{ scope.row.wxxcxzt | dynamicText(wxxcxztOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 最近登录时间 -->
					<el-table-column label="最近登录时间" width="140" align="center">
						<template slot-scope="scope">
							<div class="login-time-info">
								<i class="el-icon-time login-time-icon"></i>
								<span class="text-nowrap">{{ formatDate(scope.row.zjdlsj) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 客户目前归属 -->
					<el-table-column label="客户目前归属" width="120" align="center">
						<template slot-scope="scope">
							<div class="customer-belong-info">
								<i class="el-icon-collection-tag customer-belong-icon"></i>
								<span class="text-nowrap">{{ scope.row.khmqgs | dynamicText(khmqgsOptions) || '无' }}</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.gsmd || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 注册时间 -->
					<el-table-column label="注册时间" width="120" align="center">
						<template slot-scope="scope">
							<div class="register-time-info">
								<i class="el-icon-date register-time-icon"></i>
								<span class="text-nowrap">{{ formatDate(scope.row.zcsj) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 客户类型 -->
					<el-table-column label="客户类型" width="100" 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.khlx | dynamicText(khlxOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 客户阶段 -->
					<el-table-column label="客户阶段" width="100" align="center">
						<template slot-scope="scope">
							<div class="customer-stage-info">
								<i class="el-icon-trophy customer-stage-icon"></i>
								<span class="text-nowrap">{{ scope.row.khjd | dynamicText(khjdOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 客户消费 -->
					<el-table-column label="客户消费" width="100" align="center">
						<template slot-scope="scope">
							<div class="customer-consume-info">
								<i class="el-icon-coin customer-consume-icon"></i>
								<span class="text-nowrap">{{ scope.row.khxf | dynamicText(khxfOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 消费频次 -->
					<el-table-column label="消费频次" width="100" align="center">
						<template slot-scope="scope">
							<div class="consume-frequency-info">
								<i class="el-icon-data-line consume-frequency-icon"></i>
								<span class="text-nowrap">{{ scope.row.xfpc | dynamicText(xfpcOptions) || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 推荐人 -->
					<el-table-column label="推荐人" width="100" align="center">
						<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="100" align="center">
						<template slot-scope="scope">
							<div class="advisor-info">
								<i class="el-icon-service advisor-icon"></i>
								<span class="text-nowrap">{{ scope.row.fzgw || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 美容师 -->
					<el-table-column label="美容师" width="100" align="center">
						<template slot-scope="scope">
							<div class="beautician-info">
								<i class="el-icon-user beautician-icon"></i>
								<span class="text-nowrap">{{ scope.row.mrs || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 进店渠道 -->
					<el-table-column label="进店渠道" width="120" align="center">
						<template slot-scope="scope">
							<div class="channel-info">
								<i class="el-icon-connection channel-icon"></i>
								<span class="text-nowrap">{{ scope.row.jdqd || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 联系地址 -->
					<el-table-column label="联系地址" min-width="150" show-overflow-tooltip>
						<template slot-scope="scope">
							<div class="address-info">
								<i class="el-icon-location address-icon"></i>
								<span class="text-nowrap">{{ scope.row.lxdz || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 备注 -->
					<el-table-column label="备注" min-width="150" show-overflow-tooltip>
						<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="120" align="center">
						<template slot-scope="scope">
							<div class="first-visit-info">
								<i class="el-icon-date first-visit-icon"></i>
								<span class="text-nowrap">{{ formatDate(scope.row.scdd) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 最近到店 -->
					<el-table-column label="最近到店" width="120" align="center">
						<template slot-scope="scope">
							<div class="last-visit-info">
								<i class="el-icon-date last-visit-icon"></i>
								<span class="text-nowrap">{{ formatDate(scope.row.zjdd) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 未到店天数 -->
					<el-table-column label="未到店天数" width="120" align="center">
						<template slot-scope="scope">
							<div class="no-visit-days-info">
								<i class="el-icon-warning no-visit-days-icon"></i>
								<span class="text-nowrap">{{ scope.row.wddts || '0' }}天</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 阳历生日 -->
					<el-table-column label="阳历生日" width="120" align="center">
						<template slot-scope="scope">
							<div class="solar-birthday-info">
								<i class="el-icon-present solar-birthday-icon"></i>
								<span class="text-nowrap">{{ formatDate(scope.row.yanglsr) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 阴历生日 -->
					<el-table-column label="阴历生日" width="120" align="center">
						<template slot-scope="scope">
							<div class="lunar-birthday-info">
								<i class="el-icon-present lunar-birthday-icon"></i>
								<span class="text-nowrap">{{ formatDate(scope.row.yinlsr) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 年龄 -->
					<el-table-column label="年龄" width="80" align="center">
						<template slot-scope="scope">
							<div class="age-info">
								<i class="el-icon-user age-icon"></i>
								<span class="text-nowrap">{{ scope.row.ml || '0' }}岁</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 最近服务人员 -->
					<el-table-column label="最近服务人员" width="130" align="center">
						<template slot-scope="scope">
							<div class="recent-service-info">
								<i class="el-icon-service recent-service-icon"></i>
								<span class="text-nowrap">{{ scope.row.zjycfwry || '无' }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 期间到店频次 -->
					<el-table-column label="期间到店频次" width="130" align="center">
						<template slot-scope="scope">
							<div class="visit-frequency-info">
								<i class="el-icon-data-line visit-frequency-icon"></i>
								<span class="text-nowrap">{{ scope.row.qjddpc || '0' }}次</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 期间服务单次 -->
					<el-table-column label="期间服务单次" width="130" align="center">
						<template slot-scope="scope">
							<div class="service-times-info">
								<i class="el-icon-data-line service-times-icon"></i>
								<span class="text-nowrap">{{ scope.row.qjfwdc || '0' }}次</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 期间现金消费 -->
					<el-table-column label="期间现金消费" width="130" align="center">
						<template slot-scope="scope">
							<div class="cash-consume-info">
								<i class="el-icon-money cash-consume-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.qjxjxf) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 期间项目耗卡 -->
					<el-table-column label="期间项目耗卡" width="130" align="center">
						<template slot-scope="scope">
							<div class="card-consume-info">
								<i class="el-icon-bank-card card-consume-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.qjxmhk) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 期间储值消耗 -->
					<el-table-column label="期间储值消耗" width="130" align="center">
						<template slot-scope="scope">
							<div class="stored-consume-info">
								<i class="el-icon-coin stored-consume-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.qjczxh) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 剩余储值 -->
					<el-table-column label="剩余储值" width="120" align="center">
						<template slot-scope="scope">
							<div class="remaining-stored-info">
								<i class="el-icon-coin remaining-stored-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.sycz) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 剩余积分 -->
					<el-table-column label="剩余积分" width="120" align="center">
						<template slot-scope="scope">
							<div class="remaining-points-info">
								<i class="el-icon-star-on remaining-points-icon"></i>
								<span class="text-nowrap">{{ scope.row.syjf || '0' }}分</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 剩余品项金额 -->
					<el-table-column label="剩余品项金额" width="130" align="center">
						<template slot-scope="scope">
							<div class="remaining-product-info">
								<i class="el-icon-goods remaining-product-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.sypxje) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 剩余套餐金额 -->
					<el-table-column label="剩余套餐金额" width="130" align="center">
						<template slot-scope="scope">
							<div class="remaining-package-info">
								<i class="el-icon-box remaining-package-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.sytcje) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 项目耗卡金额 -->
					<el-table-column label="项目耗卡金额" width="130" align="center">
						<template slot-scope="scope">
							<div class="project-card-info">
								<i class="el-icon-bank-card project-card-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.ljxmhkje) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 累计储值消耗 -->
					<el-table-column label="累计储值消耗" width="130" align="center">
						<template slot-scope="scope">
							<div class="total-stored-consume-info">
								<i class="el-icon-coin total-stored-consume-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.ljczxh) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 累计消费次数 -->
					<el-table-column label="累计消费次数" width="130" align="center">
						<template slot-scope="scope">
							<div class="total-consume-times-info">
								<i class="el-icon-data-line total-consume-times-icon"></i>
								<span class="text-nowrap">{{ scope.row.ljxfcs || '0' }}次</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 累计服务次数 -->
					<el-table-column label="累计服务次数" width="130" align="center">
						<template slot-scope="scope">
							<div class="total-service-times-info">
								<i class="el-icon-data-line total-service-times-icon"></i>
								<span class="text-nowrap">{{ scope.row.ljfwcs || '0' }}次</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 现金消费金额 -->
					<el-table-column label="现金消费金额" width="130" align="center">
						<template slot-scope="scope">
							<div class="cash-total-info">
								<i class="el-icon-money cash-total-icon"></i>
								<span class="text-nowrap">{{ formatMoney(scope.row.ljxjxfje) }}</span>
							</div>
						</template>
					</el-table-column>
					
					<!-- 操作 -->
					<el-table-column label="操作" width="160" align="left" fixed="right">
						<template slot-scope="scope">
							<div class="action-buttons">
								<el-button 
									type="text" 
									icon="el-icon-edit" 
									@click="addOrUpdateHandle(scope.row.id)"
									class="edit-btn"
								>
									编辑
								</el-button>
								<el-button 
									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" />
	</div>
</template>
<script>
    import request from '@/utils/request'
    import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
    import NCCForm from './Form'
    import ExportBox from './ExportBox'
    import { previewDataInterface } from '@/api/systemData/dataInterface'
	export default {
        components: { NCCForm, ExportBox },
        data() {
            return {
                showAll: false,
				query: {
                    id:undefined,
                    khmc:undefined,
                    sjh:undefined,
                    dah:undefined,
                    xb:undefined,
                    gzhzt:undefined,
                    wxnc:undefined,
                    wxxcxzt:undefined,
                    zjdlsj:undefined,
                    khmqgs:undefined,
                    gsmd:undefined,
                    zcsj:undefined,
                    khlx:undefined,
                    khjd:undefined,
                    khxf:undefined,
                    xfpc:undefined,
                    tjr:undefined,
                    fzgw:undefined,
                    mrs:undefined,
                    jdqd:undefined,
                    lxdz:undefined,
                    bz:undefined,
                    scdd:undefined,
                    zjdd:undefined,
                    wddts:undefined,
                    yanglsr:undefined,
                    yinlsr:undefined,
                    ml:undefined,
                    zjycfwry:undefined,
                    qjddpc:undefined,
                    qjfwdc:undefined,
                    qjxjxf:undefined,
                    qjxmhk:undefined,
                    qjczxh:undefined,
                    sycz:undefined,
                    syjf:undefined,
                    sypxje:undefined,
                    sytcje:undefined,
                    ljxmhkje:undefined,
                    ljczxh:undefined,
                    ljxfcs:undefined,
                    ljfwcs:undefined,
                    ljxjxfje:undefined,
				},
                list: [],
                listLoading: true,
                multipleSelection: [], total: 0,
                listQuery: {
                    currentPage: 1,
                    pageSize: 20,
					sort: "desc",
                    sidx: "",
                },
                formVisible: false,
                exportBoxVisible: false,
                columnList: [
                    { prop: 'id', label: '客户编码' },
                    { prop: 'khmc', label: '客户名称' },
                    { prop: 'sjh', label: '手机号' },
                    { prop: 'dah', label: '档案号' },
                    { prop: 'xb', label: '性别' },
                    { prop: 'gzhzt', label: '公众号状态' },
                    { prop: 'wxnc', label: '微信昵称' },
                    { prop: 'wxxcxzt', label: '小程序状态' },
                    { prop: 'zjdlsj', label: '最近登录时间' },
                    { prop: 'khmqgs', label: '客户目前归属' },
                    { prop: 'gsmd', label: '归属门店' },
                    { prop: 'zcsj', label: '注册时间' },
                    { prop: 'khlx', label: '客户类型' },
                    { prop: 'khjd', label: '客户阶段' },
                    { prop: 'khxf', label: '客户消费' },
                    { prop: 'xfpc', label: '消费频次' },
                    { prop: 'tjr', label: '推荐人' },
                    { prop: 'fzgw', label: '负责顾问' },
                    { prop: 'mrs', label: '美容师' },
                    { prop: 'jdqd', label: '进店渠道' },
                    { prop: 'lxdz', label: '联系地址' },
                    { prop: 'bz', label: '备注' },
                    { prop: 'scdd', label: '首次到店' },
                    { prop: 'zjdd', label: '最近到店' },
                    { prop: 'wddts', label: '未到店天数' },
                    { prop: 'yanglsr', label: '阳历生日' },
                    { prop: 'yinlsr', label: '阴历生日' },
                    { prop: 'ml', label: '年龄' },
                    { prop: 'zjycfwry', label: '最近服务人员' },
                    { prop: 'qjddpc', label: '期间到店频次' },
                    { prop: 'qjfwdc', label: '期间服务单次' },
                    { prop: 'qjxjxf', label: '期间现金消费' },
                    { prop: 'qjxmhk', label: '期间项目耗卡' },
                    { prop: 'qjczxh', label: '期间储值消耗' },
                    { prop: 'sycz', label: '剩余储值' },
                    { prop: 'syjf', label: '剩余积分' },
                    { prop: 'sypxje', label: '剩余品项金额' },
                    { prop: 'sytcje', label: '剩余套餐金额' },
                    { prop: 'ljxmhkje', label: '项目耗卡金额' },
                    { prop: 'ljczxh', label: '累计储值消耗' },
                    { prop: 'ljxfcs', label: '累计消费次数' },
                    { prop: 'ljfwcs', label: '累计服务次数' },
                    { prop: 'ljxjxfje', label: '现金消费金额' },
				],
				xbOptions:[{"fullName":"男","id":"男"},{"fullName":"女","id":"女"}],
				gzhztOptions:[{"fullName":"已绑定","id":"已绑定"},{"fullName":"未绑定","id":"未绑定"}],
				wxxcxztOptions:[{"fullName":"已绑定","id":"已绑定"},{"fullName":"未绑定","id":"未绑定"}],
				khmqgsOptions:[{"fullName":"会员","id":"会员"},{"fullName":"线索池","id":"线索池"},{"fullName":"会员-归档","id":"会员-归档"}],
				khlxOptions:[{"fullName":"新客","id":"新客"},{"fullName":"老客","id":"老客"},{"fullName":"潜客","id":"潜客"}],
				khjdOptions:[{"fullName":"体验","id":"体验"},{"fullName":"有效","id":"有效"},{"fullName":"沉睡","id":"沉睡"},{"fullName":"流失","id":"流失"}],
				khxfOptions:[{"fullName":"D客","id":"D客"},{"fullName":"有效","id":"有效"}],
				xfpcOptions:[{"fullName":"高频","id":"高频"},{"fullName":"低频","id":"低频"}],
			}
        },
		computed: {},
		created() {
			this.initData()
		},
		methods: {
			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/LqKhxx`,
                    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/LqKhxx/${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/LqKhxx/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/LqKhxx/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: 20,
                    sort: "desc",
                    sidx: "",
                }
                this.initData()
            },
            refresh(isrRefresh) {
                this.formVisible = false
                if (isrRefresh) this.reset()
            },
            reset() {
                for (let key in this.query) {
                    this.query[key] = undefined
                }
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    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'
                const num = parseFloat(amount)
                if (isNaN(num)) return '¥0.00'
                return '¥' + num.toLocaleString('zh-CN', {
                    minimumFractionDigits: 2,
                    maximumFractionDigits: 2
                })
            },
            // 获取性别样式类
            getGenderClass(gender) {
                if (gender === '男') return 'gender-male'
                if (gender === '女') return 'gender-female'
                return 'gender-unknown'
            },
            // 获取状态样式类
            getStatusClass(status) {
                if (status === '已绑定') return 'status-bound'
                if (status === '未绑定') return 'status-unbound'
                return 'status-unknown'
            }
		}
    }
</script>

<style lang="scss" scoped>
// 通用文本不换行样式
.text-nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

// 客户编码样式
.customer-code-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .customer-code-icon {
    color: #409EFF;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 客户名称样式
.customer-name-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .customer-name-icon {
    color: #67C23A;
    font-size: 16px;
  }
  
  span {
    font-weight: 600;
    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;
  }
}

// 档案号样式
.archive-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .archive-icon {
    color: #909399;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 性别样式
.gender-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .gender-icon {
    font-size: 16px;
    
    &.gender-male {
      color: #409EFF;
    }
    
    &.gender-female {
      color: #F56C6C;
    }
    
    &.gender-unknown {
      color: #909399;
    }
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 微信状态样式
.wechat-status-info, .miniprogram-status-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .wechat-status-icon, .miniprogram-status-icon {
    font-size: 16px;
    
    &.status-bound {
      color: #67C23A;
    }
    
    &.status-unbound {
      color: #F56C6C;
    }
    
    &.status-unknown {
      color: #909399;
    }
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 微信昵称样式
.wechat-name-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .wechat-name-icon {
    color: #67C23A;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 时间相关样式
.login-time-info, .register-time-info, .first-visit-info, .last-visit-info, .solar-birthday-info, .lunar-birthday-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .login-time-icon, .register-time-icon, .first-visit-icon, .last-visit-icon, .solar-birthday-icon, .lunar-birthday-icon {
    color: #909399;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 客户归属样式
.customer-belong-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .customer-belong-icon {
    color: #E6A23C;
    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;
  }
}

// 客户类型和阶段样式
.customer-type-info, .customer-stage-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .customer-type-icon, .customer-stage-icon {
    color: #67C23A;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 消费相关样式
.customer-consume-info, .consume-frequency-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .customer-consume-icon, .consume-frequency-icon {
    color: #409EFF;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 人员信息样式
.referrer-info, .advisor-info, .beautician-info, .recent-service-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .referrer-icon, .advisor-icon, .beautician-icon, .recent-service-icon {
    color: #67C23A;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 渠道信息样式
.channel-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .channel-icon {
    color: #909399;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 地址和备注样式
.address-info, .remark-info {
  display: flex;
  align-items: center;
  gap: 6px;
  
  .address-icon, .remark-icon {
    color: #909399;
    font-size: 14px;
  }
  
  span {
    color: #606266;
  }
}

// 未到店天数样式
.no-visit-days-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .no-visit-days-icon {
    color: #F56C6C;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #F56C6C;
  }
}

// 年龄样式
.age-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .age-icon {
    color: #909399;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 频次相关样式
.visit-frequency-info, .service-times-info, .total-consume-times-info, .total-service-times-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .visit-frequency-icon, .service-times-icon, .total-consume-times-icon, .total-service-times-icon {
    color: #409EFF;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #303133;
  }
}

// 金额相关样式
.cash-consume-info, .card-consume-info, .stored-consume-info, .remaining-stored-info, .remaining-product-info, .remaining-package-info, .project-card-info, .total-stored-consume-info, .cash-total-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .cash-consume-icon, .card-consume-icon, .stored-consume-icon, .remaining-stored-icon, .remaining-product-icon, .remaining-package-icon, .project-card-icon, .total-stored-consume-icon, .cash-total-icon {
    color: #409EFF;
    font-size: 16px;
  }
  
  span {
    font-weight: 600;
    color: #409EFF;
  }
}

// 积分样式
.remaining-points-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  .remaining-points-icon {
    color: #E6A23C;
    font-size: 16px;
  }
  
  span {
    font-weight: 500;
    color: #E6A23C;
  }
}

// 操作按钮样式
.action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  
  .edit-btn {
    color: #409EFF;
    
    &:hover {
      color: #66b1ff;
    }
  }
  
  .delete-btn {
    color: #F56C6C;
    
    &:hover {
      color: #f78989;
    }
  }
}

// 表格行悬停效果
::v-deep .el-table__row:hover {
  background-color: #f5f7fa;
}

// 表格头部样式
::v-deep .el-table__header-wrapper {
  .el-table__header {
    th {
      background-color: #f5f7fa;
      color: #606266;
      font-weight: 600;
    }
  }
}
</style>