registerCatalogCreate.vue 42.2 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
<route lang="yaml">
    name: registerCatalogCreate
    </route>

<script lang="ts" setup name="registerCatalogCreate">
import { ref } from 'vue';
import { useRouter, useRoute } from "vue-router";
import useUserStore from "@/store/modules/user";
import {
  getAreaData,
} from "@/api/modules/queryService";
import {
  registerCatalogSave,
  existDamName,
  getRegisterCatalogDetail,
  getRegisterCatalogTableDetail,
  registerCatalogUpdate,
  registerCatalogTableSave,
  registerCatalogTableUpdate,
  registerCatalogTableDelete,
  getRegisterCatalogTableList,
  checkDamTableChange,
  getTenantList,
  getDamTypesList,//获取数据目录分类。
} from "@/api/modules/dataAsset";
import {
  getValidApi,
  apiTypes
} from "@/api/modules/dataService";
import { ContentWrap } from '@/components/ContentWrap';
import importTableField from "./importTableField.vue";
import { useValidator } from '@/hooks/useValidator';
import useDataAssetStore from "@/store/modules/dataAsset";
import { handleContentWrapView, scrollLastRowToView, changeNum } from '@/utils/common';
import { ElMessage } from 'element-plus';
import { TableColumnWidth } from '@/utils/enum';
import { CirclePlus } from '@element-plus/icons-vue';

const { proxy } = getCurrentInstance() as any;
const { required, checkExistName } = useValidator();
const userStore = useUserStore();
const assetStore = useDataAssetStore();
const router = useRouter();
const route = useRoute();
const fullPath = route.fullPath;
const damGuid = ref(route.query.guid);
const fullscreenLoading = ref(false);
const damTypes: any = ref([]);
/** 所属主题多级列表 */
const subjectDomainListData: any = ref([]);
const detailInfo: any = ref({});
const getParentAreaPromise: any = ref(null);
const getAreaDataPromise: any = ref({});
const getAreaDatas: any = ref({});
const parentAreaData: any = ref([]);

/** 行业分类类型列表 */
const industryDictList: any = ref([]);
/** 领域字典列表 */
const domainDictList: any = ref([]);
/** 机构类型字典列表 */
const institutionTypeDictList: any = ref([]);
/** 更新频率字典列表 */
const updateFrequencyDictList: any = ref([]);

/** 所属科室下拉列表 */
const medDepartmentCodeList: any = ref([]);

const getArea = (node, resolve) => {
  const { level } = node
  let params = {
    parentGuid: node.value
  }
  if (!node.value) {
    if (getParentAreaPromise.value) {
      getParentAreaPromise.value.then((res: any) => {
        resolve(res);
      })
    } else {
      resolve(parentAreaData.value);
    }
    return;
  }
  if (node.loaded) {
    resolve([]);
    return;
  }
  if (getAreaDatas.value[node.value]?.length) {
    resolve(getAreaDatas.value[node.value]);
    return;
  }
  if (!getAreaDataPromise.value[node.value]) {
    getAreaDataPromise.value[node.value] = getAreaData(params).then((res: any) => {
      node.loaded = true;
      getAreaDataPromise.value[node.value] = null;
      if (res?.code == proxy.$passCode) {
        const data = res.data ?? []
        data.map(item => {
          item.leaf = level >= 1
        })
        resolve(data)
        getAreaDatas.value[node.value] = data;
        return data;
      }
    })
  } else {
    getAreaDataPromise.value[node.value].then((data) => {
      getAreaDataPromise.value[node.value] = null;
      node.loaded = true;
      data.map(item => {
        item.leaf = level >= 1
      })
      resolve(data)
    })
  }
}

const baseInfoExpand = ref(true);
const expandServiceInfo = ref(true);
const assetTableInfoExpand = ref(true);
const importTableFieldRef = ref();
const rightMainTenantList: any = ref([]); //权利主体下拉列表选择
const baseInfoFormRef = ref();

