@ibiz-template/web-theme 3.1.0 → 3.3.0

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.
Files changed (30) hide show
  1. package/dist/index.system.min.js +1 -1
  2. package/dist/index.system.min.js.map +1 -1
  3. package/es/publish/app-index-view-layout-no-nav.d.ts +83 -2
  4. package/es/publish/app-index-view-layout-no-nav.mjs +68 -11
  5. package/es/publish/app-index-view-layout-top-nonav.d.ts +42 -9
  6. package/es/publish/app-index-view-layout-top-nonav.mjs +44 -7
  7. package/es/publish/app-index-view-layout-top.d.ts +43 -10
  8. package/es/publish/app-index-view-layout-top.mjs +44 -7
  9. package/es/publish/app-index-view-layout.d.ts +63 -8
  10. package/es/publish/app-index-view-layout.mjs +65 -8
  11. package/es/publish/control-layout/control-layout-model-repository-data-view-layout.d.ts +152 -0
  12. package/es/publish/control-layout/control-layout-model-repository-data-view-layout.mjs +156 -0
  13. package/es/publish/index.mjs +2 -0
  14. package/es/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.d.ts +113 -0
  15. package/es/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.mjs +143 -0
  16. package/lib/publish/app-index-view-layout-no-nav.cjs +68 -11
  17. package/lib/publish/app-index-view-layout-top-nonav.cjs +44 -7
  18. package/lib/publish/app-index-view-layout-top.cjs +44 -7
  19. package/lib/publish/app-index-view-layout.cjs +65 -8
  20. package/lib/publish/control-layout/control-layout-model-repository-data-view-layout.cjs +160 -0
  21. package/lib/publish/index.cjs +2 -0
  22. package/lib/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.cjs +147 -0
  23. package/package.json +1 -1
  24. package/src/publish/app-index-view-layout-no-nav.ts +68 -11
  25. package/src/publish/app-index-view-layout-top-nonav.ts +44 -7
  26. package/src/publish/app-index-view-layout-top.ts +44 -7
  27. package/src/publish/app-index-view-layout.ts +65 -8
  28. package/src/publish/control-layout/control-layout-model-repository-data-view-layout.ts +153 -0
  29. package/src/publish/index.ts +3 -0
  30. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.ts +140 -0
@@ -110,16 +110,74 @@ var AppIndexViewLayout = {
110
110
  "id": "app_apptitle"
111
111
  },
