fmui-base 2.2.33 → 2.2.34
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 +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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 isReload = false;
|
|
131
|
+
window.addEventListener('pageshow', function () {
|
|
132
|
+
console.log("isReload===" + isReload);
|
|
133
|
+
isReload = this.localStorage.getItem("isReload");
|
|
134
|
+
this.localStorage.setItem("isReload", false);
|
|
135
|
+
if (isReload) {
|
|
136
|
+
window.location.reload();
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
|
|
130
140
|
var extFile = "";
|
|
131
141
|
var ActionSheetButton = void 0;
|
|
132
142
|
var iconIndex = 0;
|