const baseInfoFormItems = ref([
  {
    label: '资源名称',
    type: 'input',
    placeholder: '请输入',
    field: 'damName',
    maxlength: 50,
    default: '',
    required: true
  },
  // {
  //   label: '资源名称',
  //   type: 'select',
  //   placeholder: '请输入',
  //   field: 'damName',
  //   maxlength: 50,
  //   default: '',
  //   required: true,
  //   options: catalogProductList.value,
  //   allowCreate: true,
  //   filterable: true,
  //   props: {
  //     value: 'productId',
  //     label: 'productName'
  //   },
  //   clearable: true,
  // },
  {
    label: '资源类型',
    type: 'select',
    placeholder: '请选择',
    field: 'damType',
    default: '1',
    options: damTypes.value,
    props: {
      value: 'value',
      label: 'label'
    },
    required: true,
    visible: true
  },
  {
    label: '权利主体',
    type: route.query.dataSources == '1' ? 'select' : 'input',
    placeholder: route.query.dataSources == '1' ? '请选择' : '请输入',
    field: 'rightMain',
    maxlength: 20,
    options: rightMainTenantList.value,
    props: {
      value: 'guid',
      label: 'tenantName'
    },
    filterable: true,
    clearable: true,
    default: route.query.dataSources == '1' ? JSON.parse(userStore.userData).tenantGuid : JSON.parse(userStore.userData).tenantName,
    required: true,
    disabled: route.query.dataSources == '1' ? false : true,
  },
  {
    label: '行业分类',
    type: 'select',
    placeholder: '请选择',
    field: 'industry',
    default: '',
    options: industryDictList.value || [],
    props: {
      value: 'value',
      label: 'label'
    },
    required: true,
    filterable: true,
    visible: true
  },
  {
    label: '机构分类',
    type: 'select',
    placeholder: '请选择',
    field: 'institutionType',
    default: '',
    options: institutionTypeDictList.value || [],
    props: {
      value: 'value',
      label: 'label'
    },
    required: true,
    filterable: true,
    visible: true
  },
  {
    label: '领域',
    type: 'select',
    placeholder: '请选择',
    field: 'domain',
    default: '003',
    options: domainDictList.value,
    props: {
      value: 'value',
      label: 'label',
      children: 'children'
    },
    required: true,
    filterable: true,
    visible: true
  }, {
    label: '应用场景',
    type: 'select',
    placeholder: '请选择',
    field: 'scenario',
    default: '',
    options: [], // 根据所选择领域显示列表
    props: {
      value: 'value',
      label: 'label'
    },
    required: true,
    filterable: true,
    visible: true
  },
  {
    label: '所属科室',
    type: 'tree-select',
    placeholder: '请选择',
    field: 'medDepartmentCode',
    default: '',
    options: medDepartmentCodeList.value || [],
    showAllLevels: false,
    checkStrictly: false,//只能选择叶子节点。
    lazy: false,
    props: {
      value: 'value',
      label: 'label',
      children: 'childDictList'
    },
    filterable: true,
    clearable: true,
    visible: true,
    required: true
  },
  {
    label: '所属主题',
    type: 'tree-select',
    placeholder: '请选择',
    field: 'subjectDomain',
    options: subjectDomainListData.value,
    showAllLevels: false,
    checkStrictly: false,//只能选择叶子节点。
    lazy: false,
    props: {
      value: 'value',
      label: 'label',
      children: 'childDictList'
    },
    filterable: true,
    clearable: true,
    default: '',
    visible: false,
    required: true
  },
  {
    label: "更新频率",
    type: "select",
    placeholder: "请选择",
    field: "updateFrequency",
    default: '',
    props: {
      value: 'value',
      label: 'label'
    },
    multiple: false,
    options: updateFrequencyDictList.value,
    filterable: true,
    required: true,
    clearable: true,
  },
  {
    label: '数据覆盖地域',
    type: 'checkbox-select',
    placeholder: '全国',
    field: 'coverageArea',
    default: "",
    trueValue: 'all',
    falseValue: '',
    isRequire: true,
    children: [
      {
        label: '',
        type: "cascader",
        placeholder: "请选择",
        field: "coverageAreas",
        default: [],
        showAllLevels: true,
        props: {
          label: 'name',
          value: 'guid',
          lazy: true,
          lazyLoad: getArea,
          multiple: true,
        },
        collapse: true,
        tagsTooltip: true,
        //     filterable: true,
        clearable: true,
        required: true,
        col: 'checkbox-right',
        visible: true
      }
    ],
    clearable: false,
    required: true,
    col: 'checkbox-cascader'
  },
  {
    label: '数据库类型',
    type: 'select',
    placeholder: '请选择',
    field: 'databaseType',
    default: 'Mysql',
    options: [{
      value: 'Mysql',
      label: 'Mysql',
    }, {
      value: 'Oracle',
      label: 'Oracle',
    }],
    clearable: true,
    required: false,
    visible: true
  },
  {
    label: "数据来源",
    type: "radio-group",
    placeholder: "",
    field: "dataSources",
    block: false,
    default: route.query.dataSources == '1' ? 1 : 2,
    options: route.query.dataSources == '1' ? [{ //如果是授权数据则不能选择其余的
      value: 1,
      label: '授权数据',
    }] : [{
      value: 2,
      label: '自有数据',
    },
    {
      value: 3,
      label: '购买数据',
    },
    {
      value: 4,
      label: '其他来源',
    }], //dataSourcesList
    required: true,
  },
  // 是否公共数据
  {
    label: '是否公共数据',
    type: 'radio-group',
    placeholder: '',
    field: 'isPublicData',
    block: false,
    default: 'N',
    options: [{
      value: 'Y',
      label: '是'
    }, {
      value: 'N',
      label: '否'
    }],
    required: true,
  },
  {
    label: '是否缓存',
    type: 'radio-group',
    placeholder: '',
    field: 'isCache',
    block: false,
    default: 'N',
    options: [{
      value: 'Y',
      label: '是'
    }, {
      value: 'N',
      label: '否'
    }],
    required: true,
  },
  {
    label: '是否加密存储',
    type: 'radio-group',
    placeholder: '',
    field: 'isEncrypField',
    block: false,
    default: 'N',
    options: [{
      value: 'Y',
      label: '是'
    }, {
      value: 'N',
      label: '否'
    }],
    required: true,
  },
  {
    label: '资源描述',
    type: 'textarea',
    placeholder: '该数据资源主要包含的信息,数据更新方式等。',
    field: 'propertyDescription',
    default: '',
    focusValue: true,
    block: true,
    maxlength: 500,
    clearable: true,
    required: true,
  },
  {
    label: '应用场景描述',
    type: 'textarea',
    placeholder: '该数据资源应用场景是***,基于**、**、**等各类的数据,结合AI算法为**提供***模型,提高***服务能力,优化公司的成本及效率。',
    field: 'sceneDescription',
    focusValue: true,
    default: '',
    clearable: true,
    required: true,
    maxlength: 500,
    block: true,
    example: '示例:该数据资源应用场景是数字化市场营销,基于LBS、销售数据、人力数据等各类的数据,结合AI算法为客户提供精准营销模型,提高营销人员精准服务客户的能力,优化公司的成本及效率。',
    // col: 'col2 mr8'
  },
  {
    label: '应用场景限制',
    type: 'textarea',
    placeholder: '请输入',
    field: 'sceneLimit',
    default: '',
    clearable: true,
    required: true,
    block: true,
    maxlength: 500,
    exampleBtns: [{
      value: '无限制',
      label: '无限制'
    }, {
      value: '主体限制',
      label: '主体限制:仅限于国企央企政府使用;不可同行业竞争对手使用等;'
    }, {
      value: '行业限制',
      label: '行业限制:仅可用于企业征信场景等'
    }],
    example: "",
    // col: 'col2'
  },
]);

