MatrixManager.vue 45.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
<template>
  <el-container class="fullheight" style="border: 1px solid #eee">
    <ht-aside-tree
      type-key="jzfl"
      @node-click="handleNodeClick"
      @check="treeCheck"
    />
    <el-container>
      <el-main>
        <ht-table
          @load="loadData"
          :data="data"
          :pageResult="pageResult"
          :selection="true"
          quick-search-props="code,name"
          :show-export="false"
          :show-custom-column="false"
          :default-querys="defaultQuerys"
          ref="htTable"
          @row-click="rowClick"
          @selection-change="handleSelectionChange"
        >
          <template v-slot:toolbar>
            <!-- <el-button-group> -->
            <el-button
              size="small"
              @click="showDialog()"
              icon="el-icon-plus"
              type="primary"
              >添加</el-button
            >
            <el-button
              size="small"
              @click="
                importDialogVisible = true
                typeSelectorCatId = ''
                typeSelectorCatName = ''
              "
              icon="el-icon-download"
              >导入</el-button
            >
            <el-button
              size="small"
              @click="handExport"
              icon="el-icon-upload2"
              :disabled="isDisabled"
              >导出</el-button
            >
            <ht-delete-button
              url="${uc}/uc/matrix/v1/remove"
              :htTable="$refs.htTable"
              :alertMessage="false"
              @after-delete="afterDelete"
              style="margin-left: 10px"
              :disabled="isDisabled"
              >删除</ht-delete-button
            >
            <!-- </el-button-group> -->
          </template>
          <template>
            <ht-table-column
              type="index"
              width="50"
              align="center"
              label="序号"
            />
            <ht-table-column
              prop="name"
              label="名称"
              :sortable="true"
              :show-overflow-tooltip="true"
            >
              <template v-slot="{row}">
                <el-link
                  type="primary"
                  @click="showDialog(row.id)"
                  title="查看详情"
                  >{{ row.name }}</el-link
                >
              </template>
            </ht-table-column>
            <ht-table-column
              prop="code"
              label="别名"
              :sortable="true"
              :show-overflow-tooltip="true"
            ></ht-table-column>
            <ht-table-column
              prop="typeName"
              label="分类名称"
              :sortable="true"
              :show-overflow-tooltip="true"
            ></ht-table-column>
            <!-- <ht-table-column
              prop="managerName"
              label="管理员"
              :sortable="true"
              :show-overflow-tooltip="true"
            ></ht-table-column> -->
            <ht-table-column prop="status" label="状态" :sortable="true">
              <template v-slot="{row}">
                <el-tag v-if="row.status === 0">待发布</el-tag>
                <el-tag type="success" v-if="row.status === 1">已发布</el-tag>
              </template>
            </ht-table-column>
            <!-- <ht-table-column
              prop="isDele"
              label="删除状态"
              :sortable="true"
              :show-overflow-tooltip="true"
            >
              <template v-slot="{row}">
                <el-tag v-if="row.isDele === 0">未删</el-tag>
                <el-tag type="danger" v-if="row.isDele === 1">已删</el-tag>
              </template>
            </ht-table-column> -->
            <ht-table-column
              prop="createTime"
              label="创建时间"
              :sortable="true"
              :show-overflow-tooltip="true"
            ></ht-table-column>
            <ht-table-column
              prop="enabled"
              label="启用状态"
              :sortable="true"
              width="180"
            >
              <template v-slot="{row}">
                <ht-switch
                  style="width:100%;"
                  v-if="row.status === 1"
                  v-model="row.enabled"
                  :permission="permissionVal"
                  active-text="启用"
                  inactive-text="禁用"
                  :active-value="1"
                  :inactive-value="0"
                  @change="
                    () => {
                      radioEnabledChange(row)
                    }
                  "
                ></ht-switch>
              </template>
            </ht-table-column>
            <ht-table-column label="操作" width="260" align="left">
              <template v-slot="{row}">
                <div v-if="row.status != 0">
                  <el-button
                    type="text"
                    @click="handleCommand({row: row, action: 'toDataList'})"
                    >人员设置</el-button
                  >
                  <el-button
                    type="text"
                    class="copy-btn"
                    @click="handleCommand({row: row, action: 'setManager'})"
                    >设置管理员</el-button
                  >
                  <el-button
                    type="text"
                    class="copy-btn"
                    @click="
                      handleCommand({row: row, action: 'getFlowBindRelation'})
                    "
                    >绑定的流程</el-button
                  >
                </div>
                <div v-if="row.status === 0">
                  <el-button
                    type="text"
                    @click="handleCommand({row: row, action: 'toDataList'})"
                    >人员设置</el-button
                  >
                  <el-button
                    type="text"
                    class="copy-btn"
                    @click="handleCommand({row: row, action: 'setManager'})"
                    >设置管理员</el-button
                  >
                  <el-dropdown
                    size="mini"
                    class="more-operate-btn__dropdown"
                    trigger="click"
                    @command="handleCommand"
                    v-if="row.status === 0"
                  >
                    <span class="more-operate-btn"
                      >更多操作<i class="el-icon-caret-bottom"></i>
                    </span>
                    <el-dropdown-menu
                      slot="dropdown"
                      class="operate-dropdown__button"
                    >
                      <el-dropdown-item
                        :command="{row: row, action: 'publish'}"
                        v-if="row.status === 0"
                        >发布</el-dropdown-item
                      >
                      <!--  <el-dropdown-item
                      :command="{row: row, action: 'toDataList'}"
                      >人员设置</el-dropdown-item
                    > -->
                      <!-- <el-dropdown-item
                        :command="{row: row, action: 'setManager'}"
                        >设置管理员</el-dropdown-item
                      > -->
                      <el-dropdown-item
                        :command="{row: row, action: 'getFlowBindRelation'}"
                        >绑定的流程</el-dropdown-item
                      >
                    </el-dropdown-menu>
                  </el-dropdown>
                </div>
              </template>
            </ht-table-column>
          </template>
        </ht-table>

        <ht-sidebar-dialog
          width="100%"
          title="矩阵配置"
          class="cd-column__dialog"
          :visible.sync="dialogVisible"
          :close-on-click-modal="false"
          :before-close="close"
          :show-close="false"
          append-to-body
        >
          <template slot="title">
            <div class="flex" style="justify-content: space-between">
              <el-page-header
                @back="dialogVisible = false"
                content="矩阵配置"
              ></el-page-header>
              <el-button-group>
                <ht-submit-button
                  url="${uc}/uc/matrix/v1/save"
                  :model="matrix"
                  scope-name="matrixForm"
                  @before-save-data="beforeSaveData"
                  @after-save-data="afterSaveData"
                  :isSubmit="isSubmit"
                  >保 存</ht-submit-button
                >
                <el-button @click="dialogVisible = false">取 消</el-button>
              </el-button-group>
            </div>
          </template>
          <el-form data-vv-scope="matrixForm" ref="matrixForm">
            <el-row :gutter="20">
              <el-col :span="6">
                <el-card class="box-card base-info">
                  <div slot="header" class="clearfix">
                    <span>基本信息</span>
                  </div>
                  <ht-form-item label="矩阵分类">
                    <EipSysTypeSelector
                      placeholder="请选择分类"
                      typeKey="jzfl"
                      v-model="matrix.typeName"
                      :sys-type-id.sync="matrix.typeId"
                      :validate="{required: true}"
                      class="sys-type-selector"
                    />
                  </ht-form-item>
                  <ht-form-item label="矩阵名称">
                    <ht-input
                      v-model="matrix.name"
                      autocomplete="off"
                      :maxlength="28"
                      :showWordLimit="true"
                      :validate="{required: true, max: 28}"
                      placeholder="请输入矩阵名称"
                    />
                  </ht-form-item>
                  <ht-form-item label="矩阵别名">
                    <ht-input
                      v-model="matrix.code"
                      v-pinyin="matrix.name"
                      name="matrixName"
                      :validate="{
                        required: true,
                        regex: {
                          exp: '^[a-zA-Z][a-zA-Z0-9_]{0,28}$',
                          message:
                            '只能输入字母、数字、下划线,且以字母开头,长度不能超过28'
                        }
                      }"
                      :disabled="matrix.id ? true : false"
                      :maxlength="28"
                      :showWordLimit="true"
                      autocomplete="off"
                      placeholder="请输入矩阵别名"
                    />
                  </ht-form-item>
                </el-card>
              </el-col>
              <el-col :span="18">
                <el-tabs v-model="tabStatus" type="border-card">
                  <el-tab-pane label="审批条件(列)" name="cond">
                    <span slot="label">
                      审批条件(列)
                      <el-button
                        size="mini"
                        circle
                        @click="addCol(matrix.condList, '', '审批条件')"
                        title="添加条件字段"
                      >
                        <i class="el-icon-plus"></i>
                      </el-button>
                      <div></div>
                    </span>
                    <el-table :data="matrix.condList" border>
                      <el-table-column label="条件名称" width="245">
                        <template v-slot="{row, $index}">
                          <ht-input
                            v-model="row.name"
                            placeholder="请输入条件名称"
                            autocomplete="off"
                            validate="required"
                            :maxlength="20"
                            show-word-limit
                            @blur="
                              chineseFormat(
                                matrix.condList,
                                row.name,
                                'code',
                                $index
                              )
                            "
                          ></ht-input>
                        </template>
                      </el-table-column>
                      <el-table-column prop="code" label="条件别名" width="245">
                        <template v-slot="{row}">
                          <ht-input
                            v-model="row.code"
                            placeholder="请输入条件别名"
                            autocomplete="off"
                            :maxlength="20"
                            show-word-limit
                            :validate="
                              'required: true|regex:^[a-zA-Z][a-zA-Z0-9_]*$,只能输入字母、数字、下划线,且以字母开头'
                            "
                            :disabled="row.id ? true : false"
                          ></ht-input>
                        </template>
                      </el-table-column>
                      <el-table-column
                        prop="ctrlType"
                        label="输入框类型"
                        width="245"
                      >
                        <template v-slot="{row, $index}">
                          <ht-select
                            clearable
                            v-model="row.ctrlType"
                            :options="[
                              {key: 'select', value: '关联查询'},
                              {key: 'dialog', value: '对话框'}
                            ]"
                            validate="required"
                            @change="ctrlTypeChange(matrix.condList, $index)"
                          />
                        </template>
                      </el-table-column>
                      <el-table-column
                        prop="queryAlias"
                        label="数据来源"
                        width="300"
                      >
                        <template v-slot="{row}">
                       <div class="queryAlias">
                           <ht-select
                            clearable
                            filterable
                            v-if="row.ctrlType == 'select'"
                            v-model="row.queryAlias"
                            :options="customQuerys"
                            :props="{key: 'alias', value: 'name'}"
                            validate="required"
                            @change="
                              () => {
                                row.bindKey = ''
                                row.bindValue = ''
                              }
                            "
                          />
                          <ht-select
                            clearable
                            v-if="row.ctrlType == 'dialog'"
                            v-model="row.queryAlias"
                            :options="customDialogs"
                            :props="{key: 'alias', value: 'name'}"
                            @change="
                              () => {
                                row.bindKey = ''
                                row.bindValue = ''
                              }
                            "
                          />
                          <el-button
                            size="mini"
                            style="margin-left: 5px;"
                            icon="el-icon-refresh"
                            @click="refreshConfig(row.ctrlType)"
                          ></el-button>
                       </div>
                        </template>
                      </el-table-column>
                      <el-table-column
                        prop="bindKey"
                        label="值来源"
                        width="245"
                      >
                        <template v-slot="{row}">
                          <ht-select
                            clearable
                            v-if="row.ctrlType == 'select'"
                            v-model="row.bindKey"
                            :options="
                              getResultField(row.ctrlType, row.queryAlias)
                            "
                            :props="{key: 'field', value: 'comment'}"
                            validate="required"
                          />
                          <ht-select
                            clearable
                            v-if="row.ctrlType == 'dialog'"
                            v-model="row.bindKey"
                            :options="
                              getResultField(row.ctrlType, row.queryAlias)
                            "
                            :props="{key: 'field', value: 'comment'}"
                            validate="required"
                          />
                        </template>
                      </el-table-column>
                      <el-table-column
                        prop="bindValue"
                        label="名称来源"
                        width="245"
                      >
                        <template v-slot="{row}">
                          <ht-select
                            clearable
                            v-if="row.ctrlType == 'select'"
                            v-model="row.bindValue"
                            :options="
                              getResultField(row.ctrlType, row.queryAlias)
                            "
                            :props="{key: 'field', value: 'comment'}"
                            validate="required"
                          />
                          <ht-select
                            clearable
                            v-if="row.ctrlType == 'dialog'"
                            v-model="row.bindValue"
                            :options="
                              getResultField(row.ctrlType, row.queryAlias)
                            "
                            :props="{key: 'field', value: 'comment'}"
                            validate="required"
                          />
                        </template>
                      </el-table-column>
                      <el-table-column
                        prop="status"
                        label="发布状态"
                        width="80"
                      >
                        <template v-slot="{row}">
                          <el-tag v-if="row.status === 0">待发布</el-tag>
                          <el-tag type="success" v-if="row.status === 1"
                            >已发布</el-tag
                          >
                        </template>
                      </el-table-column>
                      <el-table-column label="操作" width="180">
                        <template v-slot="{row, $index}">
                          <el-button-group>
                            <el-button
                              icon="el-icon-caret-top"
                              size="mini"
                              title="上移"
                              :disabled="$index === 0"
                              @click="upGo(matrix.condList, $index)"
                            ></el-button>
                            <el-button
                              icon="el-icon-caret-bottom"
                              size="mini"
                              title="下移"
                              :disabled="$index === matrix.condList.length - 1"
                              @click="downGo(matrix.condList, $index)"
                            ></el-button>
                            <el-button
                              size="mini"
                              icon="el-icon-delete"
                              @click="deleteCol(matrix.condList, $index)"
                            ></el-button>
                          </el-button-group>
                        </template>
                      </el-table-column>
                    </el-table>
                  </el-tab-pane>

                  <!-- 角色字段 -->
                  <el-tab-pane label="审批角色" name="role">
                    <span slot="label">
                      审批角色
                      <el-button
                        size="mini"
                        circle
                        @click="addCol(matrix.roleList, '', '审批角色')"
                        title="添加角色字段"
                      >
                        <i class="el-icon-plus"></i>
                      </el-button>
                    </span>
                    <el-table :data="matrix.roleList" border>
                      <el-table-column label="角色名">
                        <template v-slot="{row, $index}">
                          <ht-input
                            v-model="row.name"
                            placeholder="请输入角色名"
                            autocomplete="off"
                            validate="required"
                            :maxlength="20"
                            show-word-limit
                            @blur="
                              chineseFormat(
                                matrix.roleList,
                                row.name,
                                'code',
                                $index
                              )
                            "
                          ></ht-input>
                        </template>
                      </el-table-column>
                      <el-table-column prop="code" label="角色别名">
                        <template v-slot="{row}">
                          <ht-input
                            v-model="row.code"
                            placeholder="请输入角色别名"
                            autocomplete="off"
                            :maxlength="20"
                            show-word-limit
                            :validate="
                              'required: true|regex:^[a-zA-Z][a-zA-Z0-9_]*$,只能输入字母、数字、下划线,且以字母开头'
                            "
                            :disabled="row.id ? true : false"
                          ></ht-input>
                        </template>
                      </el-table-column>
                      <el-table-column prop="code" label="单选多选">
                        <template v-slot="{row}">
                          <ht-radio
                            v-model="row.selectType"
                            :options="[
                              {key: 1, value: '单选'},
                              {key: 2, value: '多选'}
                            ]"
                            validate="required"
                            v-show="
                              row.selectType
                                ? (row.selectType = row.selectType)
                                : (row.selectType = 1)
                            "
                          />
                        </template>
                      </el-table-column>
                      <el-table-column
                        prop="status"
                        label="发布状态"
                        width="80"
                      >
                        <template v-slot="{row}">
                          <el-tag v-if="row.status === 0">待发布</el-tag>
                          <el-tag type="success" v-if="row.status === 1"
                            >已发布</el-tag
                          >
                        </template>
                      </el-table-column>
                      <el-table-column label="操作">
                        <template v-slot="{row, $index}">
                          <el-button-group>
                            <el-button
                              icon="el-icon-caret-top"
                              size="mini"
                              title="上移"
                              :disabled="$index === 0"
                              @click="upGo(matrix.roleList, $index)"
                            ></el-button>
                            <el-button
                              icon="el-icon-caret-bottom"
                              size="mini"
                              title="下移"
                              :disabled="$index == matrix.roleList.length - 1"
                              @click="downGo(matrix.roleList, $index)"
                            ></el-button>
                            <el-button
                              size="mini"
                              icon="el-icon-delete"
                              @click="deleteCol(matrix.roleList, $index)"
                            ></el-button>
                          </el-button-group>
                        </template>
                      </el-table-column>
                    </el-table>
                  </el-tab-pane>

                  <!-- 查询条件字段 -->
                  <el-tab-pane label="查询条件" name="searchField">
                    <span slot="label">
                      查询条件
                      <!--                      <el-button size="mini" circle @click="addCol(matrix.roleList)" title="添加查询条件字段">-->
                      <!--                        <i class="el-icon-plus"></i>-->
                      <!--                      </el-button>-->
                    </span>
                    <el-table :data="matrix.roleList" border>
                      <el-table-column label="角色名">
                        <template v-slot="{row, $index}">
                          <ht-input
                            v-model="row.name"
                            placeholder="请输入角色名"
                            autocomplete="off"
                            validate="required"
                            :maxlength="20"
                            show-word-limit
                            @blur="
                              chineseFormat(
                                matrix.roleList,
                                row.name,
                                'code',
                                $index
                              )
                            "
                          ></ht-input>
                        </template>
                      </el-table-column>
                      <el-table-column label="操作">
                        <template v-slot="{row, $index}">
                          <ht-checkbox
                            v-model="row.searchField"
                            :options="[{value: '作为可选条件', key: '0'}]"
                          ></ht-checkbox>
                          <!--                          <el-button-group>-->
                          <!--                            <el-button-->
                          <!--                                size="mini"-->
                          <!--                                icon="el-icon-delete"-->
                          <!--                                @click="deleteCol(matrix.roleList,$index)"-->
                          <!--                            ></el-button>-->
                          <!--                          </el-button-group>-->
                        </template>
                      </el-table-column>
                    </el-table>
                  </el-tab-pane>
                </el-tabs>
              </el-col>
            </el-row>
          </el-form>
        </ht-sidebar-dialog>
      </el-main>
    </el-container>

    <ht-load-data
      ref="customQueryRef"
      url="/form/customQuery/v1/list"
      requestMethod="post"
      context="form"
      @after-load-data="afterCustomQueryLoadData"
    ></ht-load-data>
    <!-- 获取对话框选项列表-->
    <ht-load-data
      ref="customDialogRef"
      url="/form/customDialog/v1/getAll"
      requestMethod="get"
      context="form"
      @after-load-data="afterCustomDialogLoadData"
    ></ht-load-data>
    <ht-user-dialog
      ref="eipUserDialog"
      name="eipUserDialog"
      :single="true"
      @on-confirm="saveManager"
      append-to-body
    />
    <matrix-flow-bind-relation-dialog
      ref="matrixFlowBindRelationDialog"
      :matrix-code="matrixCode"
    />
    <!-- 设置管理员 -->
    <MatrixAuthManager ref="MatrixAuthManager"></MatrixAuthManager>
    <el-dialog
      title="导入关系矩阵"
      :visible.sync="importDialogVisible"
      width="40%"
      top="30vh"
      :close-on-click-modal="false"
      v-if="importDialogVisible"
    >
      <div style="height:150px;padding-left: 20px ;">
        <eip-sys-type-selector
          placeholder="请选择分类"
          type-key="jzfl"
          v-model="typeSelectorCatName"
          :sys-type-id.sync="typeSelectorCatId"
          :validate="{required: true}"
        />
        <br />
        <br />
        <el-upload
          style="display: inline-block;"
          :action="imporCheckUrl"
          :on-success="hadleUploadResult"
          :on-error="hadleUploadResult"
          :headers="uploadHeaders"
          :on-exceed="onExceed"
          accept=".zip"
          :before-upload="beforeUpload"
          :limit="1"
          :data="{isCheck: true}"
          :auto-upload="false"
          ref="upload"
        >
          <el-button size="small" icon="el-icon-upload">选择文件</el-button>
        </el-upload>
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="importDialogVisible = false">取 消</el-button>
        <el-button
          type="primary"
          @click="submitImport"
          element-loading-text="拼命导入中"
          v-loading.fullscreen.lock="fullscreenLoading"
          >确 定</el-button
        >
      </span>
    </el-dialog>
  </el-container>
