ecinc-cloud-wappaio 9.7.32 → 9.7.33

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.
@@ -272291,7 +272291,7 @@ service.interceptors.response.use(function (response) {
272291
272291
  if (window.vType === 'wapp') {
272292
272292
  var ignoreUrls = ['login', 'getUserRolePermissions', 'getUiStyleConfig', 'queryUiFontSize', 'homepage/allm'];
272293
272293
  if (!ignoreUrls.some(function (u) {
272294
- return error.config.url.toLowerCase().indexOf(u) !== -1;
272294
+ return error.config.url.toLowerCase().indexOf(u.toLocaleLowerCase()) !== -1;
272295
272295
  })) {
272296
272296
  //认证会话已过期,请重新登录。
272297
272297
  window.$alert(errmsg, window.$tx('common.operationTip'), {
@@ -272301,7 +272301,7 @@ service.interceptors.response.use(function (response) {
272301
272301
  if (window.vType === 'wapp') {
272302
272302
  var ignoreUrls = ['login', 'getUserRolePermissions', 'getUiStyleConfig', 'queryUiFontSize', 'homepage/allm'];
272303
272303
  if (!ignoreUrls.some(function (u) {
272304
- return error.config.url.toLowerCase().indexOf(u) !== -1;
272304
+ return error.config.url.toLowerCase().indexOf(u.toLocaleLowerCase()) !== -1;
272305
272305
  })) {
272306
272306
  //认证会话已过期,请重新登录。
272307
272307
  window.$alert(errmsg, window.$tx('common.operationTip'), {