@indfnd/common 0.1.93 → 0.1.98

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,26 @@
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
+ ### [0.1.98](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.97...v0.1.98) (2024-06-13)
6
+
7
+ ### [0.1.97](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.96...v0.1.97) (2024-06-13)
8
+
9
+ ### [0.1.96](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.95...v0.1.96) (2024-06-13)
10
+
11
+ ### [0.1.95](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.93...v0.1.95) (2024-06-13)
12
+
13
+
14
+ ### Features
15
+
16
+ * 关闭登录页面 ([4cba3ef](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/4cba3ef3cc9a4d3f3fbb6a0da316d65161e0a348))
17
+
18
+ ### [0.1.94](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.93...v0.1.94) (2024-06-13)
19
+
20
+
21
+ ### Features
22
+
23
+ * 关闭登录页面 ([4cba3ef](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/4cba3ef3cc9a4d3f3fbb6a0da316d65161e0a348))
24
+
5
25
  ### [0.1.93](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.92...v0.1.93) (2024-06-13)
6
26
 
7
27
  ### [0.1.92](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.91...v0.1.92) (2024-06-13)
@@ -2,7 +2,7 @@ import { Button as Button$1, ButtonGroup as ButtonGroup$1, Input, Drawer as Draw
2
2
  import { isNil, formatDate as formatDate$1, useConfig, getQuarterNum, formatQuarter, str2Date, isDate, isArray, checkIdCard, checkVehicleNo, checkPhone, getDictMapApi, axios, isFunction, isString, uuid, exportJsonToExcel as exportJsonToExcel$1, importJsonFromExcel, on, off, deleteMenuHistoryApi, deleteMenuCollectApi, getMenuHistoryApi, getMenuCollectApi, getPermissionCache, listItemTreeApi, getPriceInfo, MIME_TYPE, base64ToBlob, putOssFileApi, isEqual, getCaptchaURL, getLocalStorage, guid, setLocalStorage, removeLocalStorage, clearSessionStorage, cryptor, getToken, putOssFileUrl, getOssFileUrl, responseInterceptors, config as config$1, setToken, loginApi, clearUserInfoCache, clearPermissionCache, logoutApi, getUserInfoCache, getUserInfoApi, setUserInfoCache, getSessionStorage, setSessionStorage, getAppListApi, getPermissionApi, setPermissionCache, menuHistoryApi, addMenuCollectApi, removeMenuCollectApi, getIndexDescCache, listIndexDescApi, setIndexDescCache } from "@indfnd/utils";
3
3
  import Vue$1 from "vue";
4
4
  const name$1 = "@indfnd/common";
5
- const version = "0.1.92";
5
+ const version = "0.1.97";
6
6
  const author = "huxuetong";
7
7
  const publishConfig = {
8
8
  registry: "https://registry.npmjs.org/"
@@ -52501,7 +52501,7 @@ const __vue2_script$Z = {
52501
52501
  let mergeIndex = _.find(this.columns, (d) => {
52502
52502
  return d.autoMergeRow === true;
52503
52503
  });
52504
- return mergeIndex.key || mergeIndex.field;
52504
+ return (mergeIndex == null ? void 0 : mergeIndex.key) || (mergeIndex == null ? void 0 : mergeIndex.field);
52505
52505
  },
52506
52506
  mergeColumns() {
52507
52507
  return _.filter(this.columns, (d) => {
@@ -64329,7 +64329,11 @@ function createMacroBasicRoutes({ homeComponent, rootChildren } = {}) {
64329
64329
  if (rootChildren && rootChildren.length) {
64330
64330
  rootRouteTemp.children.push(...rootChildren);
64331
64331
  }
64332
- return [rootRouteTemp, loginRoute, userRoute, notFoundRoute];
64332
+ let routesTmp = [rootRouteTemp, userRoute, notFoundRoute];
64333
+ if (location.host.includes("localhost")) {
64334
+ routesTmp.push(loginRoute);
64335
+ }
64336
+ return routesTmp;
64333
64337
  }
64334
64338
  function createMicroBasicRoutes({ rootChildren } = {}) {
64335
64339
  const rootRouteTemp = _.cloneDeep(rootRoute);