kz-ui-base 1.0.21 → 1.0.23
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/common/src/plugins/index.js +20 -20
- package/common/src/views/tenantLogin.vue +0 -1
- package/package.json +12 -12
|
@@ -6,11 +6,11 @@ import download from "./download";
|
|
|
6
6
|
import { getUrl } from "../api/common/common";
|
|
7
7
|
import { getToken } from "../utils/auth";
|
|
8
8
|
import { getWebConfig } from "../utils/utils";
|
|
9
|
-
import { initFdCache } from "../utils/cache/fdCache";
|
|
10
|
-
import { initTmCache } from "../utils/cache/tmCache";
|
|
11
|
-
import { initBdCache } from "../utils/cache/bdCache";
|
|
12
|
-
import { initEamCache } from "../utils/cache/eamCache";
|
|
13
|
-
import { initSmCache } from "../utils/cache/smCache";
|
|
9
|
+
// import { initFdCache } from "../utils/cache/fdCache";
|
|
10
|
+
// import { initTmCache } from "../utils/cache/tmCache";
|
|
11
|
+
// import { initBdCache } from "../utils/cache/bdCache";
|
|
12
|
+
// import { initEamCache } from "../utils/cache/eamCache";
|
|
13
|
+
// import { initSmCache } from "../utils/cache/smCache";
|
|
14
14
|
|
|
15
15
|
export default {
|
|
16
16
|
install(Vue) {
|
|
@@ -33,21 +33,21 @@ export default {
|
|
|
33
33
|
if (webConfig.cache.system) {
|
|
34
34
|
initSystemCache();
|
|
35
35
|
}
|
|
36
|
-
if (webConfig.cache.fd) {
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
if (webConfig.cache.tm) {
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
if (webConfig.cache.bd) {
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
if (webConfig.cache.eam) {
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
if (webConfig.cache.sm) {
|
|
49
|
-
|
|
50
|
-
}
|
|
36
|
+
// if (webConfig.cache.fd) {
|
|
37
|
+
// initFdCache();
|
|
38
|
+
// }
|
|
39
|
+
// if (webConfig.cache.tm) {
|
|
40
|
+
// initTmCache();
|
|
41
|
+
// }
|
|
42
|
+
// if (webConfig.cache.bd) {
|
|
43
|
+
// initBdCache();
|
|
44
|
+
// }
|
|
45
|
+
// if (webConfig.cache.eam) {
|
|
46
|
+
// initEamCache();
|
|
47
|
+
// }
|
|
48
|
+
// if (webConfig.cache.sm) {
|
|
49
|
+
// initSmCache();
|
|
50
|
+
// }
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
|
|
@@ -124,7 +124,6 @@ import { getAllRouters } from "@api/menu";
|
|
|
124
124
|
import { getCodeImg } from "../api/login";
|
|
125
125
|
import Cookies from "~../../js-cookie";
|
|
126
126
|
import { encrypt, decrypt } from "../utils/jsencrypt";
|
|
127
|
-
import { registerMicroApps, start, setDefaultMountApp } from 'qiankun'
|
|
128
127
|
export default {
|
|
129
128
|
name: "Login",
|
|
130
129
|
data() {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "kz-ui-base",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
-
},
|
|
9
|
-
"keywords": [],
|
|
10
|
-
"author": "",
|
|
11
|
-
"license": "ISC"
|
|
12
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "kz-ui-base",
|
|
3
|
+
"version": "1.0.23",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "ISC"
|
|
12
|
+
}
|