</template>

<script>
const MatrixAuthManager = () => import('@/views/uc/MatrixAuthManager.vue')
const htAsideTree = () => import('@/components/common/HtAsideTree.vue')
const EipSysTypeSelector = () =>
  import('@/components/selector/EipSysTypeSelector.vue')
const eipUserDialog = () => import('@/components/dialog/EipUserDialog.vue')
import {mapState} from 'vuex'
import req from '@/request.js'
import uc from '@/api/uc.js'
import matrixFlowBindRelationDialog from '@/views/uc/MatrixFlowBindRelationDialog'
export default {
  components: {
    matrixFlowBindRelationDialog,
    htAsideTree,
    EipSysTypeSelector,
    eipUserDialog,
    MatrixAuthManager
  },
  data() {
    return {
      dialogVisible: false,
      data: [],
      pageResult: {
        page: 1,
        pageSize: 20,
        total: 0
      },
      matrixBlank: {
        code: '',
        name: '',
        condList: [
          {
            code: '',
            name: '',
            ctrlType: '',
            queryAlias: '',
            bindKey: '',
            bindValue: ''
          }
        ],
        roleList: [{code: '', name: '', selectType: 1, searchField: '0'}]
      },
      matrix: {},
      treeSidebarData: {},
      tabStatus: 'cond',
      customQuerys: [],
      customDialogs: [], //对话框列表数据
      isSubmit: true,
      typeId: '',
      defaultQuerys: [],
      matrixCode: '',
      isDisabled: true, //按钮的禁用
      selectedList: [],
      importDialogVisible: false,
      typeSelectorCatId: '',
      typeSelectorCatName: '',
      fullscreenLoading: false,
      permissionVal: 'w'
    }
  },
  watch: {
    // 监听选中下
    selectedList: {
      handler(val) {
        this.isDisabled = val.length < 1 ? true : false
      },
      deep: true
    }
  },
  mounted() {
    this.$validator = this.$root.$validator
  },
  computed: {
    ...mapState({
      currentUser: state => state.login.currentUser,
      uploadHeaders: function(mapState) {
        return {Authorization: 'Bearer ' + mapState.login.currentUser.token}
      },
      imporCheckUrl: function(mapState) {
        return (
          window.context.uc +
          '/uc/matrix/v1/importCheck?typeId=' +
          this.typeSelectorCatId +
          '&typeName=' +
          this.typeSelectorCatName
        )
      }
    })
  },
  methods: {
    refreshConfig(type) {
      if (type == 'select') {
        this.$refs.customQueryRef.getData()
        this.$message.info('关联查询更新配置成功!点击保存后生效')
      } else {
        this.$refs.customDialogRef.getData()
        this.$message.info('对话框更新配置成功!点击保存后生效')
      }
    },
    hadleUploadResult(response, file, fileList) {
      var height =
        (document.documentElement.clientHeight || document.body.clientHeight) *
          0.85 +
        'px'
      this.fullscreenLoading = false
      let this_ = this
      if (response.state) {
        this_.handleImportSuccess(response.value)
      } else {
        if (response.message) {
          if (response.message.indexOf('是否继续覆盖更新') > 0) {
            this.$confirm(
              '<div style="overflow-x:hidden;overflow-y:auto ;max-height:' +
                height +
                '">' +
                response.message +
                '</div>',
              '提示',
              {
                cancelButtonText: '取消',
                dangerouslyUseHTMLString: true,
                confirmButtonText: '确定',
                type: 'warning',
                closeOnClickModal: false
              }
            )
              .then(() => {
                this_.fullscreenLoading = true
                this_.$http
                  .post(
                    `${window.context.uc}/uc/matrix/v1/importSave?cacheFileId=` +
                      response.value +
                      '&confirmImport=true&typeId=' +
                      this.typeSelectorCatId +
                      '&confirmImport=true&typeName=' +
                      this.typeSelectorCatName
                  )
                  .then(function(resp) {
                    this_.fullscreenLoading = false
                    let data = resp.data
                    if (data.state) {
                      this_.handleImportSuccess(data.value)
                    } else {
                      this_.$message.error(data.message)
                    }
                  })
              })
              .catch(action => {
                this_.$http.post(
                  `${window.context.uc}/uc/matrix/v1/importSave?confirmImport=false&cacheFileId=` +
                    response.value
                )
                this_.importDialogVisible = false
                this.$refs.upload.clearFiles()
              })
          } else {
            this.$message.error(response.message)
            this.$refs.upload.clearFiles()
          }
        }
      }
    },
    handleImportSuccess(msg) {
      if (msg) {
        this.$message({
          type: 'success',
          message: msg,
          showClose: true,
          duration: 5000,
          dangerouslyUseHTMLString: true
        })
      } else {
        this.$message.success('导入成功')
      }
      this.importDialogVisible = false
      this.$refs.htTable.load()
      this.$refs.upload.clearFiles()
    },
    beforeUpload(file) {
      if (!file.name.endsWith('.zip')) {
        this.$message.warning('只能导入zip文件!')
        return false
      }
      this.imporActionUrl = this.imporCheckUrl
      this.fullscreenLoading = true
    },
    onExceed(file) {
      this.$message.warning('只能选择一个zip文件!')
    },
    submitImport() {
      if (
        !this.$refs.upload.uploadFiles ||
        this.$refs.upload.uploadFiles.length == 0
      ) {
        this.$message.warning('请选择要导入的关系矩阵!')
        return false
      }
      if (!this.typeSelectorCatId) {
        this.$message.warning('请选择要导入的分类!')
        return false
      }
      this.$refs.upload.submit()
    },
    handExport() {
      let selection = this.$refs.htTable.$refs.htTable.selection
      if (selection.length == 0) {
        this.$message.warning('请选择至少一项记录')
        return
      }
      let ids = []
      for (let item of selection) {
        ids.push(item['id'])
      }
      if (ids.length == 0) {
        this.$message.warning('请选择至少一项记录')
        return
      }
      let url = `${window.context.uc}/uc/matrix/v1/export?ids=${ids}`
      req.download(url)
    },
    handleSelectionChange(selection) {
      this.selectedList = selection
    },
    rowClick(row, column, event) {
      this.$refs.htTable.$refs.htTable.toggleRowSelection(row)
    },
    handleCommand(param) {
      switch (param.action) {
        case 'toDataList':
          this.toDataList(param.row)
          break
        case 'publish':
          this.publish(param.row.id)
          break
        case 'setManager':
          this.setManager(param.row.id, param.row.typeId)
          break
        case 'getFlowBindRelation':
          this.getFlowBindRelation(param.row.code)
          break
      }
    },
    getFlowBindRelation(matrixCode) {
      this.matrixCode = matrixCode
      this.$refs.matrixFlowBindRelationDialog.showDialog()
    },
    setManager(id, typeId) {
      this.curId = id

      this.$refs.MatrixAuthManager.showDialog(typeId, id)
      // this.$refs.eipUserDialog.showDialog({})
    },
    saveManager(data) {
      if (data.length == 0 || data.length > 1) {
        this.$message.warning('请选择一个用户')
        return
      }
      data = data[0]
      let id = this.curId
      req
        .get(
          window.context.uc +
            `/uc/matrix/v1/saveManager?id=${id}&userId=${data.id}&fullname=${data.fullname}`
        )
        .then(res => {
          if (res.data.state) {
            this.$message.success(res.data.message)
            this.$refs.htTable.load()
          }
        })
    },
    publish(id) {
      req
        .get(window.context.uc + `/uc/matrix/v1/publish?id=${id}`)
        .then(res => {
          if (res.data.state) {
            this.$message.success(res.data.message)
            this.$refs.htTable.load()
          }
        })
    },
    upGo(fieldData, index) {
      if (index != 0) {
        fieldData[index] = fieldData.splice(index - 1, 1, fieldData[index])[0]
      } else {
        fieldData.push(fieldData.shift())
      }
    },
    downGo(fieldData, index) {
      if (index != fieldData.length - 1) {
        fieldData[index] = fieldData.splice(index + 1, 1, fieldData[index])[0]
      } else {
        fieldData.unshift(fieldData.splice(index, 1)[0])
      }
    },
    chineseFormat(list, chinese, prop, index) {
      //如果保存过的则不允许修改code
      if (list[index].id) {
        return
      }
      let timer = null
      if (timer) {
        clearTimeout(timer)
      }
      timer = setTimeout(function() {
        req
          .request({
            url: `${window.context.uc}/base/tools/v1/getPinyin`,
            method: 'GET',
            params: {chinese: chinese, type: 0}
          })
          .then(res => {
            if (res.data.state) {
              list[index][prop] = res.data.value
            }
          })
      }, 500)
    },
    deleteCol(list, index) {
      list.splice(index, 1)
    },
    addCol(list, index, column) {
      if (list.length > 15 || list.length == 15) {
        this.$message.warning(`${column}最多15个`)
        return false
      }
      list.push({
        code: '',
        name: '',
        ctrlType: '',
        queryAlias: '',
        bindKey: '',
        bindValue: '',
        selectType: 1
      })
    },
    handleNodeClick(item) {
      if (item.parentId != 0) {
        this.$set(this.defaultQuerys, 0, {
          property: 'type_id_',
          value: item.id,
          operation: 'EQUAL'
        })
      } else {
        //清空旧的查询值
        this.defaultQuerys.splice(0)
      }
      this.$refs.htTable.load()
    },
    treeCheck(item, list) {
      if (list && list.checkedKeys && list.checkedKeys.length > 0) {
        this.$set(this.defaultQuerys, 0, {
          property: 'type_id_',
          value: list.checkedKeys.join(','),
          operation: 'IN'
        })
        this.$refs.htTable.load()
      }
    },
    close() {
      this.dialogVisible = false
    },
    showDialog(id) {
      // 已填清除校验
      this.$root.$validator.reset()
      if (id) {
        this.$http.get('${uc}/uc/matrix/v1/getJson?id=' + `${id}`).then(
          resp => {
            this.matrix = resp.data
            this.dialogVisible = true
          },
          error => {
            reject(error)
          }
        )
      } else {
        this.matrix = JSON.parse(JSON.stringify(this.matrixBlank))
        //this.matrix = this.matrixBlank;
        this.dialogVisible = true
      }
    },
    beforeCloseDialog() {
      this.matrix = JSON.parse(JSON.stringify(this.matrixBlank))
      // this.matrix = this.matrixBlank;
      this.dialogVisible = false
    },
    loadData(param, cb) {
      param.querys || (param.querys = [])
      param.querys.push({
        property: 'isDele',
        value: 0,
        operation: 'EQUAL'
      })
      this.$http
        .post('${uc}/uc/matrix/v1/listJson', param)
        .then(resp => {
          let response = resp.data
          this.data = response.rows
          this.pageResult = {
            page: response.page,
            pageSize: response.pageSize,
            total: response.total
          }
        })
        .finally(() => cb())
    },
    beforeSaveData() {
      this.isSubmit = true
      if (!this.matrix.condList || this.matrix.condList.length == 0) {
        this.isSubmit = false
        this.$message.error('请填写字段名')
      }
      if (this.matrix.condList && this.matrix.condList.length > 0) {
        let code = this.checkPropIsRepeat(this.matrix.condList, 'code')
        if (code) {
          this.isSubmit = false
          this.tabStatus = 'cond'
          this.$message.error(`列字段名[${code}]重复`)
          return false
        }
      }
      if (!this.matrix.roleList || this.matrix.roleList.length == 0) {
        this.isSubmit = false
        this.$message.error('请填写角色字段')
      }
      if (this.matrix.roleList && this.matrix.roleList.length > 0) {
        let code = this.checkPropIsRepeat(this.matrix.roleList, 'code')
        if (code) {
          this.isSubmit = false
          this.tabStatus = 'role'
          this.$message.error(`角色别名[${code}]重复`)
        }
      }
    },
    checkPropIsRepeat(arr, key) {
      var obj = {}
      for (var i = 0; i < arr.length; i++) {
        let code = arr[i][key].toLowerCase()
        if (obj[code]) {
          return arr[i][key]
        } else {
          obj[code] = arr[i]
        }
      }
      return ''
    },
    afterSaveData() {
      setTimeout(() => {
        this.beforeCloseDialog()
        this.$refs.htTable.load()
      }, 500)
    },
    afterCustomQueryLoadData(data) {
      this.customQuerys = data.rows
    },
    afterCustomDialogLoadData(data) {
      this.customDialogs = data
    },
    toDataList(param) {
      if (param.status == 0) {
        req
          .get(window.context.uc + `/uc/matrix/v1/publish?id=${param.id}`)
          .then(res => {
            if (res.data.state) {
              this.$message.success(res.data.message)
              this.$router.push({path: `/matrixData/${param.id}`})
              this.$refs.htTable.load()
            }
          })
      } else {
        this.$router.push({path: `/matrixData/${param.id}`})
      }
    },
    ctrlTypeChange(list, index) {
      list[index].queryAlias && (list[index].queryAlias = '')
      list[index].bindKey && (list[index].bindKey = '')
      list[index].bindValue && (list[index].bindValue = '')
    },
    getResultField(ctrlType, queryAlias) {
      if (ctrlType === 'select') {
        for (let i = 0; i < this.customQuerys.length; i++) {
          let item = this.customQuerys[i]
          if (item.alias === queryAlias) {
            return JSON.parse(item.resultfield || '[]')
          }
        }
      } else if (ctrlType === 'dialog') {
        for (let i = 0; i < this.customDialogs.length; i++) {
          let item = this.customDialogs[i]
          if (item.alias === queryAlias) {
            return JSON.parse(item.resultfield || '[]')
          }
        }
      }
    },
    radioEnabledChange(matrix) {
      if(matrix.enabled==0){
          this.$confirm('禁用该关系矩阵后,会影响已绑定的流程无法获取审批人,是否确认禁用?', '提示', {
            confirmButtonText: '确定',
            cancelButtonText: '取消',
            type: 'warning'
          }).then(() => {
            req.put(window.context.uc + '/uc/matrix/v1/', matrix)
          }).catch((err)=>{
            matrix.enabled=1
          })
      }else{
        req.put(window.context.uc + '/uc/matrix/v1/', matrix)
      }
      
      
    },
    afterDelete(message) {
      if (message.includes('不允许删除')) {
        this.$message({
          type: 'warning',
          message: message,
          showClose: true,
          duration: 5000,
          dangerouslyUseHTMLString: true
        })
      } else {
        this.$message({type: 'success', message: message})
      }
    }
  }
}
</script>
<style scoped>
.cd-column__dialog >>> .el-dialog__body {
  height: calc(100vh - 108px);
}
.sys-type-selector {
  width: 215px;
}
.is-circle {
  padding: 9px;
}
.cd-column__dialog /deep/ .el-dialog > .el-dialog__header {
  padding: 8px 20px;
}
.base-info >>> .el-card__body {
  padding-left: 0;
  padding-right: 5px;
}
.fullheight >>> .el-footer.el-aside-footer {
  bottom: 30px;
  position: absolute;
}
.more-operate-btn__dropdown {
  margin-left: 16px;
}
.queryAlias{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
</style>