const checkedInfo = ref({});

const baseInfoFormRules = ref({
  damName: [required('请填写资源名称'), checkExistName(checkedInfo.value, existDamName, detailInfo.value, 'damName')],
  damType: [required('请选择资源类型')],
  subjectDomain: [required('请选择所属主题')],
  coverageAreas: [required('请选择数据覆盖地域')],
  // databaseType: [required('请选择数据库类型')],
  propertyDescription: [required('请填写资源描述')],
  sceneDescription: [required('请填写应用场景描述')],
  sceneLimit: [required('请填写应用场景限制')],
  rightMain: [required(route.query.dataSources == '1' ? '请选择权利主体' : '请填写权利主体')],
  dataSources: [required('请选择数据来源')],
  isPublicData: [required('请选择是否公共数据')],
  isCache: [required('请选择是否缓存')],
  industry: [required('请选择行业分类')],
  institutionType: [required('请选择机构分类')],
  domain: [required('请选择领域')],
  scenario: [required('请选择应用场景')],
  medDepartmentCode: [required('请选择所属科室')],
  updateFrequency: [required('请选择更新频率')]
});

const getTableFieldPromise: any = ref({});
const assetTableRef = ref();
const assetDataTableInfo = ref({
  id: 'asset-data-table',
  rowKey: 'guid',
  showPage: false,
  minHeight: '200px',
  height: '200px',
  loading: false,
  fields: [
    { label: "序号", type: "index", width: 56, align: "center" },
    { label: "表中文名称", field: "tableChName", width: 150, align: "left" },
    { label: "表英文名称", field: "tableName", width: 150, align: "left" },
    {
      label: "表数据总数(条)", field: "dataCount", width: 150, align: "right", getName: (scope) => {
        return scope.row["dataCount"] == null ? '--' : changeNum(scope.row["dataCount"], 0)
      }
    },
    { label: "描述", field: "description", width: 240 },
    { label: "修改人", field: "updateUserName", width: 140 },
    { label: "修改时间", field: "updateTime", width: 180 },
  ],
  data: <any[]>[],
  actionInfo: {
    width: damGuid.value ? 260 : 160,
    btns: (scope) => {
      let btns = [{
        label: "编辑", value: "edit", click: (scope) => {
          //分为未建表的编辑,和已建表的编辑。
          console.log(scope, 'scope');
          let row = scope.row;
          importTableEditIndex.value = scope.$index;
          if (row.guid) {//已建表的
            if (!row.damCatalogTableField) {
              if (getTableFieldPromise.value[row.guid]) {
                return;
              }
              getTableFieldPromise.value[row.guid] = getRegisterCatalogTableDetail(row.guid).then((res: any) => {
                delete getTableFieldPromise.value[row.guid];
                if (res.code == proxy.$passCode) {
                  row.damCatalogTableField = res.data.damCatalogTableField || [];
                  importTableFieldVisible.value = true;
                  nextTick(() => {
                    importTableFieldRef.value.setTableInfo(row);
                  });
                } else {
                  proxy.$ElMessage.error(res.msg);
                }
              });
            } else {
              importTableFieldVisible.value = true;
              nextTick(() => {
                importTableFieldRef.value.setTableInfo(row);
              });
            }
          } else {
            importTableFieldVisible.value = true;
            nextTick(() => {
              let file = row?.fileUrl ? [{
                name: row?.fileName,
                url: row?.fileUrl
              }] : [];
              importTableFieldRef.value.setFormValue({
                file: file,
                sheetName: row.sheetName
              });
              importTableFieldRef.value.setTableInfo(row);
            });
          }
        }
      }, {
        label: "删除", value: "delete", click: (scope) => {
          //分为未建表的删除,和已建表的删除。
          if (scope.row.guid) {
            let params = baseInfoFormRef.value.formInline;
            /** 只有数据集和api类型时,目录表必填。 */
            if (params.damType == '1' || params.damType == '2') {
              if (assetDataTableInfo.value.data.length == 1) {
                proxy.$ElMessage.warning('当资源类型为数据应用或API时,资源表不能全部被删除');
                return;
              }
            }
            proxy.$openMessageBox('此操作将永久删除该资源表,是否继续?', () => {
              registerCatalogTableDelete({ damGuid: damGuid.value, subjectGuid: scope.row.guid }).then((res: any) => {
                if (res.code == proxy.$passCode) {
                  assetDataTableInfo.value.loading = true;
                  getRegisterCatalogTableList(damGuid.value).then((res: any) => {
                    assetDataTableInfo.value.loading = false;
                    if (res.code == proxy.$passCode) {
                      assetDataTableInfo.value.data = res.data || [];
                    } else {
                      proxy.$ElMessage.error(res.msg);
                    }
                  });
                  proxy.$ElMessage.success('删除成功');
                } else {
                  proxy.$ElMessage.error(res.msg);
                }
              })
            }, () => {
              proxy.$ElMessage.info("已取消删除");
            });
          } else {
            proxy.$openMessageBox('此操作将永久删除该资源表,是否继续?', () => {
              let index = scope.$index;
              assetDataTableInfo.value.data.splice(index, 1);
              proxy.$ElMessage.success('删除成功');
            }, () => {
              proxy.$ElMessage.info("已取消删除");
            });
          }
        }
      }];
      if (scope.row.guid) {
        btns.push({
          label: "导入数据", value: "importData", click: (scope) => {
            let row = scope.row;
            router.push({
              path: route.query.dataSources == '1' ? '/data-asset/authordata-catalog/import-file-dam' : '/data-asset/register-catalog/import-file-dam',
              // name: "importFileDam",
              query: {
                bizGuid: row.guid,
                name: row.tableChName,
                isfileImport: '2',
                damName: route.query.damName,
                dataSources: route.query.dataSources
              }
            })
          }
        });
        btns.push({
          label: "查看样例数据", value: "viewData", click: (scope) => {
            let row = scope.row;
            router.push({
              path: route.query.dataSources == '1' ? '/data-asset/authordata-catalog/damTableDataView' : '/data-asset/register-catalog/damTableDataView',
              //  name: 'damTableDataView',
              query: {
                guid: row.guid,
                name: row.tableChName,
                damName: detailInfo.value.damName,
                dataSources: route.query.dataSources
              }
            });
          }
        });
      }
      return btns;
    }
  }
});

