@indfnd/common 1.1.17 → 1.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.1.18](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.1.17...v1.1.18) (2025-11-06)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 表格组件修改 ([3b0f8e1](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/3b0f8e1179aa7eedfa9e57de3a3b83ef26819d5b))
11
+ * 路由升级 ([4c452b8](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/4c452b82991d4df843bf593e67b90a04006201df))
12
+ * 路由升级 ([f248b56](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/f248b56d827b22fe1dd7683f81c0b5c84b37aeef))
13
+
5
14
  ### [1.1.17](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.1.16...v1.1.17) (2025-11-03)
6
15
 
7
16
 
@@ -1,5 +1,5 @@
1
1
  import { Button as Button$1, ButtonGroup as ButtonGroup$1, Input, Drawer as Drawer$1, Dropdown as Dropdown$1, Modal as Modal$1, Form, FormItem, Select as Select$1, Option, Row, Col, Menu, MenuItem, Submenu, Badge, DropdownMenu, DropdownItem, Tag, Header, Layout, Content, Spin, Poptip as Poptip$1, CheckboxGroup, Checkbox, RadioGroup, Radio, Card, Message, LoadingBar } from "view-design";
2
- import { isNil, getSessionStorage, putOssFileApi, formatDate as formatDate$1, useConfig, getQuarterNum, formatQuarter, str2Date, isDate as isDate$1, isArray as isArray$1, checkIdCard, checkVehicleNo, checkPhone, getDictMapApi, axios as axios$3, getPreviewUrlApi, getToken, isFunction as isFunction$1, isString as isString$1, uuid, exportJsonToExcel as exportJsonToExcel$1, importJsonFromExcel, on, off, deleteMenuHistoryApi, deleteMenuCollectApi, getMenuHistoryApi, getMenuCollectApi, getPermissionCache, getLocalStorage, listItemTreeApi, getPriceInfo, MIME_TYPE, base64ToBlob, isEqual, getCaptchaURL, guid, setLocalStorage, removeLocalStorage, clearSessionStorage, cryptor, putOssFileUrl, getOssFileUrl, responseInterceptors, listComTreeApi, listUserTreeApi, UC_ENUM, config as config$1, setToken, loginApi, clearUserInfoCache, clearPermissionCache, logoutApi, getUserInfoCache, getUserInfoApi, setUserInfoCache, setSessionStorage, getAppListApi, getPermissionApi, setPermissionCache, menuHistoryApi, addMenuCollectApi, removeMenuCollectApi, getIndexDescCache, listIndexDescApi, setIndexDescCache } from "@indfnd/utils";
2
+ import { isNil, getSessionStorage, putOssFileApi, formatDate as formatDate$1, useConfig, getQuarterNum, formatQuarter, str2Date, isDate as isDate$1, isArray as isArray$1, checkIdCard, checkVehicleNo, checkPhone, getDictMapApi, axios as axios$3, getPreviewUrlApi, getToken, isFunction as isFunction$1, isString as isString$1, uuid, exportJsonToExcel as exportJsonToExcel$1, importJsonFromExcel, isEqual, on, off, deleteMenuHistoryApi, deleteMenuCollectApi, getMenuHistoryApi, getMenuCollectApi, getLocalStorage, getPermissionCache, listItemTreeApi, getPriceInfo, MIME_TYPE, base64ToBlob, getCaptchaURL, guid, setLocalStorage, removeLocalStorage, clearSessionStorage, cryptor, putOssFileUrl, getOssFileUrl, responseInterceptors, listComTreeApi, listUserTreeApi, UC_ENUM, config as config$1, setToken, loginApi, clearUserInfoCache, clearPermissionCache, logoutApi, getUserInfoCache, getUserInfoApi, setUserInfoCache, setSessionStorage, getAppListApi, getPermissionApi, setPermissionCache, menuHistoryApi, addMenuCollectApi, removeMenuCollectApi, getIndexDescCache, listIndexDescApi, setIndexDescCache } from "@indfnd/utils";
3
3
  import Vue$1 from "vue";
4
4
  var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
5
5
  function getAugmentedNamespace(n) {
@@ -5460,7 +5460,7 @@ var lodash = { exports: {} };
5460
5460
  })(lodash, lodash.exports);
5461
5461
  var _ = lodash.exports;
5462
5462
  const name$1 = "@indfnd/common";
