CustomQueryDialog.vue 54.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
<template>
  <!-- 添加编辑关联查询 -->
  <el-dialog width="40%" top="6vh" :title="title" :visible="dialogVisible" :before-close="handleClose"
    :close-on-click-modal="false" append-to-body custom-class="editCustomDialog">
    <el-form style="width: 100%; height: 500px" :model="treeSidebarData" data-vv-scope="editCustomQueryList">
      <ht-form-item label="关联分类" label-width="120px">
        <eip-sys-type-selector placeholder="请选择分类" type-key="Query_TYPE" v-model="treeSidebarData.typeName"
          :sys-type-id.sync="treeSidebarData.typeId" :validate="{ required: true }" />
      </ht-form-item>
      <ht-form-item label="名称" label-width="120px">
        <ht-input v-model="treeSidebarData.name" class="ht" placeholder="请输入名称" autocomplete="off" validate="required"
          :maxlength="50" :showWordLimit="true"></ht-input>
      </ht-form-item>
      <ht-form-item label="别名" label-width="120px">
        <ht-input v-model="treeSidebarData.alias" class="ht" v-pinyin="treeSidebarData.name" placeholder="请输入别名"
          autocomplete="off" :validate="{
            required: true,
            regex: {
              exp: '^[a-zA-Z][a-zA-Z0-9_]*$',
              message: '只能输入字母、数字、下划线,且以字母开头'
            }
          }" :disabled="treeSidebarData.id ? true : false" :maxlength="50" :showWordLimit="true"></ht-input>
      </ht-form-item>
      <!-- v-if="treeSidebarData.needPage == 1 -->
      <!-- &&
          treeSidebarData.requestType == 'GET' -->
      <!-- <ht-form-item label="分页" v-if="!(
          treeSidebarData.dsType == 'restful' 
        ) && treeSidebarData.dsType !== 'selectedApi'
        " label-width="120px">
        <ht-radio v-model="treeSidebarData.needPage" style="width: 400px" :options="[
          { key: 1, value: '是' },
          { key: 0, value: '否' }
        ]" />
      </ht-form-item> -->
      <ht-form-item label="展示数据" label-width="120px" v-if="!['selectedApi', 'restful'].includes(treeSidebarData.dsType)">
        <!-- <ht-input
          v-model="treeSidebarData.pageSize"
          class="ht"
          placeholder="请输入分页大小"
          autocomplete="off"
          :validate="{required: true, numeric: true, max_value: 500}"
        >
          <template slot="append">
            <el-tooltip
              slot="label"
              effect="dark"
              content="关联查询时固定按照该分页大小返回第一页数据,分页大小上限为500。"
            >
              <i class="icon-question"></i>
            </el-tooltip>
          </template>
        </ht-input> -->
        <div style="display: flex; flex-wrap: nowrap">
          <ht-select v-model="treeSidebarData.pageSize" placeholder="请选择分页大小" :options="[
            { key: 10, value: 10 },
            { key: 20, value: 20 },
            { key: 50, value: 50 },
            { key: 100, value: 100 },
            { key: 500, value: 500 },
            { key: 1000, value: 1000 }
          ]" :validate="{ required: true }" />
          <div style="flex-shrink: 0;">&nbsp; 条</div>
        </div>
      </ht-form-item>

      <ht-form-item label="数据来源" label-width="120px">
        <ht-radio v-model="treeSidebarData.dsType" style="width: 400px" :readonly="disabled" :options="[
          { key: 'dataSource', value: '数据源' },
          { key: 'restful', value: 'REST接口' },
          { key: 'selectedApi', value: '选择接口' }
        ]" />
      </ht-form-item>
      <div v-show="treeSidebarData.dsType == 'selectedApi'">
        <ht-form-item label="接口" label-width="120px">
          <ht-select v-model="treeSidebarData.apiAlias" :options="apiOptions" :props="apiProps" filterable clearable
            placeholder="请选择接口" @change="selectedApiChange()"></ht-select>
        </ht-form-item>
      </div>

      <!-- 数据源配置 -->
      <div v-show="treeSidebarData.dsType == 'dataSource'">
        <ht-form-item label="数据源" v-if="!treeSidebarData.id" label-width="120px">
          <ht-select class="ht" v-model="treeSidebarData.dsalias" :options="dataSourcesInBean"
            :props="{ key: 'alias', value: 'name' }" />
        </ht-form-item>
        <ht-form-item label="查询表(视图)" v-if="!treeSidebarData.id" label-width="120px">
          <div class="flex_wrap">
            <ht-radio style="width: 170px;flex-shrink: 0;" v-model="treeSidebarData.isTable" :options="isTableList" />
            <ht-input v-model="objName" placeholder="请输入表或视图名称" autocomplete="off"></ht-input>
            <el-button type="primary" @click="getByDsObjectName" style="margin-left: 22px;">查 询</el-button>
          </div>
        </ht-form-item>
        <ht-form-item label="选择表或视图" label-width="120px">
          <div class="flex_wrap">
            <ht-select v-show="!treeSidebarData.id" v-model="treeSidebarData.objName" :options="tableOrViewList"
              :remote-method="getByDsObjectName" :props="{ key: 'name', value: 'comment' }" />
            <span v-if="treeSidebarData.id">
              对象名称:{{ treeSidebarData.objName }}&nbsp;&nbsp;所属数据源:{{
                treeSidebarData.dsalias
              }} </span>
            <el-button type="primary" @click="showSettingDialog" style="margin-left: 22px;">设置列</el-button>
          </div>
        </ht-form-item>
      </div>
      <!-- restful配置 -->
      <div v-if="treeSidebarData.dsType == 'restful'">
        <ht-form-item label="请求地址" label-width="120px">
          <ht-input v-model="treeSidebarData.url" class="ht" placeholder="请输入请求地址" autocomplete="off" validate="required">
            <template slot="append">
              <el-tooltip slot="label" effect="dark"
                content="Restful接口地址,若要请求当前系统的某个微服务,以${服务名称}为前缀,如:${form}/base/tools/v1/getPinyin">
                <i class="icon-question"></i>
              </el-tooltip>
            </template>
          </ht-input>
        </ht-form-item>
        <ht-form-item label="请求类型" label-width="120px">
          <ht-radio v-model="treeSidebarData.requestType" class="ht" :options="[
            { key: 'POST', value: 'POST' },
            { key: 'GET', value: 'GET' }
          ]" />
        </ht-form-item>
        <ht-form-item label-width="120px" label="接口头部">
          <ht-input v-model="treeSidebarData.header" class="ht" placeholder="请求接口的头部信息" autocomplete="off">
            <template slot="append">
              <el-tooltip slot="label" effect="dark"
                content='接口头部(header)为JSON格式,如:{"Authorization":"Bearer eyJhbGciOiJIUzUxMiJ9"}'>
                <i class="icon-question"></i>
              </el-tooltip>
            </template>
          </ht-input>
        </ht-form-item>
        <!-- <ht-form-item label="页号(key)" label-width="120px" v-if="treeSidebarData.requestType == 'POST' &&
          treeSidebarData.needPage == 1
          ">
          <ht-input v-if="treeSidebarData.needPage == 1" v-model="treeSidebarData.pageKey" class="ht" placeholder="请输入页号"
            autocomplete="off" validate="required"></ht-input>
        </ht-form-item>
        <ht-form-item label="分页大小(key)" label-width="120px" v-if="treeSidebarData.requestType == 'POST' &&
          treeSidebarData.needPage == 1
          ">
          <ht-input v-model="treeSidebarData.pageSizeKey" class="ht" placeholder="请输入分页大小" autocomplete="off"
            validate="required"></ht-input>
        </ht-form-item>
        <ht-form-item label="总条数(key)" label-width="120px" v-if="treeSidebarData.requestType == 'POST' &&
          treeSidebarData.needPage == 1
          ">
          <ht-input v-model="treeSidebarData.totalKey" class="ht" placeholder="请输入总条数" autocomplete="off"
            validate="required"></ht-input>
        </ht-form-item> -->
        <ht-form-item label="列表(key)" label-width="120px">
          <ht-input v-model="treeSidebarData.listKey" class="ht" placeholder="列表所对应key" autocomplete="off">
            <template slot="append">
              <el-tooltip slot="label" effect="dark" content="如果返回的数据为复杂结构,请输入列表数据的key(支持多级嵌套结构,例如result.rows)">
                <i class="icon-question"></i>
              </el-tooltip>
            </template>
          </ht-input>
        </ht-form-item>
        <ht-form-item label="参数配置" label-width="120px">
          <el-button type="primary" @click="showSettingDialog">设置参数</el-button>
        </ht-form-item>
      </div>
    </el-form>
    <div slot="footer" class="dialog-footer">
      <ht-submit-button :url="saveUrl" :model="treeSidebarData" scope-name="editCustomQueryList"
        @before-save-data="beforeSaveData" @after-save-data="afterSaveData" :isSubmit="isSubmit">{{ $t('eip.common.save')
        }}</ht-submit-button>
      <el-button @click="handleClose">取 消</el-button>
    </div>

    <!-- 设置列 -->
    <ht-sidebar-dialog width="100%" :title="titleSetting" class="cd-column__dialog" :visible="dialogVisibleSetting"
      :before-close="close" :close-on-click-modal="false" append-to-body :show-close="false">
      <template v-slot:title>
        <div class="flex" style="justify-content: space-between; width: 100%">
          <div style="float: left; width: 100%">
            <el-page-header style="float: left" @back="close" :content="titleSetting"></el-page-header>
            <el-button style="float: left; margin-left: 20px" type="success" @click="addFields"
              v-if="treeSidebarData.dsType != 'dataSource'" icon="el-icon-plus">添加字段</el-button>
            <el-button style="float: right" type="primary" @click="save" icon="el-icon-check">保 存</el-button>
          </div>
        </div>
      </template>
      <el-form data-vv-scope="settingSave" class="form-table__wrap">
        <el-row :gutter="20" class="form-table__row">
          <el-col :span="7" class="form-table__left">
            <el-table :data="table.columnList" @selection-change="handleSelectionChange" border ref="htTableSetting"
              @row-dblclick="fillToCondition" @row-click="clickRow">
              <el-table-column type="selection" width="40" />
              <el-table-column v-if="treeSidebarData.dsType == 'dataSource'" prop="fieldName" key="1" label="字段"
                width="150" />
              <el-table-column v-if="treeSidebarData.dsType != 'dataSource'" key="1" label="字段" width="150">
                <template v-slot="{ row }">
                  <ht-input v-model="row.fieldName" placeholder="请输入字段" autocomplete="off" validate="required"
                    :maxlength="50"></ht-input>
                </template>
              </el-table-column>
              <el-table-column label="注解" key="3">
                <template v-slot="{ row }">
                  <ht-input v-model="row.comment" style="width: 100%" placeholder="请输入注解" autocomplete="off"
                    validate="required" :maxlength="50"></ht-input>
                </template>
              </el-table-column>
              <el-table-column label="类型" prop="columnType" width="80" key="4" />
              <el-table-column label="操作" width="100" v-if="treeSidebarData.dsType != 'dataSource'" key="2">
                <template v-slot="{ row, $index }">
                  <el-button size="mini" type="danger" icon="el-icon-delete"
                    @click.stop="deleteSetting(table.columnList, $index)">删除</el-button>
                </template>
              </el-table-column>
            </el-table>
          </el-col>
          <el-col :span="1">
            <el-button type="primary" circle icon="icon-hide" :title="addColumnsTitle" style="
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg);
              " @click="addColumns" />
          </el-col>
          <el-col :span="16" class="form-table__right">
            <el-tabs v-model="tabStatus" @tab-click="handleTabSwitch" type="border-card">
              <el-tab-pane label="返回字段" name="return">
                <div v-if="treeSidebarData.dsType != 'dataSource'">
                  <el-tag type="warning">如果返回的数据为复杂的JSON结构,可以指定列表(key)字段,当前返回字段为列表中的字段。</el-tag>
                  <ol class="guide-ol">
                    <li>
                      例如返回的数据为:
                      <code>{state: true, message: "数据请求成功", result: {page:
                          1, size:20, total: 200, rows: [{name: "name1",age:
                          20},{name: "name2",age: 18}]}}</code>
                    </li>
                    <li>
                      指定列表(key)字段为
                      <code>result.rows</code>,现在返回字段就可以指定
                      <code>{name: "name1",age: 20}</code>中的字段,如:
                      <code>name</code>或者
                      <code>age</code>
                    </li>
                  </ol>
                  <br />
                </div>
                <el-table :data="treeSidebarData.resultfield" border>
                  <el-table-column prop="field" label="字段名" width="250">
                    <template v-slot="{ row }">
                      <ht-input :disabled="treeSidebarData.dsType == 'dataSource'" v-model="row.field"
                        placeholder="返回的字段名" autocomplete="off" validate="required" :maxlength="50"
                        :showWordLimit="true"></ht-input>
                    </template>
                  </el-table-column>
                  <el-table-column label="返回名称">
                    <template v-slot="{ row }">
                      <ht-input v-model="row.comment" placeholder="请输入返回名称" autocomplete="off" validate="required"
                        :maxlength="50" :showWordLimit="true"></ht-input>
                    </template>
                  </el-table-column>
                  <el-table-column label="操作" width="100">
                    <template v-slot="{ row, $index }">
                      <el-button size="mini" type="danger" icon="el-icon-delete" @click="
                        deleteSetting(treeSidebarData.resultfield, $index)
                        ">删除</el-button>
                    </template>
                  </el-table-column>
                </el-table>
              </el-tab-pane>
              <el-tab-pane label="条件字段" name="condition">
                <el-table :data="treeSidebarData.conditionfield" border class="condition-table">
                  <el-table-column label="字段名" width="130">
                    <template v-slot="{ row }">
                      <ht-input :disabled="treeSidebarData.dsType == 'dataSource'" v-model="row.field" placeholder="字段名"
                        autocomplete="off" validate="required" :maxlength="50"></ht-input>
                    </template>
                  </el-table-column>
                  <el-table-column label="显示名" width="130">
                    <template v-slot="{ row }">
                      <ht-input v-model="row.comment" placeholder="请输入显示名" autocomplete="off" validate="required"
                        :maxlength="50"></ht-input>
                    </template>
                  </el-table-column>
                  <el-table-column label="条件" width="120" v-if="treeSidebarData.dsType == 'dataSource'">
                    <template v-slot="{ row }">
                      <ht-select v-show="row.dbType == 'number' || row.dbType == 'int'" v-model="row.condition"
                        :options="number_opList" :validate="{ required: true }" />
                      <ht-select v-show="row.dbType == 'varchar' || row.dbType == 'clob'" v-model="row.condition"
                        :options="string_opList" :validate="{ required: true }" />
                      <ht-select v-show="row.dbType == 'date'" v-model="row.condition" :options="date_opList"
                        :validate="{ required: true }" />
                    </template>
                  </el-table-column>
                  <el-table-column label="值来源" width="130">
                    <template v-slot="{ row }">
                      <ht-select v-show="treeSidebarData.style != '1' &&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        " v-model="row.defaultType" :options="value_sourceList_list" @change="sourceListChang(row)"
                        :validate="{ required: true }" />
                      <ht-select v-show="treeSidebarData.style == '1' &&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        " v-model="row.defaultType" @change="sourceListChang(row)" :options="value_sourceList_tree"
                        :validate="{ required: true }" />
                    </template>
                  </el-table-column>
                  <el-table-column label="默认值">
                    <template v-slot="{ row }">
                      <ht-input type="textarea" v-if="row.dbType != 'date' &&
                        row.defaultType == 2 &&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        " :autosize="{ minRows: 1, maxRows: 4 }" v-model="row.defaultValue" placeholder="请输入默认值"
                        autocomplete="off" :validate="{ required: row.defaultType == '2' }" :maxlength="200"
                        :showWordLimit="true"></ht-input>
                      <ht-date v-if="row.dbType == 'date' && row.defaultType !== '1'&&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        " v-model="row.defaultValue" :validate="{ required: row.defaultType == '2' }"
                        format="yyyy-MM-dd" />
                      <div v-if="row.dbType == 'date' && row.defaultType !== '1'&&
                        row.condition == 'BETWEEN' &&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        ">
                        <ht-date v-model="row.endDate" placeholder="选择结束日期" :validate="{ required: row.defaultType == '2' }"
                          format="yyyy-MM-dd" />
                      </div>
                      <!-- <ht-select
                          v-if="row.defaultType == '3'"
                          :options="scriptOptions"
                          style="width:100%"
                          placeholder="选择常用脚本"
                          filterable
                          @change="handleScriptSelect($event, row)"
                          v-model="row.selectScript"></ht-select> -->
                      <el-button @click="showScriptDialog(row)" type="text" style="float: left" v-if="row.defaultType == '3' &&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        ">选择脚本
                        <i class="el-icon-search"></i>
                      </el-button>
                      <ht-input type="textarea" v-if="row.defaultType == '3' &&
                        row.condition != 'NOTNULL' &&
                        row.condition != 'ISNULL'
                        " :autosize="{ minRows: 4, maxRows: 6 }" v-model="row.defaultValue" placeholder="请输入默认值"
                        autocomplete="off" validate="required" :maxlength="200" :showWordLimit="true"></ht-input>
                    </template>
                  </el-table-column>
                  <el-table-column label="控件类型" width="140">
                    <template v-slot="{ row }">
                      <ht-select v-if="row.defaultType == '1'
                          ? (row.controllerType = '1')
                          : (row.controllerType = '') &&
                          row.condition != 'NOTNULL' &&
                          row.condition != 'ISNULL'
                        " v-model="row.controllerType" :options="param_ctList" :validate="{ required: true }" />
                    </template>
                  </el-table-column>
                  <el-table-column label="操作" width="100">
                    <template v-slot="{ row, $index }">
                      <el-button size="mini" type="danger" icon="el-icon-delete" @click="
                        deleteSetting(treeSidebarData.conditionfield, $index)
                        ">删除</el-button>
                    </template>
                  </el-table-column>
                </el-table>
              </el-tab-pane>
              <el-tab-pane label="POST请求参数" name="dataParam" v-if="treeSidebarData.dsType != 'dataSource' &&
                treeSidebarData.requestType == 'POST'
                ">
                <div style="min-height: 320px">
                  <el-tag type="warning">以POST方式请求接口时传入的参数,参数中可以通过${field}传入条件字段中定义的参数。</el-tag>
                  <VariablesSelector :data="treeSidebarData.conditionfield" node-key="field"
                    :props="{ label: 'comment', children: 'children' }" @node-click="handleVarSelectorClick" />
                  <codemirror ref="dataParamCode" v-model="treeSidebarData.dataParam" :options="cmOptions" class="code"
                    style="width: 95%; min-height: 270px"></codemirror>
                </div>
              </el-tab-pane>
              <el-tab-pane label="排序字段" name="order" v-if="treeSidebarData.dsType == 'dataSource'">
                <el-table :data="treeSidebarData.sortfield" border>
                  <el-table-column prop="field" label="字段名" width="200" />
                  <el-table-column prop="comment" label="注解" width="200" />
                  <el-table-column label="排序类型">
                    <template v-slot="{ row }">
                      <ht-select v-model="row.sortType" :options="sort_typeList" :validate="{ required: true }" />
                    </template>
                  </el-table-column>
                  <el-table-column label="操作" width="100">
                    <template v-slot="{ row, $index }">
                      <el-button size="mini" type="danger" icon="el-icon-delete" @click="
                        deleteSetting(treeSidebarData.sortfield, $index)
                        ">删除</el-button>
                    </template>
                  </el-table-column>
                </el-table>
              </el-tab-pane>
              <el-tab-pane label="自定义SQL" name="custom" v-if="treeSidebarData.dsType == 'dataSource'">
                <el-checkbox v-model="isSqlBuildType">
                  自定义SQL
                  <el-tooltip class="item" effect="dark" placement="top">
                    <div slot="content">
                      <ul>
                        <li>
                          自定义SQL
                          <ul>
                            <li>if(map.get('ACTDEFID')!=null){</li>
                            <li>
                              return "select * from UC_USER where ACTDEFID like
                              '%"+map.get("ACTDEFID")+"%'";
                            </li>
                            <li>}</li>
                            <li>其中的map为系统所封装的一个参数</li>
                            <li>
                              在脚本中使用map.get('ACTDEFID')可以获取表单提交时所携带的ACTDEFID参数值,
                              脚本应拼接并返回任意的可执行的sql语句;同时,sql语句字段返回应该包含我们定义的
                              返回字段,和显示字段,通常使用select *
                              from的方式保证需求字段都在这个查询里面
                            </li>
                          </ul>
                        </li>
                      </ul>
                    </div>
                    <i class="icon-question" style="margin-right: 8px" />
                  </el-tooltip>
                </el-checkbox>
                <ht-select v-model="selectOp" @change="changeOptions()" :options="selectOptions"
                  :props="{ key: 'field', value: 'comment' }"></ht-select>
                <br />
                <br />
                <!--<el-button @click="getScriptList">常用脚本</el-button>-->
                <el-input type="textarea" :autosize="{ minRows: 12 }" placeholder="请输入内容" v-model="treeSidebarData.diySql"
                  @input="diySqlChange($event)"></el-input>
              </el-tab-pane>
            </el-tabs>
          </el-col>
        </el-row>
      </el-form>
    </ht-sidebar-dialog>
    <!-- 脚本选择对话框 -->
    <eip-script-dialog :appendToBody="true" ref="eipScriptDialog" @onConfirm="handleScriptSelected"></eip-script-dialog>
  </el-dialog>