const setFormItems = (val) => {
  val = Object.assign({ dataSources: 1, damType: 1, databaseType: 'Mysql' }, val);
  baseInfoFormItems.value.forEach(item => {
    item.default = val[item.field];
    if (item.children?.length) {
      item.children[0].default = val[item.children[0].field] || [];
    }
    if (item.field == 'scenario') {
      item.options = domainDictList.value.find(s => s.value == val['domain'])?.childDictList || []
    } else if (item.field == 'medDepartmentCode') {
      item.visible = val['domain'] == '003'
    } else if (item.field == 'subjectDomain') {
      item.visible = val['domain'] == '004';
    }
  });
}

const baseSelectChange = (val, item, row) => {
  if (item.field == 'damType') {
    if (row.damType != '1' && row.damType != '2') {
      row.databaseType = '';
      setFormItems(row);
    } else {
      if (!row.databaseType) {
        row.databaseType = 'Mysql';
        setFormItems(row);
      }
    }
  } else if (item.field == 'domain') {
    row.scenario = ''; //清空下应用场景
    setFormItems(row);
  }
}

const handleBaseInfoCheckboxChange = (val, info) => {
  let item = baseInfoFormItems.value.find(b => b.field == 'coverageArea');
  item && (item.default = val);
  item && item.children?.length && (item.children[0].visible = !val);
  setFormItems(info);
}

/** ------------------- 添加选择数据服务API表格,多选 ---------------------------- */
const productTableRef = ref();
const productData: any = ref([]);

const apiList: any = ref([]);

const getAPIOptions = (scope) => {
  // 预先构建产品数据的 GUID 集合
  const usedApiGuids = new Set(
    productData.value.map(p => p.apiGuid)
  );
  
  return apiList.value.map(api => ({
    ...api,
    disabled: api.guid !== scope.row.guid && usedApiGuids.has(api.guid)
  }));
}

