fmui-base 2.2.33 → 2.2.35
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/README.md +2 -0
- package/lib/form/form.js +21 -1
- package/lib/process_info/processInfo.js +22 -12
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/form/form.js
CHANGED
|
@@ -928,6 +928,16 @@ var PageHome = function (_React$Component) {
|
|
|
928
928
|
}
|
|
929
929
|
var dateFormat = form.dateFormat;
|
|
930
930
|
var dateFormatShow = "";
|
|
931
|
+
|
|
932
|
+
// 获取年月日
|
|
933
|
+
var now = new Date();
|
|
934
|
+
var year = now.getFullYear();
|
|
935
|
+
var month = ('0' + (now.getMonth() + 1)).slice(-2); // 月份从0开始,需要+1
|
|
936
|
+
var day = ('0' + now.getDate()).slice(-2);
|
|
937
|
+
|
|
938
|
+
// 格式化为 YYYY-MM-DD
|
|
939
|
+
var formattedDate = year + '-' + month + '-' + day;
|
|
940
|
+
|
|
931
941
|
if (form.dataAttr && typeof form.dataAttr != "undefined") {
|
|
932
942
|
var dateDisplayFormat = form.dataAttr.dateDisplayFormat;
|
|
933
943
|
if (dateDisplayFormat == "STime" || dateFormat == "YMDHM") {
|
|
@@ -941,7 +951,11 @@ var PageHome = function (_React$Component) {
|
|
|
941
951
|
} else if (dateDisplayFormat == "ODate") {
|
|
942
952
|
dateFormat = "YMD";
|
|
943
953
|
} else if (dateDisplayFormat == "HourMin") {
|
|
944
|
-
dateFormat = "
|
|
954
|
+
dateFormat = "YMDHM";
|
|
955
|
+
if (value && value.length == 5) {
|
|
956
|
+
value = formattedDate + " " + value + ":00";
|
|
957
|
+
}
|
|
958
|
+
dateFormatShow = "HourMin";
|
|
945
959
|
} else if (dateDisplayFormat == "zhDate") {
|
|
946
960
|
dateFormat = "YMD";
|
|
947
961
|
dateFormatShow = "zhDate";
|
|
@@ -2416,6 +2430,7 @@ var PageHome = function (_React$Component) {
|
|
|
2416
2430
|
}, {
|
|
2417
2431
|
key: 'handleChangeDate',
|
|
2418
2432
|
value: function handleChangeDate(code, value) {
|
|
2433
|
+
console.log("handleChangeDate===" + JSON.stringify(value));
|
|
2419
2434
|
var data = this.props.data;
|
|
2420
2435
|
var itemParam = this.state.itemParam;
|
|
2421
2436
|
var dateFormat = itemParam.dateFormat;
|
|
@@ -2520,6 +2535,11 @@ var PageHome = function (_React$Component) {
|
|
|
2520
2535
|
} else {
|
|
2521
2536
|
return year + '年' + month + '月' + dates + '日 下午';
|
|
2522
2537
|
}
|
|
2538
|
+
} else if (dateFormatShow == 'HourMin') {
|
|
2539
|
+
//时分
|
|
2540
|
+
var hour = this.dealwithDate(date.getHours());
|
|
2541
|
+
var min = this.dealwithDate(date.getMinutes());
|
|
2542
|
+
return hour + ':' + min;
|
|
2523
2543
|
}
|
|
2524
2544
|
}
|
|
2525
2545
|
if (formatStr == 'YMD') {
|
|
@@ -127,6 +127,16 @@ var ButtonGroup = _Button2.default.ButtonGroup,
|
|
|
127
127
|
TextButton = _Button2.default.TextButton;
|
|
128
128
|
//import UserInfo from '../approval-details/UserInfo';
|
|
129
129
|
|
|
130
|
+
var isCaReload = false;
|
|
131
|
+
window.addEventListener('pageshow', function () {
|
|
132
|
+
console.log("isCaReload===" + isCaReload);
|
|
133
|
+
isCaReload = this.localStorage.getItem("isCaReload");
|
|
134
|
+
this.localStorage.setItem("isCaReload", false);
|
|
135
|
+
if (isCaReload == '1') {
|
|
136
|
+
window.location.reload();
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
|
|
130
140
|
var extFile = "";
|
|
131
141
|
var ActionSheetButton = void 0;
|
|
132
142
|
var iconIndex = 0;
|
|
@@ -2627,7 +2637,7 @@ var PageHome = function (_React$Component) {
|
|
|
2627
2637
|
if (participantList[i].type != "user") {
|
|
2628
2638
|
var children = participantList[i];
|
|
2629
2639
|
for (var j = 0; j < children.length; j++) {
|
|
2630
|
-
if (commonUsedId.indexOf(children[j].id) == -1) {
|
|
2640
|
+
if (commonUsedId.split(",").indexOf(children[j].id) == -1) {
|
|
2631
2641
|
commonUsedId += children[j].id + ',';
|
|
2632
2642
|
commonUsedData.push(personValueItem);
|
|
2633
2643
|
if (item.partType == '1') {
|
|
@@ -2637,7 +2647,7 @@ var PageHome = function (_React$Component) {
|
|
|
2637
2647
|
}
|
|
2638
2648
|
} else {
|
|
2639
2649
|
var personValueItem = { scopeType: participantList[i].type, scopeValue: participantList[i].id, scopeName: participantList[i].name, imageId: "", orgNamePath: participantList[i].orgPath };
|
|
2640
|
-
if ((","
|
|
2650
|
+
if (commonUsedId.split(",").indexOf(participantList[i].id) == -1) {
|
|
2641
2651
|
commonUsedId += participantList[i].id + ',';
|
|
2642
2652
|
commonUsedData.push(personValueItem);
|
|
2643
2653
|
if (item.partType == '1') {
|
|
@@ -2690,7 +2700,7 @@ var PageHome = function (_React$Component) {
|
|
|
2690
2700
|
}*/
|
|
2691
2701
|
} else if (participantList[i].secretLevel == 0 || participantList[i].secretLevel || !participantList[i].orgId) {
|
|
2692
2702
|
var personValueItem = { scopeType: "user", scopeValue: participantList[i].id, scopeName: participantList[i].name, imageId: "", orgNamePath: participantList[i].orgPath };
|
|
2693
|
-
if ((","
|
|
2703
|
+
if (commonUsedId.split(",").indexOf(participantList[i].id) == -1) {
|
|
2694
2704
|
commonUsedId += participantList[i].id + ',';
|
|
2695
2705
|
commonUsedData.push(personValueItem);
|
|
2696
2706
|
if (item.partType == '1') {
|
|
@@ -3388,7 +3398,7 @@ var PageHome = function (_React$Component) {
|
|
|
3388
3398
|
var children = participantList[i];
|
|
3389
3399
|
for (var j = 0; j < children.length; j++) {
|
|
3390
3400
|
var personValueItem = { scopeType: "user", scopeValue: children[j].id, scopeName: children[j].userName, imageId: "", orgNamePath: children[j].orgPath };
|
|
3391
|
-
if (commonUsedId.indexOf(children[j].id) == -1) {
|
|
3401
|
+
if (commonUsedId.split(',').indexOf(children[j].id) == -1) {
|
|
3392
3402
|
commonUsedId += children[j].id + ',';
|
|
3393
3403
|
commonUsedData.push(personValueItem);
|
|
3394
3404
|
if (item.partType == '1') {
|
|
@@ -3398,7 +3408,7 @@ var PageHome = function (_React$Component) {
|
|
|
3398
3408
|
}
|
|
3399
3409
|
} else {
|
|
3400
3410
|
var personValueItem = { scopeType: "user", scopeValue: participantList[i].id, scopeName: participantList[i].name, imageId: "", orgNamePath: participantList[i].orgPath };
|
|
3401
|
-
if (commonUsedId.indexOf(participantList[i].id) == -1) {
|
|
3411
|
+
if (commonUsedId.split(',').indexOf(participantList[i].id) == -1) {
|
|
3402
3412
|
commonUsedId += participantList[i].id + ',';
|
|
3403
3413
|
commonUsedData.push(personValueItem);
|
|
3404
3414
|
if (item.partType == '1') {
|
|
@@ -3432,7 +3442,7 @@ var PageHome = function (_React$Component) {
|
|
|
3432
3442
|
var children = participantList[i];
|
|
3433
3443
|
for (var j = 0; j < children.length; j++) {
|
|
3434
3444
|
var personValueItem = { scopeType: "user", scopeValue: children[j].id, scopeName: children[j].userName, imageId: "", orgNamePath: children[j].orgPath };
|
|
3435
|
-
if (commonUsedId.indexOf(children[j].id) == -1) {
|
|
3445
|
+
if (commonUsedId.split(',').indexOf(children[j].id) == -1) {
|
|
3436
3446
|
commonUsedId += children[j].id + ',';
|
|
3437
3447
|
commonUsedData.push(personValueItem);
|
|
3438
3448
|
if (item.partType == '1') {
|
|
@@ -3442,7 +3452,7 @@ var PageHome = function (_React$Component) {
|
|
|
3442
3452
|
}
|
|
3443
3453
|
} else {
|
|
3444
3454
|
var personValueItem = { scopeType: "user", scopeValue: participantList[i].id, scopeName: participantList[i].name, imageId: "", orgNamePath: participantList[i].orgPath };
|
|
3445
|
-
if (commonUsedId.indexOf(participantList[i].id) == -1) {
|
|
3455
|
+
if (commonUsedId.split(',').indexOf(participantList[i].id) == -1) {
|
|
3446
3456
|
commonUsedId += participantList[i].id + ',';
|
|
3447
3457
|
commonUsedData.push(personValueItem);
|
|
3448
3458
|
if (item.partType == '1') {
|
|
@@ -3829,7 +3839,7 @@ var PageHome = function (_React$Component) {
|
|
|
3829
3839
|
var selectUserIds = '';
|
|
3830
3840
|
var selectOrgIds = '';
|
|
3831
3841
|
personValue.map(function (item, index) {
|
|
3832
|
-
if (selectUserIds.indexOf(item.scopeValue) == -1) {
|
|
3842
|
+
if (selectUserIds.split(',').indexOf(item.scopeValue) == -1) {
|
|
3833
3843
|
if (item.scopeType == 'user') {
|
|
3834
3844
|
//用户
|
|
3835
3845
|
selectUserIds += item.scopeValue + ",";
|
|
@@ -3848,7 +3858,7 @@ var PageHome = function (_React$Component) {
|
|
|
3848
3858
|
orgUsernames = '';
|
|
3849
3859
|
|
|
3850
3860
|
for (j = 0; j < orgUserList.length; j++) {
|
|
3851
|
-
if (auditorUserIds.indexOf(orgUserList[j].id) < 0) {
|
|
3861
|
+
if (auditorUserIds.split(',').indexOf(orgUserList[j].id) < 0) {
|
|
3852
3862
|
orgUserids += orgUserList[j].id + ",";
|
|
3853
3863
|
orgUsernames += orgUserList[j].userName + ",";
|
|
3854
3864
|
}
|
|
@@ -5828,7 +5838,7 @@ var PageHome = function (_React$Component) {
|
|
|
5828
5838
|
var orgUserids = '';
|
|
5829
5839
|
var orgUsernames = '';
|
|
5830
5840
|
for (var j = 0; j < orgUserList.length; j++) {
|
|
5831
|
-
if (targetUserIds.indexOf(orgUserList[j].id) < 0) {
|
|
5841
|
+
if (targetUserIds.split(',').indexOf(orgUserList[j].id) < 0) {
|
|
5832
5842
|
orgUserids += orgUserList[j].id + ",";
|
|
5833
5843
|
orgUsernames += orgUserList[j].userName + ",";
|
|
5834
5844
|
}
|
|
@@ -5951,7 +5961,7 @@ var PageHome = function (_React$Component) {
|
|
|
5951
5961
|
var orgUserids = '';
|
|
5952
5962
|
var orgUsernames = '';
|
|
5953
5963
|
for (var j = 0; j < orgUserList.length; j++) {
|
|
5954
|
-
if (chaosongId.indexOf(orgUserList[j].id) < 0) {
|
|
5964
|
+
if (chaosongId.split(',').indexOf(orgUserList[j].id) < 0) {
|
|
5955
5965
|
orgUserids += orgUserList[j].id + ",";
|
|
5956
5966
|
}
|
|
5957
5967
|
}
|
|
@@ -5975,7 +5985,7 @@ var PageHome = function (_React$Component) {
|
|
|
5975
5985
|
var orgUserids = '';
|
|
5976
5986
|
var orgUsernames = '';
|
|
5977
5987
|
for (var j = 0; j < orgUserList.length; j++) {
|
|
5978
|
-
if (targetUserIds.indexOf(orgUserList[j].id) < 0) {
|
|
5988
|
+
if (targetUserIds.split(',').indexOf(orgUserList[j].id) < 0) {
|
|
5979
5989
|
orgUserids += orgUserList[j].id + ",";
|
|
5980
5990
|
orgUsernames += orgUserList[j].userName + ",";
|
|
5981
5991
|
}
|