@indfnd/common 0.1.93 → 0.1.95
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 +14 -0
- package/dist/ind-common.es.js +6 -2
- package/dist/ind-common.umd.cjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.95](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.93...v0.1.95) (2024-06-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 关闭登录页面 ([4cba3ef](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/4cba3ef3cc9a4d3f3fbb6a0da316d65161e0a348))
|
|
11
|
+
|
|
12
|
+
### [0.1.94](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.93...v0.1.94) (2024-06-13)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* 关闭登录页面 ([4cba3ef](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/4cba3ef3cc9a4d3f3fbb6a0da316d65161e0a348))
|
|
18
|
+
|
|
5
19
|
### [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
20
|
|
|
7
21
|
### [0.1.92](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v0.1.91...v0.1.92) (2024-06-13)
|
package/dist/ind-common.es.js
CHANGED
|
@@ -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.
|
|
5
|
+
const version = "0.1.94";
|
|
6
6
|
const author = "huxuetong";
|
|
7
7
|
const publishConfig = {
|
|
8
8
|
registry: "https://registry.npmjs.org/"
|
|
@@ -64329,7 +64329,11 @@ function createMacroBasicRoutes({ homeComponent, rootChildren } = {}) {
|
|
|
64329
64329
|
if (rootChildren && rootChildren.length) {
|
|
64330
64330
|
rootRouteTemp.children.push(...rootChildren);
|
|
64331
64331
|
}
|
|
64332
|
-
|
|
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);
|