@indfnd/common-mobile 0.0.117 → 0.0.119

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
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.119](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.118...v0.0.119) (2025-12-12)
6
+
7
+
8
+ ### Features
9
+
10
+ * 修复小程序会话问题 ([c3f97ed](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/c3f97ed0203a1b1ac494c0ec5337f1e721b83824))
11
+
12
+ ### [0.0.118](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.117...v0.0.118) (2025-12-12)
13
+
14
+
15
+ ### Features
16
+
17
+ * 会话异常逻辑分支处理 ([6346908](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/63469082b5b241589e4c99974419221045c34b13))
18
+
5
19
  ### [0.0.117](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.116...v0.0.117) (2025-12-08)
6
20
 
7
21
 
@@ -3,7 +3,7 @@ import { getQuarterNum, getHalfYearNum, formatDate, useConfig, getLocalStorage,
3
3
  import Vue$1 from "vue";
4
4
  import { DropdownMenu as DropdownMenu$1, DropdownItem as DropdownItem$1, Message, LoadingBar, Spin } from "view-design";
5
5
  const name$1 = "@indfnd/common-mobile";
6
- const version$2 = "0.0.116";
6
+ const version$2 = "0.0.118";
7
7
  const author$1 = "huxuetong";
8
8
  const publishConfig = {
9
9
  registry: "https://registry.npmjs.org/"
@@ -30628,6 +30628,14 @@ function addRouterGuards({ router, store: store2, microType, allowPermissionList
30628
30628
  store2.dispatch("loginSuccess", token);
30629
30629
  }
30630
30630
  }
30631
+ if (!token) {
30632
+ let tokenInQuery = window.getQueryVariable("tokenWeapp");
30633
+ if (tokenInQuery) {
30634
+ console.log("tokenInQuery", tokenInQuery);
30635
+ setToken(tokenInQuery);
30636
+ token = tokenInQuery;
30637
+ }
30638
+ }
30631
30639
  }
30632
30640
  console.log("typeof window.Code", typeof window.Code);
30633
30641
  async function _renderRoutes() {