112
112
  {
113
- "rawItem": {
114
- "predefinedType": "AUTH_USERINFO",
115
- "rawItemHeight": 72,
116
- "id": "auth_userinfo"
113
+ "actionGroupExtractMode": "ITEM",
114
+ "panelItems": [
115
+ {
116
+ "rawItem": {
117
+ "contentType": "USER",
118
+ "predefinedType": "APP_SWITCH",
119
+ "rawItemHeight": 36,
120
+ "rawItemWidth": 20,
121
+ "id": "app_switch"
122
+ },
123
+ "caption": "\u5E94\u7528\u5207\u6362\u5668",
124
+ "contentHeight": 36,
125
+ "contentWidth": 20,
126
+ "height": 36,
127
+ "itemStyle": "DEFAULT",
128
+ "itemType": "RAWITEM",
129
+ "layoutPos": {
130
+ "shrink": 0,
131
+ "halignSelf": "CENTER",
132
+ "height": 36,
133
+ "heightMode": "PX",
134
+ "layout": "FLEX",
135
+ "spacingLeft": "INNERLARGE",
136
+ "width": 20,
137
+ "widthMode": "PERCENTAGE"
138
+ },
139
+ "width": 20,
140
+ "showCaption": true,
141
+ "id": "app_switch"
142
+ },
143
+ {
144
+ "rawItem": {
145
+ "predefinedType": "AUTH_USERINFO",
146
+ "rawItemHeight": 72,
147
+ "rawItemWidth": 80,
148
+ "id": "auth_userinfo"
149
+ },
150
+ "caption": "\u7528\u6237\u4FE1\u606F",
151
+ "contentHeight": 72,
152
+ "contentWidth": 80,
153
+ "height": 72,
154
+ "itemStyle": "DEFAULT",
155
+ "itemType": "RAWITEM",
156
+ "layoutPos": {
157
+ "shrink": 0,
158
+ "height": 72,
159
+ "heightMode": "PX",
160
+ "layout": "FLEX",
161
+ "width": 80,
162
+ "widthMode": "PERCENTAGE"
163
+ },
164
+ "width": 80,
165
+ "showCaption": true,
166
+ "id": "auth_userinfo"
167
+ }
168
+ ],
169
+ "layout": {
170
+ "align": "space-between",
171
+ "dir": "row",
172
+ "layout": "FLEX",
173
+ "valign": "center"
117
174
  },
118
- "caption": "\u7528\u6237\u4FE1\u606F",
175
+ "dataRegionType": "INHERIT",
176
+ "caption": "\u5BB9\u5668",
119
177
  "contentHeight": 72,
120
178
  "height": 72,
121
179
  "itemStyle": "DEFAULT",
122
- "itemType": "RAWITEM",
180
+ "itemType": "CONTAINER",
123
181
  "layoutPos": {
124
182
  "shrink": 0,
125
183
  "height": 72,
@@ -127,8 +185,7 @@ var AppIndexViewLayout = {
127
185
  "layout": "FLEX",
128
186
  "widthMode": "FULL"
129
187
  },
130
- "showCaption": true,
131
- "id": "auth_userinfo"
188
+ "id": "container6"
132
189
  },
133
190
  {
134
191
  "actionGroupExtractMode": "ITEM",
@@ -0,0 +1,152 @@
1
+ declare const _default: {
2
+ viewProxyMode: boolean;
3
+ layoutMode: string;
4
+ layout: {
5
+ layout: string;
6
+ };
7
+ rootPanelItems: ({
8
+ actionGroupExtractMode: string;
9
+ panelItems: ({
10
+ rawItem: {
11
+ caption: string;
12
+ halign: string;
13
+ valign: string;
14
+ wrapMode: string;
15
+ contentType: string;
16
+ predefinedType: string;
17
+ id: string;
18
+ };
19
+ caption: string;
20
+ itemStyle: string;
21
+ itemType: string;
22
+ layoutPos: {
23
+ grow: number;
24
+ shrink: number;
25
+ layout: string;
26
+ };
27
+ showCaption: boolean;
28
+ id: string;
29
+ } | {
30
+ caption: string;
31
+ itemStyle: string;
32
+ itemType: string;
33
+ layoutPos: {
34
+ shrink: number;
35
+ layout: string;
36
+ grow?: undefined;
37
+ };
38
+ showCaption: boolean;
39
+ id: string;
40
+ rawItem?: undefined;
41
+ })[];
42
+ layout: {
43
+ align: string;
44
+ dir: string;
45
+ layout: string;
46
+ };
47
+ dataRegionType: string;
48
+ caption: string;
49
+ itemStyle: string;
50
+ itemType: string;
51
+ layoutPos: {
52
+ shrink: number;
53
+ layout: string;
54
+ grow?: undefined;
55
+ };
56
+ id: string;
57
+ } | {
58
+ actionGroupExtractMode: string;
59
+ panelItems: ({
60
+ caption: string;
61
+ itemStyle: string;
62
+ itemType: string;
63
+ layoutPos: {
64
+ grow: number;
65
+ shrink: number;
66
+ layout: string;
67
+ };
68
+ showCaption: boolean;
69
+ id: string;
70
+ actionGroupExtractMode?: undefined;
71
+ panelItems?: undefined;
72
+ layout?: undefined;
73
+ dataRegionType?: undefined;
74
+ } | {
75
+ actionGroupExtractMode: string;
76
+ panelItems: {
77
+ rawItem: {
78
+ caption: string;
79
+ halign: string;
80
+ renderMode: string;
81
+ valign: string;
82
+ wrapMode: string;
83
+ contentType: string;
84
+ predefinedType: string;
85
+ id: string;
86
+ };
87
+ caption: string;
88
+ itemStyle: string;
89
+ itemType: string;
90
+ layoutPos: {
91
+ shrink: number;
92
+ layout: string;
93
+ };
94
+ showCaption: boolean;
95
+ id: string;
96
+ }[];
97
+ layout: {
98
+ dir: string;
99
+ layout: string;
100
+ };
101
+ dataRegionType: string;
102
+ caption: string;
103
+ itemStyle: string;
104
+ itemType: string;
105
+ layoutPos: {
106
+ shrink: number;
107
+ layout: string;
108
+ grow?: undefined;
109
+ };
110
+ id: string;
111
+ showCaption?: undefined;
112
+ })[];
113
+ layout: {
114
+ layout: string;
115
+ align?: undefined;
116
+ dir?: undefined;
117
+ };
118
+ dataRegionType: string;
119
+ caption: string;
120
+ itemStyle: string;
121
+ itemType: string;
122
+ layoutPos: {
123
+ grow: number;
124
+ shrink: number;
125
+ layout: string;
126
+ };
127
+ id: string;
128
+ })[];
129
+ layoutPanel: boolean;
130
+ controls: {
131
+ capLanguageRes: {
132
+ lanResTag: string;
133
+ };
134
+ caption: string;
135
+ codeName: string;
136
+ controlType: string;
137
+ appDataEntityId: string;
138
+ controlParam: {};
139
+ name: string;
140
+ id: string;
141
+ }[];
142
+ codeName: string;
143
+ controlType: string;
144
+ logicName: string;
145
+ appDataEntityId: string;
146
+ controlParam: {};
147
+ modelId: string;
148
+ modelType: string;
149
+ name: string;
150
+ id: string;
151
+ };
152
+ export default _default;
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+ var controlLayoutModelRepositoryDataViewLayout = {
3
+ "viewProxyMode": true,
4
+ "layoutMode": "FLEX",
5
+ "layout": {
6
+ "layout": "FLEX"
7
+ },
8
+ "rootPanelItems": [
9
+ {
10
+ "actionGroupExtractMode": "ITEM",
11
+ "panelItems": [
12
+ {
13
+ "rawItem": {
14
+ "caption": "\u6392\u5E8F\u680F\uFF08SORTBAR\uFF09",
15
+ "halign": "LEFT",
16
+ "valign": "MIDDLE",
17
+ "wrapMode": "NOWRAP",
18
+ "contentType": "RAW",
19
+ "predefinedType": "SORTBAR",
20
+ "id": "sortbar"
21
+ },
22
+ "caption": "\u6392\u5E8F\u680F",
23
+ "itemStyle": "DEFAULT",
24
+ "itemType": "RAWITEM",
25
+ "layoutPos": {
26
+ "grow": 1,
27
+ "shrink": 1,
28
+ "layout": "FLEX"
29
+ },
30
+ "showCaption": true,
31
+ "id": "sortbar"
32
+ },
33
+ {
34
+ "caption": "\u641C\u7D22\u680F",
35
+ "itemStyle": "DEFAULT",
36
+ "itemType": "CTRLPOS",
37
+ "layoutPos": {
38
+ "shrink": 0,
39
+ "layout": "FLEX"
40
+ },
41
+ "showCaption": true,
42
+ "id": "searchbar"
43
+ }
44
+ ],
45
+ "layout": {
46
+ "align": "space-between",
47
+ "dir": "row",
48
+ "layout": "FLEX"
49
+ },
50
+ "dataRegionType": "INHERIT",
51
+ "caption": "\u5BB9\u5668",
52
+ "itemStyle": "DEFAULT",
53
+ "itemType": "CONTAINER",
54
+ "layoutPos": {
55
+ "shrink": 0,
56
+ "layout": "FLEX"
57
+ },
58
+ "id": "control_header"
59
+ },
60
+ {
61
+ "actionGroupExtractMode": "ITEM",
62
+ "panelItems": [
63
+ {
64
+ "caption": "\u6570\u636E\u89C6\u56FE",
65
+ "itemStyle": "DEFAULT",
66
+ "itemType": "CTRLPOS",
67
+ "layoutPos": {
68
+ "grow": 1,
69
+ "shrink": 1,
70
+ "layout": "FLEX"
71
+ },
72
+ "showCaption": true,
73
+ "id": "dataview"
74
+ },
75
+ {
76
+ "actionGroupExtractMode": "ITEM",
77
+ "panelItems": [
78
+ {
79
+ "rawItem": {
80
+ "caption": "\u5206\u9875\u680F\uFF08PAGINGBAR\uFF09",
81
+ "halign": "LEFT",
82
+ "renderMode": "PARAGRAPH",
83
+ "valign": "MIDDLE",
84
+ "wrapMode": "NOWRAP",
85
+ "contentType": "RAW",
86
+ "predefinedType": "PAGINGBAR",
87
+ "id": "pagingbar"
88
+ },
89
+ "caption": "\u5206\u9875\u680F",
90
+ "itemStyle": "DEFAULT",
91
+ "itemType": "RAWITEM",
92
+ "layoutPos": {
93
+ "shrink": 0,
94
+ "layout": "FLEX"
95
+ },
96
+ "showCaption": true,
97
+ "id": "pagingbar"
98
+ }
99
+ ],
100
+ "layout": {
101
+ "dir": "row-reverse",
102
+ "layout": "FLEX"
103
+ },
104
+ "dataRegionType": "INHERIT",
105
+ "caption": "\u5BB9\u5668",
106
+ "itemStyle": "DEFAULT",
107
+ "itemType": "CONTAINER",
108
+ "layoutPos": {
109
+ "shrink": 1,
110
+ "layout": "FLEX"
111
+ },
112
+ "id": "container"
113
+ }
114
+ ],
115
+ "layout": {
116
+ "layout": "FLEX"
117
+ },
118
+ "dataRegionType": "INHERIT",
119
+ "caption": "\u5BB9\u5668",
120
+ "itemStyle": "DEFAULT",
121
+ "itemType": "CONTAINER",
122
+ "layoutPos": {
123
+ "grow": 1,
124
+ "shrink": 1,
125
+ "layout": "FLEX"
126
+ },
127
+ "id": "control_content"
128
+ }
129
+ ],
130
+ "layoutPanel": true,
131
+ "controls": [
132
+ {
133
+ "capLanguageRes": {
134
+ "lanResTag": "DE.LNAME.CONTROLLAYOUTMODELREPOSITORY"
135
+ },
136
+ "caption": "\u6570\u636E\u89C6\u56FE\u90E8\u4EF6\u5E03\u5C40",
137
+ "codeName": "DataViewLayoutcaptionbar",
138
+ "controlType": "CAPTIONBAR",
139
+ "appDataEntityId": "frontmodel.controllayoutmodelrepository",
140
+ "controlParam": {},
141
+ "name": "captionbar",
142
+ "id": "dataviewlayoutcaptionbar"
143
+ }
144
+ ],
145
+ "codeName": "CardLayout",
146
+ "controlType": "VIEWLAYOUTPANEL",
147
+ "logicName": "\u90E8\u4EF6-\u6570\u636E\u89C6\u56FE\u90E8\u4EF6\u5E03\u5C40\u9762\u677F",
148
+ "appDataEntityId": "frontmodel.controllayoutmodelrepository",
149
+ "controlParam": {},
150
+ "modelId": "84218AD7-144D-4C11-BC8A-2AFC0324EC7E",
151
+ "modelType": "PSSYSVIEWLAYOUTPANEL",
152
+ "name": "layoutpanel",
153
+ "id": "cardlayout"
154
+ };
155
+
156
+ export { controlLayoutModelRepositoryDataViewLayout as default };
@@ -48,6 +48,7 @@ import DEREPORTVIEW from './view-layout-model-repository/view-layout-model-repos
48
48
  import DEGANTTVIEW from './view-layout-model-repository/view-layout-model-repository-de-gantt-view-layout.mjs';
49
49
  import DEINDEXVIEW from './view-layout-model-repository/view-layout-model-repository-de-index-view-layout.mjs';
50
50
  import DETABSEARCHVIEW from './view-layout-model-repository/view-layout-model-repository-de-tab-search-view-view-layout.mjs';
51
+ import DETABEXPVIEW_FLOW from './view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout-flow.mjs';
51
52
  import GridExpBar from './control-layout/control-layout-model-repository-grid-exp-bar-layout.mjs';
52
53
  import ListExpBar from './control-layout/control-layout-model-repository-list-exp-bar-layout.mjs';
53
54
  import DataViewExpBar from './control-layout/control-layout-model-repository-data-view-exp-bar-layout.mjs';
@@ -118,6 +119,7 @@ function install(callBack) {
118
119
  callBack("DEGANTTVIEW_DEFAULT", DEGANTTVIEW);
119
120
  callBack("DEINDEXVIEW_DEFAULT", DEINDEXVIEW);
120
121
  callBack("DETABSEARCHVIEW_DEFAULT", DETABSEARCHVIEW);
122
+ callBack("DETABEXPVIEW_FLOW", DETABEXPVIEW_FLOW);
121
123
  callBack("GRIDEXPBAR_DEFAULT", GridExpBar);
122
124
  callBack("LISTEXPBAR_DEFAULT", ListExpBar);
123
125
  callBack("DATAVIEWEXPBAR_DEFAULT", DataViewExpBar);
@@ -0,0 +1,113 @@
1
+ declare const _default: {
2
+ layoutMode: string;
3
+ layout: {
4
+ layout: string;
5
+ };
6
+ rootPanelItems: ({
7
+ rawItem: {
8
+ predefinedType: string;
9
+ id: string;
10
+ };
11
+ caption: string;
12
+ itemStyle: string;
13
+ itemType: string;
14
+ layoutPos: {
15
+ shrink: number;
16
+ layout: string;
17
+ };
18
+ showCaption: boolean;
19
+ id: string;
20
+ actionGroupExtractMode?: undefined;
21
+ panelItems?: undefined;
22
+ predefinedType?: undefined;
23
+ layout?: undefined;
24
+ dataRegionType?: undefined;
25
+ } | {
26
+ actionGroupExtractMode: string;
27
+ panelItems: {
28
+ caption: string;
29
+ itemStyle: string;
30
+ itemType: string;
31
+ layoutPos: {
32
+ shrink: number;
33
+ layout: string;
34
+ };
35
+ showCaption: boolean;
36
+ id: string;
37
+ }[];
38
+ predefinedType: string;
39
+ layout: {
40
+ dir: string;
41
+ layout: string;
42
+ valign: string;
43
+ };
44
+ dataRegionType: string;
45
+ caption: string;
46
+ itemStyle: string;
47
+ itemType: string;
48
+ layoutPos: {
49
+ shrink: number;
50
+ layout: string;
51
+ };
52
+ id: string;
53
+ rawItem?: undefined;
54
+ showCaption?: undefined;
55
+ } | {
56
+ actionGroupExtractMode: string;
57
+ panelItems: {
58
+ actionGroupExtractMode: string;
59
+ panelItems: {
60
+ caption: string;
61
+ itemStyle: string;
62
+ itemType: string;
63
+ layoutPos: {
64
+ shrink: number;
65
+ layout: string;
66
+ };
67
+ showCaption: boolean;
68
+ id: string;
69
+ }[];
70
+ layout: {
71
+ layout: string;
72
+ };
73
+ dataRegionType: string;
74
+ caption: string;
75
+ itemStyle: string;
76
+ itemType: string;
77
+ layoutPos: {
78
+ grow: number;
79
+ shrink: number;
80
+ layout: string;
81
+ };
82
+ id: string;
83
+ }[];
84
+ layout: {
85
+ layout: string;
86
+ dir?: undefined;
87
+ valign?: undefined;
88
+ };
89
+ dataRegionType: string;
90
+ caption: string;
91
+ itemStyle: string;
92
+ itemType: string;
93
+ layoutPos: {
94
+ shrink: number;
95
+ layout: string;
96
+ };
97
+ id: string;
98
+ rawItem?: undefined;
99
+ showCaption?: undefined;
100
+ predefinedType?: undefined;
101
+ })[];
102
+ layoutPanel: boolean;
103
+ codeName: string;
104
+ controlType: string;
105
+ logicName: string;
106
+ appDataEntityId: string;
107
+ controlParam: {};
108
+ modelId: string;
109
+ modelType: string;
110
+ name: string;
111
+ id: string;
112
+ };
113
+ export default _default;
@@ -0,0 +1,143 @@
1
+ "use strict";
2
+ var DETABEXPVIEW_FLOW = {
3
+ "layoutMode": "FLEX",
4
+ "layout": {
5
+ "layout": "FLEX"
6
+ },
7
+ "rootPanelItems": [
8
+ {
9
+ "rawItem": {
10
+ "predefinedType": "VIEWMSG_POS",
11
+ "id": "viewmsg_pos_top"
12
+ },
13
+ "caption": "\u89C6\u56FE\u6D88\u606F\u5360\u4F4D",
14
+ "itemStyle": "DEFAULT",
15
+ "itemType": "RAWITEM",
16
+ "layoutPos": {
17
+ "shrink": 0,
18
+ "layout": "FLEX"
19
+ },
20
+ "showCaption": true,
21
+ "id": "viewmsg_pos_top"
22
+ },
23
+ {
24
+ "actionGroupExtractMode": "ITEM",
25
+ "panelItems": [
26
+ {
27
+ "caption": "\u6807\u9898\u680F",
28
+ "itemStyle": "DEFAULT",
29
+ "itemType": "CTRLPOS",
30
+ "layoutPos": {
31
+ "shrink": 1,
32
+ "layout": "FLEX"
33
+ },
34
+ "showCaption": true,
35
+ "id": "captionbar"
36
+ }
37
+ ],
38
+ "predefinedType": "VIEWHEADER",
39
+ "layout": {
40
+ "dir": "row",
41
+ "layout": "FLEX",
42
+ "valign": "center"
43
+ },
44
+ "dataRegionType": "INHERIT",
45
+ "caption": "\u5BB9\u5668",
46
+ "itemStyle": "DEFAULT",
47
+ "itemType": "CONTAINER",
48
+ "layoutPos": {
49
+ "shrink": 0,
50
+ "layout": "FLEX"
51
+ },
52
+ "id": "view_header"
53
+ },
54
+ {
55
+ "rawItem": {
56
+ "predefinedType": "VIEWMSG_POS",
57
+ "id": "viewmsg_pos_body"
58
+ },
59
+ "caption": "\u89C6\u56FE\u6D88\u606F\u5360\u4F4D",
60
+ "itemStyle": "DEFAULT",
61
+ "itemType": "RAWITEM",
62
+ "layoutPos": {
63
+ "shrink": 0,
64
+ "layout": "FLEX"
65
+ },
66
+ "showCaption": true,
67
+ "id": "viewmsg_pos_body"
68
+ },
69
+ {
70
+ "actionGroupExtractMode": "ITEM",
71
+ "panelItems": [
72
+ {
73
+ "actionGroupExtractMode": "ITEM",
74
+ "panelItems": [
75
+ {
76
+ "caption": "\u5206\u9875\u5BFC\u822A",
77
+ "itemStyle": "DEFAULT",
78
+ "itemType": "CTRLPOS",
79
+ "layoutPos": {
80
+ "shrink": 1,
81
+ "layout": "FLEX"
82
+ },
83
+ "showCaption": true,
84
+ "id": "tabexppanel"
85
+ }
86
+ ],
87
+ "layout": {
88
+ "layout": "FLEX"
89
+ },
90
+ "dataRegionType": "INHERIT",
91
+ "caption": "\u5BB9\u5668",
92
+ "itemStyle": "DEFAULT",
93
+ "itemType": "CONTAINER",
94
+ "layoutPos": {
95
+ "grow": 1,
96
+ "shrink": 1,
97
+ "layout": "FLEX"
98
+ },
99
+ "id": "view_tabexppanel"
100
+ }
101
+ ],
102
+ "layout": {
103
+ "layout": "FLEX"
104
+ },
105
+ "dataRegionType": "INHERIT",
106
+ "caption": "\u5BB9\u5668",
107
+ "itemStyle": "DEFAULT",
108
+ "itemType": "CONTAINER",
109
+ "layoutPos": {
110
+ "shrink": 1,
111
+ "layout": "FLEX"
112
+ },
113
+ "id": "view_content"
114
+ },
115
+ {
116
+ "rawItem": {
117
+ "predefinedType": "VIEWMSG_POS",
118
+ "id": "viewmsg_pos_bottom"
119
+ },
120
+ "caption": "\u89C6\u56FE\u6D88\u606F\u5360\u4F4D",
121
+ "itemStyle": "DEFAULT",
122
+ "itemType": "RAWITEM",
123
+ "layoutPos": {
124
+ "shrink": 0,
125
+ "layout": "FLEX"
126
+ },
127
+ "showCaption": true,
128
+ "id": "viewmsg_pos_bottom"
129
+ }
130
+ ],
131
+ "layoutPanel": true,
132
+ "codeName": "TabExpViewLayout_FLOW",
133
+ "controlType": "VIEWLAYOUTPANEL",
134
+ "logicName": "\u5206\u9875\u5BFC\u822A\u89C6\u56FE\u5E03\u5C40\u6A21\u578B_\u6D41\u5F0F\u5E03\u5C40(\u9884\u7F6E\u6A21\u578B)",
135
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
136
+ "controlParam": {},
137
+ "modelId": "F7CBDE6A-BAE7-42B6-A358-95BAB8448BF9",
138
+ "modelType": "PSSYSVIEWLAYOUTPANEL",
139
+ "name": "layoutpanel",
140
+ "id": "tabexpviewlayout_flow"
141
+ };
142
+
143
+ export { DETABEXPVIEW_FLOW as default };