raise-common-lib 0.0.50 → 0.0.51

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.
@@ -2179,7 +2179,9 @@
2179
2179
  if (_this.noGenerateTabUrls.includes(_this.router.url)) {
2180
2180
  return; // 排除不生成tab的url
2181
2181
  }
2182
- _this.setTab(_this.router.url, currentRoute.snapshot.routeConfig.path, title);
2182
+ /** @type {?} */
2183
+ var urlWithoutQuery = _this.router.url.split('?')[0];
2184
+ _this.setTab(urlWithoutQuery, currentRoute.snapshot.routeConfig.path, title);
2183
2185
  }
2184
2186
  }
2185
2187
  })));