fmui-base 2.1.67 → 2.1.68
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 +1 -0
- package/lib/form_info/formInfo.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1402,7 +1402,7 @@ var PageHome = function (_React$Component) {
|
|
|
1402
1402
|
editType: this.state.editType,
|
|
1403
1403
|
module: this.state.module,
|
|
1404
1404
|
lock: this.state.lock,
|
|
1405
|
-
reminderContent:
|
|
1405
|
+
reminderContent: this.state.reminderContent,
|
|
1406
1406
|
processInstanceId: this.state.processInstanceId
|
|
1407
1407
|
};
|
|
1408
1408
|
var dealActionName = "";
|
|
@@ -1425,7 +1425,7 @@ var PageHome = function (_React$Component) {
|
|
|
1425
1425
|
//if(nextActivityList.length==0){ //没有选择提交下一个节点过
|
|
1426
1426
|
_db2.default.FlowModuleAPI.getNextActivity(param).then(function (content) {
|
|
1427
1427
|
if (content.title && content.title != "") {
|
|
1428
|
-
var reminderContent = content.title
|
|
1428
|
+
var reminderContent = content.title;
|
|
1429
1429
|
t.setState({
|
|
1430
1430
|
reminderContent: reminderContent
|
|
1431
1431
|
});
|