</template>

<script>
import { Message } from 'element-ui'
import req from '@/request.js'
import portal from '@/api/portal.js'
const EipScriptDialog = () => import('@/components/dialog/EipScriptDialog.vue')
const EipSysTypeSelector = () =>
  import('@/components/selector/EipSysTypeSelector.vue')
export default {
  name: 'custom-query-dialog',
  components: {
    EipScriptDialog,
    EipSysTypeSelector
  },
  computed: {
    //保存关联查询数据的URL (关联查询新增修改时)
    saveUrl: function () {
      return window.context.form + '/form/customQuery/v1/save'
    },
    addColumnsTitle: function () {
      let statusWord = ''
      switch (this.tabStatus) {
        case 'condition':
          statusWord = '条件'
          break
        case 'return':
          statusWord = '返回'
          break
        case 'order':
          statusWord = '排序'
          break
      }
      return `将左侧所选字段添加到${statusWord}字段中`
    }
  },
  data() {
    return {
      apiOptions: [],
      apiProps: { key: 'alias', value: 'name' },
      isSqlBuildType: false,
      isSubmit: true, //侧边栏是否提交
      number_opList: [
        { value: '等于', key: 'EQ' },
        { value: '大于等于', key: 'GE' },
        { value: '大于', key: 'GT' },
        { value: '小于', key: 'LT' },
        { value: '小于等于', key: 'LE' },
        { value: 'in', key: 'IN' },
        { value: '等于空', key: 'ISNULL' },
        { value: '不等于空', key: 'NOTNULL' }
      ], //运算条件数组-number
      string_opList: [
        { value: '等于', key: 'EQ' },
        { value: 'like', key: 'LK' },
        { value: 'likeEnd', key: 'LFK' },
        { value: 'in', key: 'IN' },
        { value: '等于空', key: 'ISNULL' },
        { value: '不等于空', key: 'NOTNULL' }
      ], //运算条件数组-varchar
      date_opList: [
        { value: '等于', key: 'EQ' },
        // { value: "between", key: "BETWEEN" },
        { value: '大于等于', key: 'GE' },
        { value: '小于等于', key: 'LE' },
        { value: '等于空', key: 'ISNULL' },
        { value: '不等于空', key: 'NOTNULL' }
      ], //运算条件数组-日期
      value_sourceList_list: [
        { value: '参数传入', key: '1' },
        { value: '固定值', key: '2' },
        { value: '脚本', key: '3' }
      ], //值来源数组_列表
      value_sourceList_tree: [
        { value: '固定值', key: '2' },
        { value: '动态传入', key: '4' }
      ], //值来源数组_树
      sort_typeList: [
        { value: '升序', key: 'asc' },
        { value: '降序', key: 'desc' }
      ], //排序字段升序还是降序
      param_ctList: [{ value: '单行文本框', key: '1' }], //控制器的类型
      tabStatus: 'return', //设置列的条件字段、返回字段等的tabs标签页
      table: {}, //获取设置列获取字段信息
      titleSetting: '未命名-设置列', //设置列侧边栏的名称
      dialogVisibleSetting: false, //是否显示可配置设置列
      disabled: false, //是否禁止操作
      tableOrViewList: [], //数据源表
      objName: '', //查询数据源时表或视图名称
      title: '添加关联查询',
      data: [], //列表数据
      treeSidebarData: {
        diySql: '',
        pageSize: 100
      }, //关联查询的新增修改数据
      dataSourcesInBean: [], //数据源池
      isTableList: [
        {
          key: 0,
          value: '视图'
        },
        {
          key: 1,
          value: '表'
        }
      ], //表和视图
      dialogVisible: false, //侧边栏是否显示
      selectOptions: [],
      selectOp: '',
      cmOptions: {
        showCursorWhenSelecting: true,
        value: '',
        mode: 'application/json',
        readOnly: false,
        smartIndent: true,
        autofocus: true,
        tabSize: 2,
        theme: 'eclipse',
        lineNumbers: true,
        line: true,
        inputStyle: 'textarea'
      },
      innerValidation: true,
      scriptOptions: [],
      editConditionRow: {}
    }
  },
  methods: {
    loadInterfaceList() {
      portal.getApiList().then(data => {
        this.apiOptions = data
      })
    },
    changeOptions() {
      if (this.treeSidebarData.diySql) {
        this.treeSidebarData.diySql =
          this.treeSidebarData.diySql + this.selectOp
      } else {
        this.treeSidebarData.diySql = this.selectOp
      }
      this.selectOp = null
      this.$forceUpdate()
    },
    diySqlChange(e) {
      this.$forceUpdate()
    },
    handleVarSelectorClick(s, n) {
      if (n && n.data && n.data.field) {
        const fieldExp = '${' + n.data.field + '}'
        this.$refs.dataParamCode &&
          this.$refs.dataParamCode.codemirror.replaceSelection(fieldExp)
      }
    },
    //判断数据是否包含某个对象,并返回数据包含对象的下标
    indexArray(array, item) {
      if (array.length == 0) {
        return -1
      }
      for (let i = 0; i < array.length; i++) {
        if (JSON.stringify(array[i]) == JSON.stringify(item)) {
          return i
        }
      }
      return -1
    },
    //批量勾选设置列的字段
    handleSelectionChange(rows) {
      //先把所有选择的字段设置为未选中
      for (let i = 0; i < this.table.columnList.length; i++) {
        if (this.table.columnList[i].selected) {
          this.table.columnList[i].selected = false
        }
      }
      if (rows && rows.length > 0) {
        //再根据勾选的字段设置为选中
        for (let i = 0; i < rows.length; i++) {
          let res = this.indexArray(this.table.columnList, rows[i])
          this.table.columnList[res].selected = true
        }
      }
    },
    //保存设置列的内容
    save() {
      const this_ = this
      this_.$validator.validateAll('settingSave').then(result => {
        if (result) {
          for (let i in this.treeSidebarData.conditionfield) {
            let column = this.treeSidebarData.conditionfield[i]
            if (column.dbType == 'date' && column.condition == 'BETWEEN') {
              column.defaultValue += '|' + column.endDate
            }
          }
          if (!this_.treeSidebarData.diySql && this_.isSqlBuildType) {
            Message.warning('请添加sql语句')
            return
          }
          if (
            this.treeSidebarData.sortfield &&
            this.treeSidebarData.sortfield.length > 3
          ) {
            Message.warning('您添加的排序字段太多,最多只能添加3个排序字段!')
            return
          }
          this_.innerValidation = true
          this.dialogVisibleSetting = false
        } else {
          let arr = this_.$validator.errors.items.filter(
            item => item.scope == 'settingSave'
          )
          let errorLength = arr.length
          this_.$message({
            showClose: true,
            message: `有${errorLength}个字段未通过校验,请正确填写表单内容。`,
            type: 'warning'
          })
        }
      })
    },
    //关闭设置列弹框
    close() {
      let this_ = this
      this_.$validator.validateAll('settingSave').then(result => {
        if (!result) {
          this_.innerValidation = false
          this_.doClose()
          return
        }
        for (let i in this.treeSidebarData.conditionfield) {
          let column = this.treeSidebarData.conditionfield[i]
          if (column.dbType == 'date' && column.condition == 'BETWEEN') {
            column.defaultValue += '|' + column.endDate
          }
        }
        if (!this_.treeSidebarData.diySql && this_.isSqlBuildType) {
          this_.innerValidation = false
          this_.doClose()
          return
        }
        if (
          this.treeSidebarData.sortfield &&
          this.treeSidebarData.sortfield.length > 3
        ) {
          this_.innerValidation = false
          this_.doClose()
          return
        }
        this_.innerValidation = true
        this_.doClose()
      })
    },
    doClose() {
      this.dialogVisibleSetting = false
    },
    //添加设置列的字段
    addFields() {
      let column = {}
      column.fieldName = ''
      column.comment = ''
      column.columnType = 'varchar'
      this.table.columnList.push(column)
    },
    //把设置列的字段新增到条件字段、返回字段等
    addColumns() {
      //检查是否选择了列
      for (let i in this.table.columnList) {
        let c = this.table.columnList[i]
        if (c.selected) break
        if (i == this.table.columnList.length - 1) {
          if (i == this.table.columnList.length - 1) {
            Message.warning('请选择左边的列')
          }
        }
      }
      //判断tabs标签页是否选择了条件字段
      if (this.tabStatus == 'condition') {
        for (let i in this.table.columnList) {
          let c = this.table.columnList[i]
          if (!c.selected) continue
          let column = this.getCondition(c)
          let show = this.judgeAryData(
            this.treeSidebarData.conditionfield,
            column
          )
          if (show) {
            this.treeSidebarData.conditionfield.push(column)
          }
        }
        //去除重复项
        this.treeSidebarData.resultfield.unique(function (a, b) {
          return a.field == b.field
        })
        //判断tabs标签页是否选择了返回字段
      } else if (this.tabStatus == 'return') {
        for (let i in this.table.columnList) {
          let c = this.table.columnList[i]
          if (!c.selected) continue
          let column = this.getReturn(c)
          let show = this.judgeAryData(this.treeSidebarData.resultfield, column)
          if (show) {
            this.treeSidebarData.resultfield.push(column)
          }
        }
        //去除重复项
        this.treeSidebarData.resultfield.unique(function (a, b) {
          return a.field == b.field
        })
      } else if (this.tabStatus == 'order') {
        let errorMsg = ''
        //判断tabs标签页是否选择了排序字段
        for (let i in this.table.columnList) {
          let c = this.table.columnList[i]
          if (!c.selected) continue

          //大文本类型与一些未明确的字段类型不可作为排序字段
          if (c.columnType == 'clob' || !c.columnType) {
            errorMsg += c.fieldName + '  '
            continue
          }
          let column = this.getOrder(c)

          let show = this.judgeAryData(this.treeSidebarData.sortfield, column)
          if (show) {
            this.treeSidebarData.sortfield.push(column)
          }
        }
        if (errorMsg) {
          this.$message.error(
            '字段:' + errorMsg + '的字段类型不支持作为排序字段'
          )
        }
        //去除重复项
        this.treeSidebarData.sortfield.unique(function (a, b) {
          return a.field == b.field
        })
      }
    },
    getCondition(c) {
      let column = {}
      column.field = c.fieldName
      column.comment = c.comment
      column.condition = 'EQ'
      column.dbType = c.columnType
      column.defaultType = '2'
      column.defaultValue = ''
      return column
    },
    getReturn(c) {
      let column = {}
      column.field = c.fieldName
      column.comment = c.comment
      column.idKey = '0'
      column.AggFuncOp = '' //合计函数运算符
      column.columnType = c.columnType //字段类型
      return column
    },
    getOrder(c) {
      let column = {}
      column.field = c.fieldName
      column.sortType = 'asc'
      column.comment = c.comment
      return column
    },
    //判断是否存在重复字段
    judgeAryData(data, column) {
      let show = true
      for (var i = 0; i < data.length; i++) {
        if (
          data[i].field == column.field &&
          data[i].comment == column.comment
        ) {
          show = false
          break
        }
      }
      return show
    },
    //删除字段
    deleteSetting(list, index) {
      list.splice(index, 1)
    },
    sourceListChang(item) {
      //条件字段是参数传入或动态传入,但是固定值还有值,则清空固定值
      if (
        (item.defaultType == '1' || item.defaultType == '4') &&
        item.defaultValue != ''
      ) {
        for (let i = 0; i < this.treeSidebarData.conditionfield.length; i++) {
          if (
            (this.treeSidebarData.conditionfield[i].defaultType == '1' ||
              this.treeSidebarData.conditionfield[i].defaultType == '4') &&
            this.treeSidebarData.conditionfield[i].defaultValue != ''
          ) {
            this.treeSidebarData.conditionfield[i].defaultValue = ''
          }
        }
      }
      //如果选中了脚本类型,则加载脚本对话框
      if (item.defaultType == '3' && this.scriptOptions.length === 0) {
        item.defaultValue = ''
      }
      item.defaultValue = ''
    },
    //打开设置列弹框
    showSettingDialog() {
      if (
        !this.treeSidebarData.id &&
        this.treeSidebarData.dsType === 'dataSource' &&
        !this.treeSidebarData.objName
      ) {
        return this.$message.warning('请先查询表(视图)后,再进行设置!')
      }
      this.tabStatus = 'return' //默认打开返回字段
      this.dialogVisibleSetting = true
      if (
        this.treeSidebarData.conditionfield &&
        this.treeSidebarData.conditionfield.length > 0 &&
        this.selectOptions.length == 0
      ) {
        this.treeSidebarData.conditionfield.forEach(item => {
          if (item.defaultType == '1') {
            let selectOp = {}
            selectOp.field = item.field
            selectOp.comment = item.comment
            this.selectOptions.push(selectOp)
          }
        })
      }
      if (
        this.treeSidebarData.sqlBuildType === 0 ||
        !this.treeSidebarData.sqlBuildType
      ) {
        //如果点击详情页有勾选上,则说明此时isSqlBuildType有值,如果没值则进行初始化
        if (!this.isSqlBuildType) {
          this.isSqlBuildType = false
        }
      } else {
        this.isSqlBuildType = true
      }
      if (this.treeSidebarData.name) {
        this.titleSetting = this.treeSidebarData.name + '-设置列'
      } else {
        this.titleSetting = '未命名-设置列'
      }
      //打开设置如果是数据源,先获取数据源的字段
      if (this.treeSidebarData.dsType == 'dataSource') {
        let params = {
          dsalias: this.treeSidebarData.dsalias,
          isTable: this.treeSidebarData.isTable,
          objName: this.treeSidebarData.objName
        }
        const this_ = this
        //获取数据源的字段
        let url = window.context.form + '/form/customQuery/v1/getTable'
        req.post(url, params).then(function (data) {
          this_.table = data.data.table
          this_.handleFilterColumn()
        })
      }
      //打开设置列如果不是数据源
      if (this.treeSidebarData.dsType != 'dataSource') {
        //值来源数组_树改变如下
        this.value_sourceList_tree = [{ key: '固定值', value: '2' }]
        //判断REST接口是否是GET请求
        if (this.treeSidebarData.requestType == 'GET') {
          //运算条件数组-varchar改变如下
          this.string_opList = [{ value: '等于', key: 'EQ' }]
        } else {
          //运算条件数组-varchar改变如下
          this.string_opList = [{ value: 'like', key: 'LK' }]
        }
        if (this.treeSidebarData.conditionfield) {
          this.treeSidebarData.conditionfield.forEach(item => {
            if (item.defaultValue == '1') {
              let selectOp = {}
              selectOp.field = item.field
              selectOp.comment = item.comment
              this.selectOptions.push(selectOp)
            }
          })
        }
        //字段设置为空
        this.table = { columnList: [] }
      }
    },
    //查询数据源表或视图
    getByDsObjectName() {
      if (this.treeSidebarData.id) {
        return
      }
      if (this.treeSidebarData.dsalias == null) {
        Message.warning('请选择数据源')
        return
      }
      this.params = {}
      this.params.dsalias = this.treeSidebarData.dsalias
      this.params.isTable = this.treeSidebarData.isTable
      this.params.objName = this.objName
      const this_ = this
      let url = window.context.form + '/form/customQuery/v1/getByDsObjectName'
      req.post(url, this_.params).then(function (data) {
        this_.tableOrViewList = [] //每次查询前先设置为空
        if (!data || data.data.length == 0) {
          Message.warning('该数据源中未查询到表或视图')
          return
        }
        Message.success('查询成功')
        for (let i = 0; i < data.data.length; i++) {
          data.data[i].comment =
            data.data[i].name + '(' + data.data[i].comment + ')'
          this_.tableOrViewList.push(data.data[i])
        }
        //选择表或试图时默认选择第一个
        this_.treeSidebarData.objName = this_.tableOrViewList[0].name
      })
    },
    //关闭侧边栏
    handleClose() {
      this.treeSidebarData = {} //清除保存过的数据
      this.isSqlBuildType = false
      this.dialogVisible = false
    },
    //关联查询新增修改保存后操作
    afterSaveData() {
      if (this.treeSidebarData.conditionfield.length == 0) {
        this.selectOptions = []
      }
      this.dialogVisible = false
      this.$emit('afterSaveCustomDialog', this.treeSidebarData)
    },
    //关联查询新增修改保存前操作
    beforeSaveData() {
      if (!this.innerValidation) {
        Message.warning(
          '设置列校验失败,请进入设置列中完善信息并点击右上角保存按钮'
        )
        this.isSubmit = false
        return
      }
      //如果数据来源不是数据源则没有所属数据源
      if (this.treeSidebarData.dsType != 'dataSource') {
        this.treeSidebarData.dsalias = ''
      }
      //sql生成的方式(0:页面设置 1:diy)
      if (this.isSqlBuildType) {
        this.treeSidebarData.sqlBuildType = 1
      } else {
        this.treeSidebarData.sqlBuildType = 0
      }
      if (
        this.treeSidebarData.dsType == 'dataSource' &&
        !this.treeSidebarData.id
      ) {
        if (this.treeSidebarData.objName == '') {
          Message.warning('请选择表或视图')
          this.isSubmit = false
          return
        }
      }
      if (this.treeSidebarData.dsType == 'selectedApi') {
        if (
          !this.treeSidebarData.apiAlias ||
          this.treeSidebarData.apiAlias == ''
        ) {
          Message.warning('请选择接口')
          this.isSubmit = false
          return
        }
      } else {
        if (this.treeSidebarData.resultfield.length == 0) {
          Message.warning('请设置需要返回的字段')
          this.isSubmit = false
          return
        }
      }
      this.isSubmit = true
      //保存成功后清除vuex中的数据,预览时不用再刷新
      this.$store.dispatch('form/clearCustomQuery', this.treeSidebarData.alias)
    },
    //如果是选择接口方式,获取接口信息
    selectedApiChange() {
      if (this.treeSidebarData.dsType != 'selectedApi') {
        return
      }
      portal
        .getApiDetailByAlias(this.treeSidebarData.apiAlias)
        .then(apiDetail => {
          if (
            apiDetail.connectionType &&
            apiDetail.connectionType == 'dataSource' &&
            apiDetail.dbDetail
          ) {
            //数据源
            const { conditionfield, resultfield } = apiDetail.dbDetail
            this.treeSidebarData.conditionfield = this.convertDefaultType(
              JSON.parse(conditionfield)
            )
            this.treeSidebarData.resultfield = JSON.parse(resultfield)
            this.treeSidebarData.diySql = diySql
          }
          if (
            apiDetail.connectionType &&
            apiDetail.connectionType == 'restful' &&
            apiDetail.restfulDetail
          ) {
            //restful接口
            const {
              conditionfield,
              resultfield,
              dataParam
            } = apiDetail.restfulDetail
            this.treeSidebarData.conditionfield = this.convertDefaultType(
              JSON.parse(conditionfield)
            )
            this.treeSidebarData.resultfield = JSON.parse(resultfield)
            this.treeSidebarData.dataParam = dataParam
          }
          this.treeSidebarData.listKey = ''
        })
    },
    //conditionfield 参数传入类型 在集成接口中为4,而元件中为1
    convertDefaultType(conditionFields) {
      if (
        conditionFields &&
        conditionFields.constructor == Array &&
        conditionFields.length > 0
      ) {
        conditionFields.forEach(c => {
          // 参数传入时获取传入的params中的同名参数值
          if (c.defaultType == '4') {
            c.defaultType = '1'
            c.controllerType = '1'
          }
        })
      }
      return conditionFields
    },
    //点击按钮打开侧边栏
    showDialog(action, id) {
      this.dialogVisible = true
      if (action) {
        this.objName = ''
        if (action == 'add') {
          this.title = '添加关联查询'
          this.disabled = false
          this.treeSidebarData = {
            objName: '',
            conditionfield: [],
            resultfield: [],
            sortfield: [],
            needPage: 1,
            dsType: 'dataSource',
            isTable: 1,
            dsalias: 'LOCAL',
            alias: '',
            requestType: 'POST',
            pageKey: 'page',
            pageSizeKey: 'pageSize',
            totalKey: 'total',
            listKey: '',
            name: '',
            pageSize: 100,
            apiAlias: ''
          }
        } else if (action == 'edit') {
          this.disabled = true
          this.title = '编辑关联查询'
          this.getDialogById(id) //根据关联查询信息ID查询关联查询所有信息\
        }
      }
    },
    //根据关联查询信息ID查询关联查询所有信息
    getDialogById(id, action) {
      const this_ = this
      if (!id) return
      let url = window.context.form + '/form/customQuery/v1/' + id
      req.get(url).then(function (data) {
        data = data.data
        this_.treeSidebarData = data
        this_.treeSidebarData.resultfield = JSON.parse(data.resultfield)
        this_.treeSidebarData.sortfield = JSON.parse(data.sortfield)
        this_.treeSidebarData.conditionfield = JSON.parse(data.conditionfield)
        //编辑时,初始化自定义sql的复选框的值
        this_.isSqlBuildType = !!this_.treeSidebarData.sqlBuildType
        //如果是选择接口类型,更新数据 resultfield和conditionfield
        this_.selectedApiChange()

        //添加为对话框
        if (action && action == 'add') {
          if (this_.treeSidebarData.needPage == 0) {
            this_.treeSidebarData.needPage = false
          } else {
            this_.treeSidebarData.needPage = true
          }
          for (let i = 0; i < this_.treeSidebarData.resultfield.length; i++) {
            this_.treeSidebarData.resultfield[i].idKey = '0'
            this_.treeSidebarData.resultfield[i].AggFuncOp = '' //合计函数运算符
          }
          let url =
            window.context.form + '/form/customQuery/v1/saveDialogByQuery'
          req.post(url, this_.treeSidebarData).then(function (rep) {
            rep = rep.data
            if (rep && rep.state) {
              Message.success(rep.message)
            }
          })
        }
      })
    },
    //页面加载显示数据
    loadData(param, cb) {
      // param.sorter = [{ property: "CREATE_TIME_", direction: "DESC" }]; //排序字段
      req
        .post(window.context.form + '/form/customQuery/v1/list', param)
        .then(response => {
          this.data = response.data.rows
          this.pageResult = {
            page: response.data.page,
            pageSize: response.data.pageSize,
            total: response.data.total
          }
        })
        .finally(() => cb())
    },
    // 设置参数的面板中tab切换时
    handleTabSwitch(m) {
      if (m.name == 'dataParam') {
        this.$refs.dataParamCode && this.$refs.dataParamCode.refresh()
      }
      // 选中自定义SQL tab
      if (m.name == 'custom') {
        // 清空自定义sql条件字段
        this.selectOptions.splice(0, this.selectOptions.length)
        if (this.treeSidebarData.conditionfield) {
          this.treeSidebarData.conditionfield.forEach(item => {
            if (item.defaultType == '1') {
              let selectOp = {}
              selectOp.field = item.field
              selectOp.comment = item.comment
              this.selectOptions.push(selectOp)
            }
          })
        }
      }
    },
    handleFilterColumn() {
      for (let i = this.table.columnList.length - 1; i >= 0; i--) {
        if (
          this.table.columnList[i].fieldName &&
          this.table.columnList[i].fieldName.toLowerCase() == 'f_form_data_rev_'
        ) {
          this.table.columnList.splice(i, 1)
        }
      }
    },
    fillToCondition(row, event, column) {
      if (this.tabStatus == 'condition') {
        let col = this.getCondition(row)
        if (this.judgeAryData(this.treeSidebarData.conditionfield, col)) {
          this.treeSidebarData.conditionfield.push(col)
        } else {
          this.$message.warning('该字段已存在')
        }
      } else if (this.tabStatus == 'return') {
        let col = this.getReturn(row)
        if (this.judgeAryData(this.treeSidebarData.resultfield, col)) {
          this.treeSidebarData.resultfield.push(col)
        } else {
          this.$message.warning('该字段已存在')
        }
      } else if (this.tabStatus == 'order') {
        if (!row.columnType == 'clob' || !row.columnType) {
          this.$message.warning('该字段不支持排序')
          return
        }
        let col = this.getOrder(row)
        if (this.judgeAryData(this.treeSidebarData.sortfield, col)) {
          this.treeSidebarData.sortfield.push(col)
        } else {
          this.$message.warning('该字段已存在')
        }
      }
    },
    // loadScriptOptions(){
    //   this.scriptOptions.splice(0);
    //   this.$http.get("${bpmRunTime}/runtime/script/v1/getAllScript").then(resp=>{
    //     resp.data.forEach(item=>{
    //       this.scriptOptions.push({
    //         value: item.name,
    //         key: item.id,
    //         script: item.script
    //       })
    //     })
    //   })
    // },
    // handleScriptSelect(id, row){
    //   let script = this.scriptOptions.filter(item=>{
    //     return item.key === id
    //   })[0].script;
    //   row.defaultValue = row.defaultValue + script;
    //   this.$nextTick(()=>{
    //     row.selectScript = "";
    //   })
    // },
    // handleInitScriptOptions(){
    //   if(!this.treeSidebarData.conditionfield
    //     || this.treeSidebarData.conditionfield.length == 0
    //     || this.scriptOptions.length !==0){
    //     return ;
    //   }
    //   let hasScript = false;
    //   this.treeSidebarData.conditionfield.forEach(row=>{
    //     if(row.defaultType === "3"){
    //       hasScript = true;
    //     }
    //   })
    //   if(!hasScript){
    //     return ;
    //   }
    //   this.loadScriptOptions();
    // },
    handleScriptSelected(script, name) {
      this.editConditionRow.defaultValue =
        this.editConditionRow.defaultValue + script
    },
    showScriptDialog(row) {
      this.$refs.eipScriptDialog.showDialog()
      this.editConditionRow = row
    },
    // 表格单击切换选中状态
    clickRow(row) {
      this.$refs.htTableSetting.toggleRowSelection(row)
    }
  },
  mounted() {
    this.$validator = this.$root.$validator
    const this_ = this
    //获取数据源池
    req
      .get(window.context.portal + '/sys/sysDataSource/v1/getDataSources')
      .then(function (data) {
        this_.dataSourcesInBean = data.data
      })
    //获取集成管理的接口列表
    this.loadInterfaceList()
  }
}
</script>
<style lang="scss" scoped>
div>>>.el-dialog__body {
  padding: 10px 20px;
  color: #606266;
  font-size: 14px;
  word-break: break-all;
  height: calc(100% - 140px);
  overflow-y: auto;
}

