fmui-base 2.1.69 → 2.1.70
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/process_info/processInfo.js +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2294,7 +2294,7 @@ var PageHome = function (_React$Component) {
|
|
|
2294
2294
|
editType: editType,
|
|
2295
2295
|
module: this.state.module,
|
|
2296
2296
|
lock: this.state.lock,
|
|
2297
|
-
reminderContent:
|
|
2297
|
+
reminderContent: this.state.reminderContent,
|
|
2298
2298
|
processInstanceId: this.state.processInstanceId
|
|
2299
2299
|
};
|
|
2300
2300
|
var dealActionName = "";
|
|
@@ -2320,7 +2320,8 @@ var PageHome = function (_React$Component) {
|
|
|
2320
2320
|
if (content.title && content.title != "") {
|
|
2321
2321
|
var reminderContent = content.title;
|
|
2322
2322
|
t.setState({
|
|
2323
|
-
reminderContent: reminderContent
|
|
2323
|
+
reminderContent: reminderContent,
|
|
2324
|
+
dealReminderContent: reminderContent
|
|
2324
2325
|
});
|
|
2325
2326
|
param.reminderContent = reminderContent;
|
|
2326
2327
|
}
|