@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/shared",
3
- "version": "1.0.0-beta.165",
3
+ "version": "1.0.0-beta.166",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -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 = item.uri;
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 = item.uri;
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/dareport/dareport'], data => {
294
+ require(['@/view/dida/dida-page'], data => {
295
295
  data.default.name = item.name;
296
296
  resolve(data);
297
297
  });