.cd-column__dialog {
  /deep/.el-dialog__body {
    height: calc(100% - 100px);
  }
}

.todo-subject {
  cursor: pointer;
}

.todo-subject:hover {
  color: #2761ff;
}

.ht {
  width: 320px;
}

.cd-column__dialog /deep/ .el-dialog>.el-dialog__header {
  padding: 8px 20px;
}

.label-tooltip {
  width: 0px;
}

.condition-table {
  ::v-deep {
    .inputs {
      width: unset;
    }
  }
}

@media (max-width: 1024px) {
  /deep/ .search-container__col {
    flex-wrap: wrap;

    .el-button-group {
      margin-top: 10px;
    }
  }
}

/deep/.el-dialog__wrapper {
  overflow: unset !important;
}

/deep/.el-dialog {
  height: 70%;
  min-height: 400px;
}

/deep/.el-dialog__body .selector-table {
  height: 100% !important;
}

/deep/.el-form-item__error {
  position: unset;
}

/deep/.el-dialog .el-dialog__body .select-tree-div {
  height: calc(100% - 60px);
  min-height: unset;
}

@media (max-height: 960px) {
  /deep/.el-dialog__body .el-container {
    height: 100% !important;
  }
}

/deep/ [name='uploadDialog'] {
  // height:30%;
}

/deep/ .el-dialog.upload-dialog {
  height: unset;

  /deep/.el-dialog__body {
    height: unset;
  }

  .upload-dialog__content {
    height: 150px;
  }

  min-height: unset;
}

.form-table__wrap,
.form-table__row,
.form-table__left,
.form-table__right {
  height: 100%;
}

.form-table__left,
.form-table__right {
  overflow-y: auto;
}

/deep/.CodeMirror {
  height: 100%;
}

::v-deep .editCustomDialog {
  label.el-radio-horizontal {
    margin-bottom: 0;
  }
  .inputs {
    width: 100%;
  }

  .flex_wrap {
    display: flex;
    align-items: center;
  }
}
</style>