/** 基本信息的入参定义表格配置 */
const productTableInfo = ref({
  id: "input-product-table",
  height: '214px',
  fields: [
    { label: "序号", type: "index", width: TableColumnWidth.INDEX, align: "center" },
    { label: "服务名称", field: "apiGuid", width: 180, required: true, columClass: 'edit-colum', type: 'edit' },
    {
      label: "API类型", field: "apiType", width: 100, getName: (scope) => {
        return scope.row.apiType && apiTypes.find(a => a.value == scope.row.apiType)?.label || '--';
      }
    },
    { label: "API地址", field: "requestUrl", minWidth: 240 },
    { label: "描述", field: "apiDescription", width: 300 },
  ],
  editInfo: {
    apiGuid: {
      label: '',
      type: 'select',
      field: 'apiGuid',
      default: '',
      getOptions: (scope) => getAPIOptions(scope),
      props: {
        label: 'apiName',
        value: 'guid',
        disabled: 'disabled'
      },
      placeholder: '请选择',
      clearable: true,
      filterable: true
    },
  },
  STATUS: 'edit',
  data: productData.value,
  showPage: false,
  actionInfo: {
    show: true,
    label: "操作",
    type: "btn",
    width: 60,
    fixed: 'right',
    btns: [
      {
        label: "删除", value: "remove", click: (scope) => {
          let index = scope.$index;
          proxy.$openMessageBox("此操作将永久删除, 是否继续?", () => {
            productData.value.splice(index, 1);
            productTableInfo.value.data = productData.value;
            proxy.$ElMessage.success('服务包删除成功');
          }, () => {
            proxy.$ElMessage.info("已取消");
          });
        }
      },
    ]
  },
  loading: false
});

/** 给表格添加一行入参定义。 */
const addProduct = () => {
  productData.value.push({ apiGuid: '' });
  productTableInfo.value.data = productData.value;
  nextTick(() => {
    scrollLastRowToView(productTableRef.value?.tableRef, productData.value.length);
  })
}

/** 根据下拉选择的产品带出产品相关信息 */
const hanldeTableSelectChange = (val, scope, item) => {
  let productItem = val && apiList.value.find(p => p.guid == val);
  scope.row.guid = val;
  scope.row.apiName = productItem?.apiName;
  scope.row.apiType = productItem?.apiType;
  scope.row.requestUrl = productItem?.requestUrl;
  scope.row.apiDescription = productItem?.apiDescription;
}

const handleCreateTable = () => {
  if (assetDataTableInfo.value.data.length >= 15) {
    proxy.$ElMessage.error('最多允许添加15张资源表');
    return;
  }
  importTableFieldVisible.value = true;
}

const importTableFieldVisible = ref(false);

/** 记录当前正在编辑的资产表的序号。 */
const importTableEditIndex: any = ref(null);

const addAssetTable = () => {
  importTableFieldVisible.value = true;
}

