atr-components 3.0.9 → 3.0.11

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.
@@ -1356,6 +1356,9 @@ class MenuService {
1356
1356
  MenuService.urlChange = new EventEmitter();
1357
1357
  }
1358
1358
  }
1359
+ getAllMenus() {
1360
+ return this.data;
1361
+ }
1359
1362
  delLastUrlParams(url) {
1360
1363
  if (MenuService.urlLastParams.url == url) {
1361
1364
  MenuService.urlLastParams = {};
@@ -1422,6 +1425,7 @@ class MenuService {
1422
1425
  if (result.status == 200) {
1423
1426
  this.isLoadMenu = 'loaded';
1424
1427
  this.data = result.data;
1428
+ console.log("菜单", this.data);
1425
1429
  }
1426
1430
  else {
1427
1431
  this.isLoadMenu = 'unload';