fmui-base 2.2.62 → 2.2.64
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/process_info/processInfo.js +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -926,6 +926,8 @@ var PageHome = function (_React$Component) {
|
|
|
926
926
|
|
|
927
927
|
var markValue = getSysMarkConfigValue('approve');
|
|
928
928
|
var markValueJson = JSON.parse(markValue);
|
|
929
|
+
var forceSelect = getSystemInfo().forceSelect;
|
|
930
|
+
|
|
929
931
|
messageType = content.message;
|
|
930
932
|
t.setState({
|
|
931
933
|
messageType: messageType
|
|
@@ -946,7 +948,10 @@ var PageHome = function (_React$Component) {
|
|
|
946
948
|
readShortMessageList.push({ value: "1", checked: false, content: '短信提醒', disable: false });
|
|
947
949
|
}
|
|
948
950
|
}
|
|
949
|
-
if (
|
|
951
|
+
if (forceSelect && forceSelect == '1') {
|
|
952
|
+
shortMessageList.push({ value: "2", checked: true, content: '移动端提醒', disable: true });
|
|
953
|
+
readShortMessageList.push({ value: "2", checked: true, content: '移动端提醒', disable: true });
|
|
954
|
+
} else if (evoRemind && (evoRemind == '1' || evoRemind == '2')) {
|
|
950
955
|
|
|
951
956
|
if (evoRemind == '2') {
|
|
952
957
|
//中联
|
|
@@ -966,7 +971,7 @@ var PageHome = function (_React$Component) {
|
|
|
966
971
|
readShortMessageList.push({ value: "2", checked: false, content: '移动端提醒', disable: false });
|
|
967
972
|
}
|
|
968
973
|
}
|
|
969
|
-
if (sysSMSsetting && sysSMSsetting == '2' && evoRemind && evoRemind == '2') {
|
|
974
|
+
if (sysSMSsetting && sysSMSsetting == '2' && (evoRemind && evoRemind == '2' || forceSelect && forceSelect == '1')) {
|
|
970
975
|
t.setState({
|
|
971
976
|
sendShortMessage: '1,2',
|
|
972
977
|
circulateShortMessage: '1,2',
|
|
@@ -986,7 +991,7 @@ var PageHome = function (_React$Component) {
|
|
|
986
991
|
handleInvalidShortMessage: '1',
|
|
987
992
|
endShortMessage: '1'
|
|
988
993
|
});
|
|
989
|
-
} else if (evoRemind && evoRemind == '2') {
|
|
994
|
+
} else if (evoRemind && evoRemind == '2' || forceSelect && forceSelect == '1') {
|
|
990
995
|
t.setState({
|
|
991
996
|
sendShortMessage: '2',
|
|
992
997
|
circulateShortMessage: '2',
|
|
@@ -4970,8 +4975,8 @@ var PageHome = function (_React$Component) {
|
|
|
4970
4975
|
|
|
4971
4976
|
//操作回调
|
|
4972
4977
|
var type = 6;
|
|
4973
|
-
if (t.state.isStart && t.state.dataId == '') {
|
|
4974
|
-
//是不是起始节点
|
|
4978
|
+
if (t.state.isStart && (t.state.dataId == '' || t.state.isSub == '2')) {
|
|
4979
|
+
//是不是起始节点 或再次发起
|
|
4975
4980
|
type = 4;
|
|
4976
4981
|
}
|
|
4977
4982
|
if (t.state.isEnd) {
|
|
@@ -4979,7 +4984,7 @@ var PageHome = function (_React$Component) {
|
|
|
4979
4984
|
type = 1;
|
|
4980
4985
|
}
|
|
4981
4986
|
var dataId = t.state.dataId;
|
|
4982
|
-
if (dataId == "") {
|
|
4987
|
+
if (dataId == "" || t.state.isSub == '2') {
|
|
4983
4988
|
dataId = content.dataId;
|
|
4984
4989
|
t.setState({ dataId: dataId });
|
|
4985
4990
|
}
|