onActivated(() => {
  getValidApi().then((res: any) => {
    if (res.code == proxy.$passCode) {
      apiList.value = res.data || [];
     // productTableInfo.value.editInfo.apiGuid.getOptions = (scope) => getAPIOptions(scope);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })
})

onBeforeMount(() => {
  getParentAreaPromise.value = getAreaData({ parentId: null }).then((res: any) => {
    if (res?.code == proxy.$passCode) {
      parentAreaData.value = res.data ?? [];
      return parentAreaData.value;
    }
  })
  if (damGuid.value) {
    fullscreenLoading.value = true;

    getRegisterCatalogDetail({ guid: damGuid.value }).then((res: any) => {
      fullscreenLoading.value = false;
      if (res.code == proxy.$passCode) {
        detailInfo.value = res.data || {};
        baseInfoFormItems.value.forEach((item: any) => {
          item.default = detailInfo.value[item.field] == null ? '' : detailInfo.value[item.field];
          if (item.field == 'subjectDomain') {
            item.visible = detailInfo.value['domain'] == '004';
            // let tree = detailInfo.value.subjectDomainTree?.[0];
            // if (tree) {
            //   if (!tree.children[0]?.children?.[0]?.children) {
            //     item.expandKeys = tree.children[0]?.children?.[0].parentGuids;
            //   } else if (!tree.children[0]?.children?.[0]?.children?.[0]?.children) {
            //     item.expandKeys = tree.children[0]?.children?.[0]?.children?.[0]?.parentGuids;
            //   }
            // }
          }
          else if (item.field == 'coverageArea') {
            if (detailInfo.value.coverageArea && Array.isArray(detailInfo.value.coverageArea) && detailInfo.value.coverageArea.length > 0) {
              if (detailInfo.value.coverageArea[0][0] == 'all') {
                item.default = 'all';
                if (item.children?.length) {
                  item.children[0].visible = false;
                  item.children[0].default = [];
                }
              } else {
                item.default = '';
                if (item.children?.length) {
                  item.children[0].visible = true;
                  item.children[0].default = [] as any;
                  let p: any = [];
                  detailInfo.value.coverageArea?.forEach(area => {
                    if (p.includes(area[0])) {
                      return;
                    }
                    p.push(area[0]);
                    getArea({ value: area[0], level: 1 }, () => { })
                  });
                  let ps: any = []
                  for (const key in getAreaDataPromise.value) {
                    ps.push(getAreaDataPromise.value[key])
                  }
                  Promise.all(ps).then(() => {
                    item.children[0].default = detailInfo.value.coverageArea;
                  });
                }
              }
            }
          } else if (item.field == 'rightMain') {
            item.default = route.query.dataSources == '1' ? detailInfo.value.rightMain : detailInfo.value.rightMainName;
          } else if (item.field == 'scenario') {
            item.options = domainDictList.value.find(s => s.value == detailInfo.value['domain'])?.childDictList || []
          } else if (item.field == 'medDepartmentCode') {
            item.visible = detailInfo.value['domain'] == '003'
          }
        });
        if (route.query.guid && route.query.foundMode == '2') {
          baseInfoFormItems.value[0].disabled = true;
          baseInfoFormItems.value[1].disabled = true;
          baseInfoFormItems.value[2].disabled = true;
          if (detailInfo.value.databaseType == null && route.query.foundMode == '2') {
            baseInfoFormItems.value[5].visible = false;
          } else if (detailInfo.value.databaseType != null && route.query.foundMode == '2') {
            baseInfoFormItems.value[5].disabled = true;
          }
        }
        checkedInfo.value = {};
        console.log(baseInfoFormRef.value, 'baseInfoFormRules');
        nextTick(() => {
          baseInfoFormRules.value.damName[1] = checkExistName(checkedInfo.value, existDamName, detailInfo.value, 'damName');
        })
        setTimeout(() => {
          baseInfoFormRef.value.ruleFormRef?.clearValidate(['sceneDescription', 'subjectDomain', 'coverageAreas', 'isPublicData', 'dataSources', 'propertyDescription', 'sceneLimit']);
        }, 0);
        assetDataTableInfo.value.data = detailInfo.value.damCatalogTableInfo;
        productData.value = detailInfo.value.associationApiInfo?.map(d => {
          d.apiGuid = d.guid;
          return d;
        }) || [];
        productTableInfo.value.data = productData.value;
      } else {
        proxy.$ElMessage.error(res.msg);
        fullscreenLoading.value = false;
      }
    });
  }

  if (route.query.dataSources == '1') {
    getTenantList({
      bizState: 'Y',
      pageSize: -1
    }).then((res: any) => {
      rightMainTenantList.value = [];
      if (res.code == proxy.$passCode) {
        rightMainTenantList.value = res.data?.records || [];
        let item = baseInfoFormItems.value.find(b => b.field == 'rightMain');
        item && (item.options = rightMainTenantList.value);
      } else {
        proxy.$ElMessage.error(res.msg);
      }
    })
  }

  getDamTypesList({
    dictType: "资产类型",
  }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      damTypes.value = res.data || [];
      let item = baseInfoFormItems.value.find(item => item.field == 'damType');
      item && (item.options = damTypes.value);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })
  getDamTypesList({
    dictType: "数据资产目录主题名称",
  }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      subjectDomainListData.value = res.data || [];
      let item = baseInfoFormItems.value.find(item => item.field == 'subjectDomain');
      // item && (item.options = subjectDomainListData.value);
      item && (item.options = subjectDomainListData.value?.find(d => d.value == '1')?.childDictList || []);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })

  getDamTypesList({
    dictType: "科室",
  }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      medDepartmentCodeList.value = res.data || [];
      let item = baseInfoFormItems.value.find(item => item.field == 'medDepartmentCode');
      item && (item.options = medDepartmentCodeList.value);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })

  getDamTypesList({
    dictType: "行业分类",
    level: 1
  }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      industryDictList.value = res.data || [];
      let item = baseInfoFormItems.value.find(item => item.field == 'industry');
      item && (item.options = industryDictList.value);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })

  getDamTypesList({ dictType: '领域' }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      domainDictList.value = res.data || [];
      let itemIndex = baseInfoFormItems.value.findIndex(item => item.field == 'domain');
      let item = baseInfoFormItems.value[itemIndex];
      item && (item.options = domainDictList.value);
      let item1 = baseInfoFormItems.value[itemIndex + 1];
      item1 && item.default && (item1.options = domainDictList.value.find(s => s.value == item.default)?.childDictList || []);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  });

  getDamTypesList({
    dictType: "组织机构性质",
  }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      institutionTypeDictList.value = res.data || [];
      let item = baseInfoFormItems.value.find(item => item.field == 'institutionType');
      item && (item.options = institutionTypeDictList.value);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })

  getDamTypesList({
    dictType: "更新周期",
  }).then((res: any) => {
    if (res.code == proxy.$passCode) {
      updateFrequencyDictList.value = res.data || [];
      let item = baseInfoFormItems.value.find(item => item.field == 'updateFrequency');
      item && (item.options = updateFrequencyDictList.value);
    } else {
      proxy.$ElMessage.error(res.msg);
    }
  })
});

const cancel = () => {
  proxy.$openMessageBox("当前页面尚未保存,确定放弃修改吗?", () => {
    userStore.setTabbar(userStore.tabbar.filter((tab: any) => tab.fullPath !== fullPath));
    router.push({
      path: route.query.dataSources == '1' ? '/data-asset/authordata-catalog' : '/data-asset/register-catalog'
    });
  }, () => {
    proxy.$ElMessage.info("已取消");
  });
}

