@indfnd/common-mobile 1.0.86 → 1.0.89
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,23 @@
|
|
|
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.89](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.88...v1.0.89) (2026-04-29)
|
|
6
|
+
|
|
7
|
+
### [1.0.88](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.87...v1.0.88) (2026-04-29)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* 修复批量审核 ([7651013](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/76510131dfb02d7f396bc2c7b1c1062d584b0e90))
|
|
13
|
+
* 增加store变量 ([476449e](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/476449e2bc9a1e97712ead401eab4c8a7b5bf630))
|
|
14
|
+
|
|
15
|
+
### [1.0.87](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.86...v1.0.87) (2026-04-20)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* 批量审核 ([30c0fe4](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/30c0fe4906635beb8f1254666c49e3b4bbe9f8c8))
|
|
21
|
+
|
|
5
22
|
### [1.0.86](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.85...v1.0.86) (2026-04-17)
|
|
6
23
|
|
|
7
24
|
### [1.0.85](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.84...v1.0.85) (2026-04-17)
|
|
@@ -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.88";
|
|
7
7
|
const author$1 = "huxuetong";
|
|
8
8
|
const publishConfig = {
|
|
9
9
|
registry: "https://registry.npmjs.org/"
|
|
@@ -4286,6 +4286,7 @@ const __vue2_script$z = {
|
|
|
4286
4286
|
this.pagination.offset = 0;
|
|
4287
4287
|
this.isFinished = false;
|
|
4288
4288
|
this.currentPage = 1;
|
|
4289
|
+
this.curSelRowIds = [];
|
|
4289
4290
|
try {
|
|
4290
4291
|
if (this.dataApi) {
|
|
4291
4292
|
let params = Object.assign(
|
|
@@ -33567,6 +33568,7 @@ const routerOptions = {
|
|
|
33567
33568
|
var user = {
|
|
33568
33569
|
state: {
|
|
33569
33570
|
userName: "",
|
|
33571
|
+
userInfo: {},
|
|
33570
33572
|
avatarImgPath: "",
|
|
33571
33573
|
userManageUnitId: "",
|
|
33572
33574
|
token: getToken(),
|
|
@@ -33579,6 +33581,9 @@ var user = {
|
|
|
33579
33581
|
setUserName(state, name2) {
|
|
33580
33582
|
state.userName = name2;
|
|
33581
33583
|
},
|
|
33584
|
+
setUserInfo(state, userInfo) {
|
|
33585
|
+
state.userInfo = userInfo;
|
|
33586
|
+
},
|
|
33582
33587
|
setUserManageUnitId(state, userManageUnitId) {
|
|
33583
33588
|
state.userManageUnitId = userManageUnitId;
|
|
33584
33589
|
},
|
|
@@ -33618,12 +33623,14 @@ var user = {
|
|
|
33618
33623
|
if (userInfo) {
|
|
33619
33624
|
commit2("setAvatar", userInfo.userAvater);
|
|
33620
33625
|
commit2("setUserName", userInfo.userName);
|
|
33626
|
+
commit2("setUserInfo", userInfo);
|
|
33621
33627
|
commit2("setUserManageUnitId", userInfo.manageUnitId);
|
|
33622
33628
|
return userInfo;
|
|
33623
33629
|
}
|
|
33624
33630
|
const { data: data49 } = await getUserInfoApi();
|
|
33625
33631
|
commit2("setAvatar", data49.userAvater);
|
|
33626
33632
|
commit2("setUserName", data49.userName);
|
|
33633
|
+
commit2("setUserInfo", userInfo);
|
|
33627
33634
|
commit2("setUserManageUnitId", data49.manageUnitId);
|
|
33628
33635
|
setUserInfoCache(data49);
|
|
33629
33636
|
return data49;
|