5463
- const version = "1.1.16";
5463
+ const version = "1.1.17";
5464
5464
  const author = "huxuetong";
5465
5465
  const publishConfig = {
5466
5466
  registry: "https://registry.npmjs.org/"
@@ -53503,7 +53503,8 @@ const __vue2_script$14 = {
53503
53503
  return data2.treeLevelFlag;
53504
53504
  },
53505
53505
  autoGroupColumnDef: null,
53506
- groupDisplayType: ""
53506
+ groupDisplayType: "",
53507
+ inited: false
53507
53508
  };
53508
53509
  },
53509
53510
  computed: {
@@ -53744,7 +53745,13 @@ const __vue2_script$14 = {
53744
53745
  this.renderSumRow();
53745
53746
  }
53746
53747
  },
53747
- async created() {
53748
+ created() {
53749
+ if (this.autoRefresh) {
53750
+ this.tableRefresh();
53751
+ this.inited = true;
53752
+ }
53753
+ },
53754
+ async mounted() {
53748
53755
  var _a;
53749
53756
  this.tableRef = this;
53750
53757
  this.unitType = this.defaultTableUnitType;
@@ -53773,7 +53780,10 @@ const __vue2_script$14 = {
53773
53780
  activated() {
53774
53781
  console.log(this._uid + "activated");
53775
53782
  if (this.autoRefresh) {
53776
- this.tableRefresh();
53783
+ if (!this.inited) {
53784
+ this.tableRefresh();
53785
+ }
53786
+ this.inited = false;
53777
53787
  }
53778
53788
  },
53779
53789
  destroyed() {
@@ -57595,8 +57605,11 @@ const __vue2_script$_ = {
57595
57605
  watchUrlParamsProp() {
57596
57606
  this.$watch(
57597
57607
  "urlParams",
57598
- () => {
57599
- this.init();
57608
+ (newVal, oldVal) => {
57609
+ let flag = isEqual(newVal, oldVal);
57610
+ if (!flag) {
57611
+ this.init();
57612
+ }
57600
57613
  },
57601
57614
  { immediate: true }
57602
57615
  );
@@ -60622,17 +60635,30 @@ var render$G = function() {
60622
60635
  var staticRenderFns$G = [];
60623
60636
  const __vue2_script$H = {
60624
60637
  name: "IndEmptyLayout",
60638
+ data() {
60639
+ return {
60640
+ tagNavList: []
60641
+ };
60642
+ },
60625
60643
  computed: {
60626
- tagNavList() {
60627
- return this.$store.state.app.tagNavList;
60628
- },
60629
60644
  notCacheName() {
60630
60645
  return [this.$route.meta && this.$route.meta.notCache ? this.$route.name : ""];
60631
60646
  },
60632
60647
  cacheList() {
60633
- const list = (this.tagNavList || []).filter((item2) => !(item2.meta && item2.meta.notCache)).map((item2) => item2.name);
60648
+ const list = (this.tagNavList || []).filter((item2) => !(item2.meta && item2.meta.notCache)).map((item2) => {
60649
+ var _a, _b;
60650
+ return (_b = (_a = item2.meta) == null ? void 0 : _a.data) == null ? void 0 : _b.permissionValue;
60651
+ });
60634
60652
  return ["IndEmptyLayout", ...list];
60635
60653
  }
60654
+ },
60655
+ watch: {
60656
+ $route: {
60657
+ handler() {
60658
+ this.tagNavList = getLocalStorage("ibp-sc-tagNavList");
60659
+ },
60660
+ immediate: true
60661
+ }
60636
60662
  }
60637
60663
  };
60638
60664
  const __cssModules$H = {};
@@ -60681,7 +60707,7 @@ function __vue2_injectStyles$G(context) {
60681
60707
  this[o] = __cssModules$G[o];
60682
60708
  }
60683
60709
  }
60684
- var pageLayout = /* @__PURE__ */ function() {
60710
+ var PageLayout = /* @__PURE__ */ function() {
60685
60711
  return __component__$G.exports;
60686
60712
  }();
60687
60713
  var render$E = function() {
@@ -71571,7 +71597,7 @@ var components = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
71571
71597
  User,
71572
71598
  BasicLayout,
71573
71599
  EmptyLayout,
71574
- PageLayout: pageLayout,
71600
+ PageLayout,
71575
71601
  DetailView: detailView,
71576
71602
  PageView: pageView,
71577
71603
  Login,
@@ -71733,8 +71759,44 @@ const PERMISSION_TYPE = {
71733
71759
  function isMenuPermissionType(type) {
71734
71760
  return [PERMISSION_TYPE.DIRECTORY, PERMISSION_TYPE.MENU].includes(type);
71735
71761
  }
71762
+ function getPermissionType(type) {
71763
+ return Object.keys(PERMISSION_TYPE).find((key) => PERMISSION_TYPE[key] === type);
71764
+ }
71736
71765
  function filterMicroPermissionList(microType, permissionList = []) {
71737
- return permissionList;
71766
+ if (!microType)
71767
+ return permissionList;
71768
+ return permissionList.filter((item2) => {
71769
+ const itemName = item2 && item2.permissionValue || "";
71770
+ return itemName.startsWith(microType) || itemName.startsWith(`${config$1.routerBase}-${microType}`);
71771
+ });
71772
+ }
71773
+ function permission2Router(list, microType) {
71774
+ console.log("permission2Router params", list, microType);
71775
+ if (!list) {
71776
+ return [];
71777
+ }
71778
+ let tempList = [];
71779
+ for (const item2 of list) {
71780
+ tempList.push({
71781
+ path: dealRoutePath(item2.uri, microType),
71782
+ uri: item2.uri,
71783
+ name: item2.permissionValue,
71784
+ meta: {
71785
+ appId: item2.appId,
71786
+ permissionId: item2.permissionId,
71787
+ title: item2.label,
71788
+ icon: item2.icon,
71789
+ crumbs: [
71790
+ { icon: item2.icon, name: item2.permissionValue, title: item2.label, type: item2.type }
71791
+ ],
71792
+ activeName: item2.permissionValue,
71793
+ data: item2
71794
+ },
71795
+ component: item2.permissionValue
71796
+ });
71797
+ }
71798
+ console.log("permission2Router result", tempList);
71799
+ return tempList;
71738
71800
  }
71739
71801
  function listToMenuTree({ list, menuTree, pageNode, parentId, crumbs, root, microType }) {
71740
71802
  if (!list)
@@ -71836,29 +71898,6 @@ function generatorMenuTree(permissionList = []) {
71836
71898
  });
71837
71899
  return menuTree;
71838
71900
  }
71839
- function generatorDynamicRouter(permissionList = [], microType) {
71840
- const menuTree = [];
71841
- const pageNode = {
71842
- path: "/page",
71843
- name: "page",
71844
- meta: { hideInMenu: true, notCache: true },
71845
- component: "EmptyLayoutNotCache",
71846
- children: []
71847
- };
71848
- listToMenuTree({
71849
- list: permissionList,
71850
- menuTree,
71851
- pageNode,
71852
- parentId: "0",
71853
- crumbs: [],
71854
- root: true,
71855
- microType
71856
- });
71857
- if (pageNode.children.length) {
71858
- menuTree.push(pageNode);
71859
- }
71860
- return generator(menuTree);
71861
- }
71862
71901
  function generator(menuData = []) {
71863
71902
  for (let item2 of menuData) {
71864
71903
  if (item2.component) {
@@ -71880,31 +71919,96 @@ function generator(menuData = []) {
71880
71919
  }
71881
71920
  return menuData;
71882
71921
  }
71883
- async function renderRoutes({ router, store: store2, microType, allowPermissionList, routerOptionsBak }) {
71884
- store2.dispatch("getIndexInfo");
71885
- await store2.dispatch("getUserInfo");
71886
- await store2.dispatch("getAppListData");
71887
- const permissionData = await store2.dispatch("getPermissionData");
71888
- router.options = _.cloneDeep(routerOptionsBak);
71922
+ function generatorRouteByPermission(item2) {
71923
+ if (window.loadComponentHandler) {
71924
+ item2.component = window.loadComponentHandler(item2.path, item2.name) || NotFound;
71925
+ } else {
71926
+ console.error(`\u627E\u4E0D\u5230\u7EC4\u4EF6\u5B9A\u4E49:${item2.component},\u8BF7\u6392\u67E5\u8D44\u6E90\u8DEF\u5F84\u914D\u7F6E\u662F\u5426\u6B63\u786E`);
71927
+ item2.component = NotFound;
71928
+ }
71929
+ return item2;
71930
+ }
71931
+ const isAdded = (router, route) => {
71932
+ var _a, _b;
71933
+ let rlt = router.resolve(route);
71934
+ return !!((_b = (_a = rlt == null ? void 0 : rlt.resolved) == null ? void 0 : _a.matched) == null ? void 0 : _b.length);
71935
+ };
71936
+ const pageRoute = {
71937
+ path: "/page",
71938
+ name: "page",
71939
+ meta: { hideInMenu: true, notCache: true },
71940
+ component: PageLayout,
71941
+ children: []
71942
+ };
71943
+ async function renderRoutes({
71944
+ router,
71945
+ store: store2,
71946
+ microType,
71947
+ allowPermissionList,
71948
+ routerOptionsBak,
71949
+ to
71950
+ }) {
71951
+ let isInitilaze = !store2.state.user.userName;
71952
+ if (isAdded(router, to) && !isInitilaze) {
71953
+ return;
71954
+ }
71955
+ if (isInitilaze) {
71956
+ await store2.dispatch("getUserInfo");
71957
+ await store2.dispatch("getAppListData");
71958
+ await store2.dispatch("getPermissionData", {
71959
+ constantRouterComponents,
71960
+ permissionStoreKeyParams: "ibp-sc-permission"
71961
+ });
71962
+ router.options = _.cloneDeep(routerOptionsBak);
71963
+ }
71964
+ const permissionData = getPermissionCache();
71889
71965
  const microPermissionData = filterMicroPermissionList(microType, permissionData);
71890
- const dynamicRouters = generatorDynamicRouter(microPermissionData, microType);
71891
- console.log("dynamicROuters", dynamicRouters);
71892
71966
  const rootRoute2 = router.options.routes.find((item2) => item2.path === "/");
71893
- for (const item2 of dynamicRouters) {
71894
- router.addRoute(rootRoute2.name, item2);
71895
- rootRoute2.children.push(item2);
71967
+ if (isInitilaze) {
71968
+ router.addRoute(rootRoute2.name, pageRoute);
71969
+ rootRoute2.children.push(pageRoute);
71896
71970
  }
71897
- const microAllowPermissionList = filterMicroPermissionList(microType, allowPermissionList);
71898
- const needAddRoutes = microAllowPermissionList.filter((permission2) => {
71899
- return router.options.routes.findIndex((route) => permission2.name === route.name) === -1;
71900
- });
71901
- needAddRoutes.forEach((item2) => {
71902
- item2.component = item2.name;
71903
- item2.meta = { hideInMenu: true, title: item2.label, activeName: item2.name };
71904
- });
71905
- const dynamicDetailRouters = generator(needAddRoutes);
71906
- for (const item2 of dynamicDetailRouters) {
71907
- router.addRoute(config.rootRouteName, item2);
71971
+ if (!isAdded(router, to)) {
71972
+ let tempPer = microPermissionData.find((item2) => {
71973
+ return item2.permissionValue == to.name || item2.name == to.name;
71974
+ });
71975
+ if (!tempPer && to.path != "/") {
71976
+ tempPer = microPermissionData.find((item2) => {
71977
+ var _a, _b, _c;
71978
+ return ((_a = item2 == null ? void 0 : item2.uri) == null ? void 0 : _a.includes("?")) ? (_b = item2 == null ? void 0 : item2.uri) == null ? void 0 : _b.includes(to.path) : (_c = item2 == null ? void 0 : item2.uri) == null ? void 0 : _c.endsWith(to.path);
71979
+ });
71980
+ }
71981
+ const perType = getPermissionType(tempPer.type || "");
71982
+ let tmpRoute = generatorRouteByPermission(permission2Router([tempPer], microType)[0]);
71983
+ if (perType == "PAGE") {
71984
+ router.addRoute(pageRoute.name, {
71985
+ ...tmpRoute,
71986
+ meta: { ...tmpRoute.meta, notCache: true }
71987
+ });
71988
+ pageRoute.children.push(tmpRoute);
71989
+ }
71990
+ if (perType == "MENU") {
71991
+ router.addRoute(rootRoute2.name, tmpRoute);
71992
+ rootRoute2.children.push(tmpRoute);
71993
+ }
71994
+ }
71995
+ if (isInitilaze) {
71996
+ const microAllowPermissionList = filterMicroPermissionList(microType, allowPermissionList);
71997
+ const needAddRoutes = microAllowPermissionList.filter((permission2) => {
71998
+ return router.options.routes.findIndex((route) => permission2.name === route.name) === -1;
71999
+ });
72000
+ needAddRoutes.forEach((item2) => {
72001
+ item2.component = item2.name;
72002
+ item2.meta = {
72003
+ hideInMenu: true,
72004
+ title: item2.label,
72005
+ activeName: item2.name
72006
+ };
72007
+ });
72008
+ const dynamicDetailRouters = generator(needAddRoutes);
72009
+ for (const item2 of dynamicDetailRouters) {
72010
+ router.addRoute(config.rootRouteName, item2);
72011
+ }
71908
72012
  }
71909
72013
  }
71910
72014
  function addRouterGuards({ router, store: store2, microType, allowPermissionList }) {
@@ -71919,13 +72023,7 @@ function addRouterGuards({ router, store: store2, microType, allowPermissionList
71919
72023
  if (url.endsWith("/login"))
71920
72024
  return;
71921
72025
  if (window.confirm("\u4F1A\u8BDD\u5DF2\u5931\u6548\uFF0C\u662F\u5426\u91CD\u65B0\u767B\u5F55\uFF1F")) {
71922
- if (top == self) {
71923
- router.push({ name: LOGIN_PAGE_NAME }, () => {
71924
- window.location.reload();
71925
- });
71926
- } else {
71927
- top.location = "/ibp-sc/login";
71928
- }
72026
+ top.location = "/ibp-sc/login";
71929
72027
  }
71930
72028
  };
71931
72029
  window.apiErrorHandler = function(msg) {
@@ -71954,9 +72052,11 @@ function addRouterGuards({ router, store: store2, microType, allowPermissionList
71954
72052
  return false;
71955
72053
  };
71956
72054
  router.beforeEach(async (to, from, next) => {
72055
+ var _a;
71957
72056
  LoadingBar.start();
71958
72057
  let token = getToken();
71959
72058
  let search = location.search;
72059
+ let tempToken = false;
71960
72060
  if (search) {
71961
72061
  let rlt = getQueryVariable("token");
71962
72062
  if (rlt) {
@@ -71965,17 +72065,18 @@ function addRouterGuards({ router, store: store2, microType, allowPermissionList
71965
72065
  store2.dispatch("loginSuccess", token);
71966
72066
  }
71967
72067
  }
71968
- let ssoToken = getQueryVariable("sso_token");
72068
+ let ssoToken = getQueryVariable("sso_token") || sessionStorage.getItem("sso_token");
71969
72069
  if (ssoToken) {
71970
- token = true;
72070
+ tempToken = true;
71971
72071
  sessionStorage.setItem("sso_token", ssoToken);
71972
72072
  }
71973
72073
  }
71974
- if (!token && to.name !== LOGIN_PAGE_NAME) {
72074
+ let isInitilaze = !store2.state.user.userName;
72075
+ if (!tempToken && !token && to.name !== LOGIN_PAGE_NAME) {
71975
72076
  next({ name: LOGIN_PAGE_NAME });
71976
72077
  } else if (to.name === LOGIN_PAGE_NAME) {
71977
72078
  next();
71978
- } else if (!store2.state.user.userName) {
72079
+ } else if (isInitilaze || top !== self || location.href.includes("imarket-analysis")) {
71979
72080
  Spin.show();
71980
72081
  try {
71981
72082
  await renderRoutes({
@@ -71983,10 +72084,23 @@ function addRouterGuards({ router, store: store2, microType, allowPermissionList
71983
72084
  store: store2,
71984
72085
  microType,
71985
72086
  allowPermissionList,
71986
- routerOptionsBak
72087
+ routerOptionsBak,
72088
+ to
71987
72089
  });
71988
- next({ ...to, replace: true });
72090
+ if (isInitilaze || !((_a = to.matched) == null ? void 0 : _a.length)) {
72091
+ console.log("\u8DEF\u7531\u6CA1\u6709\u5339\u914D\u5230", to);
72092
+ if (to.name && to.path == "/") {
72093
+ next({ name: to.name, query: to.query });
72094
+ } else {
72095
+ console.log("\u8DEF\u7531\u5339\u914D\u5230\uFF0C\u8DF3", to);
72096
+ next({ ...to });
72097
+ }
72098
+ } else {
72099
+ console.log("\u8DEF\u7531\u5339\u914D\u5230\uFF0C\u8DF32", to);
72100
+ next();
72101
+ }
71989
72102
  } catch (error) {
72103
+ console.log("router.beforeeach err", error);
71990
72104
  next({ name: LOGIN_PAGE_NAME });
71991
72105
  }
71992
72106
  Spin.hide();
@@ -73562,4 +73676,4 @@ const API = {
73562
73676
  getDefaultTheme,
73563
73677
  doChangeTheme
73564
73678
  };
73565
- export { AppMenu, auditLogModal as AuditLogModal, auditModal as AuditModal, BackTop, backTopPanel as BackTopPanel, BasicLayout, brandInputModal as BrandInputModal, Button, ButtonGroup, Collect, comInputModal as ComInputModal, ConditionPanel, datePicker as DatePicker, detailView as DetailView, Drawer, Dropdown, dropdownItem as DropdownItem, dropdownMenu as DropdownMenu, EmptyLayout, ErrorContent, errorStore as ErrorStore, index$4 as ExcelFlowModal, FormWrap, Fullscreen as FullScreen, helpTableModal as HelpTableModal, helpTreeModal as HelpTreeModal, Icons, imagePreview as ImagePreview, configPlugin as IndConfigPlugin, routerPlugin as IndRouterPlugin, index$2 as ItemCompInputModal, itemInputModal as ItemInputModal, itemTypeCombineSelect as ItemTypeCombineSelect, language as Language, LoadingPanel, Login, materialItemModal as MaterialItemModal, mobileindex as MobileTable, Modal, NotFound, IndOption as Option, optionGroup as OptionGroup, OtherMenu, pageLayout as PageLayout, pageView as PageView, Poptip, reportIndexModal as ReportIndexModal, reportOptionModal as ReportOptionModal, roleAuth as RoleAuth, index$1 as RowSumSettingInputModal, Select, SideMenu, SideMenuItem, SiderTrigger, Sign, signModal as SignModal, index as StepTrack, Table, TagsNav, Tooltip, Tree, index$3 as TreeModal, ImpTreeSelect as TreeSelect, unitRadio as UnitRadio, uploadFile as UploadFile, uploadImg as UploadImg, User, userAuth as UserAuth, editor as WangEditor, zeroRadio as ZeroRadio, addRouterGuards, clickOutside, createMacroBasicRoutes, createMicroBasicRoutes, API as default, install, permission, print, routerOptions, store, transferDom };
73679
+ export { AppMenu, auditLogModal as AuditLogModal, auditModal as AuditModal, BackTop, backTopPanel as BackTopPanel, BasicLayout, brandInputModal as BrandInputModal, Button, ButtonGroup, Collect, comInputModal as ComInputModal, ConditionPanel, datePicker as DatePicker, detailView as DetailView, Drawer, Dropdown, dropdownItem as DropdownItem, dropdownMenu as DropdownMenu, EmptyLayout, ErrorContent, errorStore as ErrorStore, index$4 as ExcelFlowModal, FormWrap, Fullscreen as FullScreen, helpTableModal as HelpTableModal, helpTreeModal as HelpTreeModal, Icons, imagePreview as ImagePreview, configPlugin as IndConfigPlugin, routerPlugin as IndRouterPlugin, index$2 as ItemCompInputModal, itemInputModal as ItemInputModal, itemTypeCombineSelect as ItemTypeCombineSelect, language as Language, LoadingPanel, Login, materialItemModal as MaterialItemModal, mobileindex as MobileTable, Modal, NotFound, IndOption as Option, optionGroup as OptionGroup, OtherMenu, PageLayout, pageView as PageView, Poptip, reportIndexModal as ReportIndexModal, reportOptionModal as ReportOptionModal, roleAuth as RoleAuth, index$1 as RowSumSettingInputModal, Select, SideMenu, SideMenuItem, SiderTrigger, Sign, signModal as SignModal, index as StepTrack, Table, TagsNav, Tooltip, Tree, index$3 as TreeModal, ImpTreeSelect as TreeSelect, unitRadio as UnitRadio, uploadFile as UploadFile, uploadImg as UploadImg, User, userAuth as UserAuth, editor as WangEditor, zeroRadio as ZeroRadio, addRouterGuards, clickOutside, createMacroBasicRoutes, createMicroBasicRoutes, API as default, install, permission, print, routerOptions, store, transferDom };