const save = () => {
  baseInfoFormRef.value?.ruleFormRef?.validate((valid, errorItem) => {
    if (valid) {
      let params = { ...baseInfoFormRef.value.formInline };
      let associationApiList: string[] = [];
      for (const api of productData.value) {
        if (!api.apiGuid) {
          proxy.$ElMessage.error('服务包信息未填写完整');
          expandServiceInfo.value = true;
          return;
        }
        associationApiList.push(api.apiGuid);
      }
      params.associationApi = associationApiList;
      /** 只有数据集和api类型时,目录表必填。 */
      if ((params.damType == '1') && route.query.foundMode != '2') {
        if (!params.databaseType) {
          proxy.$ElMessage.error('资源类型为数据集时,数据库类型必填');
          baseInfoExpand.value = true;
          return;
        }
        if (!assetDataTableInfo.value.data) {
          proxy.$ElMessage.error('资源类型为数据集时,必需添加资源表');
          assetTableInfoExpand.value = true;
          nextTick(() => {
            setTimeout(() => {
              handleContentWrapView('tableInfo');
            }, 500)
          });
          return;
        }
      }
      if (params.damType == '2' && route.query.foundMode != '2') {
        if (!associationApiList?.length) {
          proxy.$ElMessage.error('资源类型为数据接口时,服务包不能为空');
          return;
        }
      }
      if (params.coverageArea == 'all') {
        params.coverageArea = [['all']];
      } else if (!params.coverageArea) {
        params.coverageArea = params.coverageAreas;
      }
      if (damGuid.value) {
        params.guid = damGuid.value;
        params.foundMode = route.query.foundMode;
        if (route.query.dataSources != '1') {
          let userData = JSON.parse(userStore.userData);
          params.rightMain = userData.tenantGuid;
          params.rightMainName = userData.tenantName;
        } else {
          params.rightMainName = rightMainTenantList.value.find(v => v.guid == params.rightMain)?.tenantName;
        }
        fullscreenLoading.value = true;
        registerCatalogUpdate(params).then((res: any) => {
          fullscreenLoading.value = false;
          if (res.code == proxy.$passCode) {
            proxy.$ElMessage.success('数据产品编辑提交成功');
            router.push({
              // name: 'registerCatalogManagement'
              path: route.query.dataSources == '1' ? '/data-asset/authordata-catalog' : '/data-asset/register-catalog'
            });
            userStore.setTabbar(userStore.tabbar.filter((tab: any) => tab.fullPath !== fullPath));
            assetStore.setDamCatalogRefresh(true);
          } else {
            proxy.$ElMessage.error(res.msg);
          }
        });
      } else {
        params.damCatalogTableInfo = assetDataTableInfo.value.data;
        fullscreenLoading.value = true;
        console.log(params, 'params');
        if (route.query.dataSources != '1') {
          let userData = JSON.parse(userStore.userData);
          params.rightMain = userData.tenantGuid;
          params.rightMainName = userData.tenantName;
        } else {
          params.rightMainName = rightMainTenantList.value.find(v => v.guid == params.rightMain)?.tenantName;
        }
        //   params.rightMain = JSON.parse(userStore.userData).tenantGuid;
        registerCatalogSave(params).then((res: any) => {
          fullscreenLoading.value = false;
          if (res.code == proxy.$passCode) {
            proxy.$ElMessage.success('数据产品新建提交成功');
            router.push({
              // name: 'registerCatalogManagement'
              path: route.query.dataSources == '1' ? '/data-asset/authordata-catalog' : '/data-asset/register-catalog'
            });
            userStore.setTabbar(userStore.tabbar.filter((tab: any) => tab.fullPath !== fullPath));
            assetStore.setDamCatalogRefresh(true);
          } else {
            proxy.$ElMessage.error(res.msg);
          }
        });
      }
    } else {
      baseInfoExpand.value = true;
      nextTick(() => {
        setTimeout(() => {
          var obj = Object.keys(errorItem);
          baseInfoFormRef.value.ruleFormRef.scrollToField(obj[0])
        }, 500)
      });
    }
  });
}

const handleCancelImport = () => {
  importTableEditIndex.value = null
  importTableFieldVisible.value = false;
}

