antd-management-fast-framework 1.1.26 → 1.1.27

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.
@@ -57,6 +57,7 @@ var DataPreviewDrawer = /*#__PURE__*/function (_Base) {
57
57
 
58
58
  _this = _super.call(this, props);
59
59
  _this.loadDataAfterMount = false;
60
+ _this.needSetFormValueAfterLoad = false;
60
61
 
61
62
  _this.renderTitleIcon = function () {
62
63
  var icon = _this.props.icon;
@@ -5,6 +5,7 @@ declare class MultiPageDrawer extends MultiPage {
5
5
  externalData: any;
6
6
  };
7
7
  loadDataAfterMount: boolean;
8
+ needSetFormValueAfterLoad: boolean;
8
9
  reloadWhenShow: boolean;
9
10
  doWorkWhenDidUpdate: (preProps: any, preState: any, snapshot: any) => void;
10
11
  doOtherWhenChangeVisible: (preProps: any, preState: any, snapshot: any) => void;
@@ -113,6 +113,7 @@ var MultiPageDrawer = /*#__PURE__*/function (_MultiPage) {
113
113
 
114
114
  _this = _super.call(this, props);
115
115
  _this.loadDataAfterMount = false;
116
+ _this.needSetFormValueAfterLoad = false;
116
117
  _this.reloadWhenShow = true;
117
118
 
118
119
  _this.doWorkWhenDidUpdate = function (preProps, preState, snapshot) {
@@ -5,6 +5,7 @@ declare class SinglePageDrawer extends SinglePage {
5
5
  externalData: any;
6
6
  };
7
7
  loadDataAfterMount: boolean;
8
+ needSetFormValueAfterLoad: boolean;
8
9
  reloadWhenShow: boolean;
9
10
  doWorkWhenDidUpdate: (preProps: any, preState: any, snapshot: any) => void;
10
11
  doOtherWhenChangeVisible: (preProps: any, preState: any, snapshot: any) => void;
@@ -103,6 +103,7 @@ var SinglePageDrawer = /*#__PURE__*/function (_SinglePage) {
103
103
 
104
104
  _this = _super.call(this, props);
105
105
  _this.loadDataAfterMount = false;
106
+ _this.needSetFormValueAfterLoad = false;
106
107
  _this.reloadWhenShow = true;
107
108
 
108
109
  _this.doWorkWhenDidUpdate = function (preProps, preState, snapshot) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antd-management-fast-framework",
3
- "version": "1.1.26",
3
+ "version": "1.1.27",
4
4
  "description": "antd-management-fast-framework",
5
5
  "keywords": [
6
6
  "antd-management-fast-framework"
@@ -11,6 +11,8 @@ import styles from './index.less';
11
11
  class DataPreviewDrawer extends Base {
12
12
  loadDataAfterMount = false;
13
13
 
14
+ needSetFormValueAfterLoad = false;
15
+
14
16
  constructor(props) {
15
17
  super(props);
16
18
 
@@ -33,6 +33,8 @@ import styles from './index.less';
33
33
  class MultiPageDrawer extends MultiPage {
34
34
  loadDataAfterMount = false;
35
35
 
36
+ needSetFormValueAfterLoad = false;
37
+
36
38
  reloadWhenShow = true;
37
39
 
38
40
  constructor(props) {
@@ -30,6 +30,8 @@ import styles from './index.less';
30
30
  class SinglePageDrawer extends SinglePage {
31
31
  loadDataAfterMount = false;
32
32
 
33
+ needSetFormValueAfterLoad = false;
34
+
33
35
  reloadWhenShow = true;
34
36
 
35
37
  constructor(props) {