index.vue 31.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
<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-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.djmd" placeholder="单据门店" clearable >
								<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-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>


					</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 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 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="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">
						<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">
						<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 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="备注" min-width="150" 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="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"
									@click="detailHandle(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" />
    <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'
	export default {  
        components: { NCCForm, ExportBox, MemberCreateDialog, LqKdKdjlbDetail },
        data() {
            return {
				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,
				},
                list: [],
                listLoading: true,
                multipleSelection: [], total: 0,
                listQuery: {
                    currentPage: 1,
                    pageSize: 20,
					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":"否"}],
			}
        },
		computed: {},
		created() {
			this.initData()
			// this.getkdhyOptions();
			this.getdjmdOptions();
			this.getjsjOptions();
			this.gethgjgOptions();
			this.getfkyyOptions();
		},
		methods: {
			detailHandle(id){
				this.$refs.detailDialog.init(id)
			},
			getkdhyOptions(){
				previewDataInterface('730998109110273285').then(res => {
					this.kdhyOptions = res.data
				});
			},
			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
				});
			},
			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: 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'
                })
            },
            // 打开会员建档弹窗
            openMemberCreateDialog() {
                this.memberCreateVisible = true
            },
            // 处理会员建档成功
            handleMemberCreateSuccess(memberData) {
                console.log('会员建档成功:', memberData)
                // 刷新会员列表
                this.getkdhyOptions()
                // 自动选择新创建的会员
                if (memberData && memberData.id) {
                    this.query.kdhy = memberData.id
                    this.$message.success('会员建档成功,已自动选择该会员')
                }
            }
		}
    }
</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;
    }
  }
}

</style>