@indfnd/common-mobile 1.0.83 → 1.0.84
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,14 @@
|
|
|
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
|
+
### [1.0.84](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.83...v1.0.84) (2026-04-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 移动端组件库湖北版本样式优化 ([8da583f](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/8da583f0fa4a976663464f6dde5203284c746d70))
|
|
11
|
+
* 重复登录问题修复 ([eff6efc](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/eff6efcb3eafbc6335c5522c66ff2ce623950a4a))
|
|
12
|
+
|
|
5
13
|
### [1.0.83](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.82...v1.0.83) (2026-04-15)
|
|
6
14
|
|
|
7
15
|
### [1.0.82](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.81...v1.0.82) (2026-04-10)
|
|
@@ -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 = "1.0.
|
|
6
|
+
const version$2 = "1.0.83";
|
|
7
7
|
const author$1 = "huxuetong";
|
|
8
8
|
const publishConfig = {
|
|
9
9
|
registry: "https://registry.npmjs.org/"
|
|
@@ -33369,7 +33369,24 @@ function addRouterGuards({ router, store: store2, microType, allowPermissionList
|
|
|
33369
33369
|
});
|
|
33370
33370
|
}
|
|
33371
33371
|
let singleLoginPromiseMapping = {};
|
|
33372
|
-
const pluginLogin = (store2, router, targetRoute) => {
|
|
33372
|
+
const pluginLogin = async (store2, router, targetRoute) => {
|
|
33373
|
+
const ua = navigator.userAgent;
|
|
33374
|
+
if (/miniProgram/i.test(ua)) {
|
|
33375
|
+
try {
|
|
33376
|
+
await Dialog.alert({
|
|
33377
|
+
title: "\u63D0\u793A",
|
|
33378
|
+
message: "\u5F53\u524D\u4F1A\u8BDD\u5DF2\u5931\u6548\uFF0C\u7CFB\u7EDF\u5C06\u91CD\u65B0\u767B\u9646"
|
|
33379
|
+
});
|
|
33380
|
+
console.log("\u4F1A\u8BDD\u5931\u6548-------3");
|
|
33381
|
+
wx.miniProgram.navigateTo({
|
|
33382
|
+
url: "/pages/index/reload"
|
|
33383
|
+
});
|
|
33384
|
+
return;
|
|
33385
|
+
} catch (err) {
|
|
33386
|
+
console.log(err);
|
|
33387
|
+
return false;
|
|
33388
|
+
}
|
|
33389
|
+
}
|
|
33373
33390
|
let code2 = getQueryVariable("code");
|
|
33374
33391
|
let singleLoginPromise = singleLoginPromiseMapping[code2];
|
|
33375
33392
|
if (singleLoginPromise) {
|