const handleImportSave = (val) => {
  // 先校验表名是否重名。
  let names: string[] = [];
  assetDataTableInfo.value.data.forEach((d, index) => {
    if (importTableEditIndex.value == index) {
      return;
    }
    names.push(d.tableName);
  })
  if (names.includes(val.tableName)) {
    proxy.$ElMessage.error('同一资源内的表英文名称不能重名');
    return;
  }
  if (!damGuid.value) {
    importTableFieldRef.value.fullscreenLoading = true;
    checkDamTableChange([val]).then((res: any) => {
      importTableFieldRef.value.fullscreenLoading = false;
      if (res.code == proxy.$passCode) {
        importTableFieldVisible.value = false;
        if (importTableEditIndex.value !== null) {
          assetDataTableInfo.value.data[importTableEditIndex.value] = val;
          proxy.$ElMessage.success('资源表编辑成功');
        } else {
          assetDataTableInfo.value.data.push(val);
          proxy.$ElMessage.success('资源表添加成功');
          nextTick(() => {
            setTimeout(() => {
              scrollLastRowToView(assetTableRef.value?.tableRef, assetDataTableInfo.value.data.length);
            }, 1000)
          })
        }
        importTableEditIndex.value = null;
      } else {
        proxy.$ElMessage.error(res.msg);
      }
    });
  } else {
    // 调用接口。
    val.damGuid = damGuid.value;
    if (importTableEditIndex.value !== null) {
      importTableFieldRef.value.fullscreenLoading = true;
      registerCatalogTableUpdate(val).then((res: any) => {
        importTableFieldRef.value.fullscreenLoading = false;
        if (res.code == proxy.$passCode) {
          assetDataTableInfo.value.loading = true;
          getRegisterCatalogTableList(damGuid.value).then((res: any) => {
            assetDataTableInfo.value.loading = false;
            if (res.code == proxy.$passCode) {
              assetDataTableInfo.value.data = res.data || [];
            } else {
              proxy.$ElMessage.error(res.msg);
            }
          });
          proxy.$ElMessage.success('资源表编辑成功');
          importTableFieldVisible.value = false;
          importTableEditIndex.value = null;
        } else {
          proxy.$ElMessage.error(res.msg);
        }
      });
    } else {
      importTableFieldRef.value.fullscreenLoading = true;
      registerCatalogTableSave([val]).then((res: any) => {
        importTableFieldRef.value.fullscreenLoading = false;
        if (res.code == proxy.$passCode) {
          assetDataTableInfo.value.loading = true;
          getRegisterCatalogTableList(damGuid.value).then((res: any) => {
            assetDataTableInfo.value.loading = false;
            if (res.code == proxy.$passCode) {
              assetDataTableInfo.value.data = res.data || [];
            } else {
              proxy.$ElMessage.error(res.msg);
            }
          });
          proxy.$ElMessage.success('资源表添加成功');
          importTableFieldVisible.value = false;
          nextTick(() => {
            setTimeout(() => {
              scrollLastRowToView(assetTableRef.value?.tableRef, assetDataTableInfo.value.data.length);
            }, 1000)
          })
          importTableEditIndex.value = null;
        } else {
          proxy.$ElMessage.error(res.msg);
        }
      });
    }
  }
}

</script>

<template>
  <div class="container_wrap full" v-loading="fullscreenLoading">
    <div class="content_main">
      <ContentWrap id="id-baseInfo" title="资源基本信息" description="" :isExpand="baseInfoExpand" :expand-swicth="true"
        class="mb16" @expand="(v) => baseInfoExpand = v">
        <Form ref="baseInfoFormRef" :itemList="baseInfoFormItems" formId="base-info-form" :rules="baseInfoFormRules"
          @selectChange="baseSelectChange" @checkboxChange="handleBaseInfoCheckboxChange" col="col3" />
      </ContentWrap>
      <ContentWrap v-if="baseInfoFormRef?.formInline?.damType == '2'" id="product-info" title="服务包信息" expandSwicth
        style="margin-top: 15px" :isExpand="expandServiceInfo" @expand="(v) => (expandServiceInfo = v)" description=""
        class="mb16">
        <Table ref="productTableRef" :tableInfo="productTableInfo" class="fiveRow-table"
          @table-select-change="hanldeTableSelectChange" />
        <div class="row-add-btn">
          <el-button :disabled="productData.length >= apiList.length" link @click="addProduct" :icon="CirclePlus" v-preReClick>添加服务</el-button>
        </div>
      </ContentWrap>
      <ContentWrap v-if="baseInfoFormRef?.formInline?.damType != '2'" id="id-tableInfo" title="资源表" description=""
        :expand-swicth="true" :isExpand="assetTableInfoExpand" @expand="(v) => assetTableInfoExpand = v">
        <div v-show="assetDataTableInfo.data.length" class="tools_btns">
          <el-button type="primary" @click="handleCreateTable" v-preReClick>添加</el-button>
        </div>
        <Table ref="assetTableRef" v-show="assetDataTableInfo.data.length" :tableInfo="assetDataTableInfo"
          class="mb10" />
        <div class="no-data" v-show="!assetDataTableInfo.data.length">暂无资源表 <span class="text_btn"
            @click="addAssetTable">添加</span></div>
      </ContentWrap>
    </div>
    <div class="bottom_tool_wrap" v-show="!importTableFieldVisible">
      <el-button @click="cancel">取消</el-button>
      <el-button type="primary" @click="save" v-preReClick>提交</el-button>
    </div>
    <importTableField ref="importTableFieldRef" style="z-index: 2;position: absolute;background: #fff;top:0"
      v-if="importTableFieldVisible" @cancelImport="handleCancelImport" @save="handleImportSave">
    </importTableField>
  </div>
</template>

<style lang="scss" scoped>
.content_main {
  height: calc(100% - 40px);
  padding: 16px;
  overflow: hidden auto;
  position: sticky;
}

.bottom_tool_wrap {
  height: 40px;
  padding: 0 16px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

:deep(.el-form) {
  .checkbox-cascader {
    display: flex;

    .el-cascader {
      margin-left: 8px;
    }
  }

  .checkbox-right {
    width: calc(100% - 50px);

    &.el-form-item {
      margin-bottom: 0px;
      margin-right: 0px;
      width: 100%;
    }
  }
}

.tools_btns {
  margin-bottom: 8px;
}

.no-data {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: break-spaces;
  color: #999;
}

.row-add-btn {
  .el-button--default {
    padding: 4px 0px;
    margin-top: 4px;
  }

  :deep(.el-icon) {
    width: 16px;
    height: 16px;

    svg {
      width: 16px;
      height: 16px;
    }
  }
}
</style>