@indfnd/common-mobile 0.0.52 → 0.0.55
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 +16 -0
- package/dist/ind-common-mobile.es.js +8 -3
- package/dist/ind-common-mobile.umd.cjs +25 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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.55](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.54...v0.0.55) (2024-10-16)
|
|
6
|
+
|
|
7
|
+
### [0.0.54](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.53...v0.0.54) (2024-08-28)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* 登录页ind-theme丢失问题修复 ([e62039e](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/e62039e7cd9c96e6cbca1af40736446c01659c63))
|
|
13
|
+
|
|
14
|
+
### [0.0.53](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.52...v0.0.53) (2024-08-28)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* 支持不转驼峰 ([59826c5](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/59826c52cde93cb1e1c0bb3c50adf9b4a66f4daf))
|
|
20
|
+
|
|
5
21
|
### [0.0.52](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.51...v0.0.52) (2024-08-23)
|
|
6
22
|
|
|
7
23
|
### [0.0.51](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v0.0.50...v0.0.51) (2024-08-23)
|
|
@@ -2,7 +2,7 @@ import { getQuarterNum, getHalfYearNum, formatDate, useConfig, getLocalStorage,
|
|
|
2
2
|
import Vue$1 from "vue";
|
|
3
3
|
import { DropdownMenu as DropdownMenu$1, DropdownItem as DropdownItem$1, Message, LoadingBar, Spin } from "view-design";
|
|
4
4
|
const name$1 = "@indfnd/common-mobile";
|
|
5
|
-
const version$2 = "0.0.
|
|
5
|
+
const version$2 = "0.0.54";
|
|
6
6
|
const author$1 = "huxuetong";
|
|
7
7
|
const publishConfig = {
|
|
8
8
|
registry: "https://registry.npmjs.org/"
|
|
@@ -63102,7 +63102,7 @@ const __vue2_script$e = {
|
|
|
63102
63102
|
mounted() {
|
|
63103
63103
|
clearSessionStorage();
|
|
63104
63104
|
let theme = this.$store.getters.getTheme;
|
|
63105
|
-
|
|
63105
|
+
doChangeTheme(theme);
|
|
63106
63106
|
},
|
|
63107
63107
|
methods: {
|
|
63108
63108
|
...mapActions(["handleLogin"]),
|
|
@@ -68615,7 +68615,12 @@ const __vue2_script$3 = {
|
|
|
68615
68615
|
},
|
|
68616
68616
|
methods: {
|
|
68617
68617
|
routeTo(app2) {
|
|
68618
|
-
|
|
68618
|
+
var _a;
|
|
68619
|
+
if ((_a = app2 == null ? void 0 : app2.uri) == null ? void 0 : _a.includes("http")) {
|
|
68620
|
+
location.href = app2.uri;
|
|
68621
|
+
} else {
|
|
68622
|
+
this.$router.push({ path: app2.uri });
|
|
68623
|
+
}
|
|
68619
68624
|
},
|
|
68620
68625
|
toggleEdit() {
|
|
68621
68626
|
switch (this.currentEditStatus) {
|