@lambo-design/shared 1.0.0-beta.165 β 1.0.0-beta.166
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 +12 -0
- package/package.json +1 -1
- package/utils/menu/index.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## [1.0.0-beta.163](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.161...@lambo-design/shared@1.0.0-beta.163) (2024-04-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### π Styles | ι£ζ Ό
|
|
6
|
+
|
|
7
|
+
* **@lambo-design/shared:** 代η η»ζδΌε ([98c6f3f](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/98c6f3ff7084c77134214d0993065f775d2ec77c))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### β¨ Features | ζ°εθ½
|
|
11
|
+
|
|
12
|
+
* **@lambo-design/shared:** θεζ»΄ζδΈε€§ε±ε
±η¨ι‘΅ι’ ([abe7bbb](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/abe7bbb16618cf4cdc0353eba42f9021fc0bc97f))
|
|
13
|
+
|
|
2
14
|
## [1.0.0-beta.161](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.160...@lambo-design/shared@1.0.0-beta.161) (2024-04-24)
|
|
3
15
|
|
|
4
16
|
|
package/package.json
CHANGED
package/utils/menu/index.js
CHANGED
|
@@ -261,7 +261,7 @@ const generator = (menuData,constantRouterComponents) => {
|
|
|
261
261
|
}
|
|
262
262
|
if (uri.startsWith("dida/")) {
|
|
263
263
|
item.meta.notCache = true;
|
|
264
|
-
let path =
|
|
264
|
+
let path = uri;
|
|
265
265
|
let query = {};
|
|
266
266
|
if (path.indexOf("?") > -1) {
|
|
267
267
|
query = getUrlParams(path.substr(path.indexOf("?")));
|
|
@@ -282,7 +282,7 @@ const generator = (menuData,constantRouterComponents) => {
|
|
|
282
282
|
item.path = "/" + path;
|
|
283
283
|
} else if(uri.startsWith("dareport/")){
|
|
284
284
|
item.meta.notCache = true;
|
|
285
|
-
let path =
|
|
285
|
+
let path = uri;
|
|
286
286
|
let query = {};
|
|
287
287
|
if (path.indexOf("?") > -1) {
|
|
288
288
|
query = getUrlParams(path.substr(path.indexOf("?")));
|
|
@@ -291,7 +291,7 @@ const generator = (menuData,constantRouterComponents) => {
|
|
|
291
291
|
}
|
|
292
292
|
try{
|
|
293
293
|
item.component = resolve => {
|
|
294
|
-
require(['@/view/
|
|
294
|
+
require(['@/view/dida/dida-page'], data => {
|
|
295
295
|
data.default.name = item.name;
|
|
296
296
|
resolve(data);
|
|
297
297
|
});
|