@ibiz-template/web-theme 1.0.31 → 1.0.32-dev.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 (85) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/index.min.css +1 -1
  3. package/dist/index.system.min.js +1 -1
  4. package/dist/index.system.min.js.map +1 -1
  5. package/es/index.d.ts +4 -1
  6. package/es/index.mjs +10 -1
  7. package/es/theme/index.css +1 -1
  8. package/es/theme/theme/default/default-theme.css +1 -1
  9. package/es/theme/theme/default-dark/default-dark-theme.css +1 -1
  10. package/es/theme/theme/index.css +1 -1
  11. package/lib/index.cjs +11 -2
  12. package/lib/theme/index.css +1 -1
  13. package/lib/theme/theme/default/default-theme.css +1 -1
  14. package/lib/theme/theme/default-dark/default-dark-theme.css +1 -1
  15. package/lib/theme/theme/index.css +1 -1
  16. package/package.json +6 -3
  17. package/src/index.ts +12 -0
  18. package/src/publish/app-index-view-layout-blank-mode.ts +31 -0
  19. package/src/publish/app-index-view-layout-center.ts +28 -0
  20. package/src/publish/app-index-view-layout-top.ts +426 -0
  21. package/src/publish/app-index-view-layout.ts +476 -0
  22. package/src/publish/app-login-view.ts +252 -0
  23. package/src/publish/control-layout/control-layout-model-repository-chart-exp-bar-layout.ts +178 -0
  24. package/src/publish/control-layout/control-layout-model-repository-data-view-exp-bar-layout.ts +180 -0
  25. package/src/publish/control-layout/control-layout-model-repository-grid-exp-bar-layout.ts +179 -0
  26. package/src/publish/control-layout/control-layout-model-repository-list-exp-bar-layout.ts +179 -0
  27. package/src/publish/control-layout/control-layout-model-repository-search-form-layout.ts +130 -0
  28. package/src/publish/control-layout/control-layout-model-repository-tree-exp-bar-layout.ts +179 -0
  29. package/src/publish/index.ts +193 -0
  30. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-calendar-exp-view-layout.ts +98 -0
  31. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-calendar-view-layout.ts +206 -0
  32. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-chart-exp-view-layout.ts +100 -0
  33. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-chart-view-layout.ts +251 -0
  34. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-data-view-exp-view-layout.ts +98 -0
  35. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-data-view-layout.ts +251 -0
  36. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-2-layout.ts +275 -0
  37. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-3-layout.ts +257 -0
  38. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-4-layout.ts +234 -0
  39. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-edit-view-layout.ts +176 -0
  40. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-grid-exp-view-layout.ts +98 -0
  41. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-grid-view-layout.ts +251 -0
  42. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-index-pickup-data-view-layout.ts +28 -0
  43. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-kanban-view-layout.ts +251 -0
  44. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-list-exp-view-layout.ts +98 -0
  45. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-list-view-layout.ts +251 -0
  46. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-map-view-layout.ts +321 -0
  47. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-option-view-layout.ts +228 -0
  48. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-panel-view-layout.ts +176 -0
  49. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-data-view-layout.ts +73 -0
  50. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-grid-view-layout.ts +73 -0
  51. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-tree-view-layout.ts +72 -0
  52. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-view-2-layout.ts +273 -0
  53. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-pickup-view-layout.ts +228 -0
  54. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-report-view-layout.ts +221 -0
  55. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tab-exp-view-layout.ts +201 -0
  56. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-exp-view-layout.ts +98 -0
  57. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-grid-ex-view-layout.ts +250 -0
  58. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-grid-view-layout.ts +250 -0
  59. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-tree-view-layout.ts +250 -0
  60. package/src/publish/view-layout-model-repository/view-layout-model-repository-de-wizard-view-layout.ts +49 -0
  61. package/src/publish/view-layout-model-repository/view-layout-model-repository-dem-edit-view-9-layout.ts +297 -0
  62. package/src/publish/view-layout-model-repository/view-layout-model-repository-dem-pickup-view-2-layout.ts +414 -0
  63. package/src/publish/view-layout-model-repository/view-layout-model-repository-dem-pickup-view-layout.ts +368 -0
  64. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-action-view-layout.ts +98 -0
  65. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-edit-view-3-layout.ts +257 -0
  66. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-edit-view-layout.ts +175 -0
  67. package/src/publish/view-layout-model-repository/view-layout-model-repository-dewf-dyna-start-view-layout.ts +99 -0
  68. package/src/publish/view-layout-model-repository/view-layout-model-repository-form-pickup-data-view.ts +28 -0
  69. package/src/theme/elements/index.scss +35 -0
  70. package/src/theme/generic/element-plus.scss +452 -0
  71. package/src/theme/generic/index.scss +2 -0
  72. package/src/theme/index.scss +17 -0
  73. package/src/theme/objects/expand/expand.scss +41 -0
  74. package/src/theme/objects/index.scss +3 -0
  75. package/src/theme/objects/state/state.scss +1 -0
  76. package/src/theme/theme/dark/dark-theme.scss +304 -0
  77. package/src/theme/theme/default/default-theme.scss +404 -0
  78. package/src/theme/theme/default-dark/default-dark-theme.scss +403 -0
  79. package/src/theme/theme/index.scss +7 -0
  80. package/src/theme/theme/light/light-theme.scss +337 -0
  81. package/src/theme/tumps/index.scss +1 -0
  82. package/src/theme/var.scss +88 -0
  83. package/src/types.d.ts +1 -0
  84. package/es/theme/theme/omni-oa/omni-oa-theme.css +0 -1
  85. package/lib/theme/theme/omni-oa/omni-oa-theme.css +0 -1
@@ -0,0 +1,250 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "panelItems": [
11
+ {
12
+ "panelItems": [
13
+ {
14
+ "panelItems": [
15
+ {
16
+ "caption": "页面标题",
17
+ "itemStyle": "DEFAULT",
18
+ "itemType": "CTRLPOS",
19
+ "layoutPos": {
20
+ "shrink": 1,
21
+ "layout": "FLEX"
22
+ },
23
+ "showCaption": true,
24
+ "id": "captionbar"
25
+ }
26
+ ],
27
+ "layout": {
28
+ "align": "center",
29
+ "layout": "FLEX"
30
+ },
31
+ "dataRegionType": "INHERIT",
32
+ "caption": "容器",
33
+ "itemStyle": "DEFAULT",
34
+ "itemType": "CONTAINER",
35
+ "layoutPos": {
36
+ "shrink": 1,
37
+ "heightMode": "FULL",
38
+ "layout": "FLEX"
39
+ },
40
+ "id": "view_captionbar"
41
+ }
42
+ ],
43
+ "layout": {
44
+ "layout": "FLEX"
45
+ },
46
+ "dataRegionType": "INHERIT",
47
+ "caption": "容器",
48
+ "itemStyle": "DEFAULT",
49
+ "itemType": "CONTAINER",
50
+ "layoutPos": {
51
+ "shrink": 1,
52
+ "heightMode": "FULL",
53
+ "layout": "FLEX"
54
+ },
55
+ "id": "view_header_left"
56
+ },
57
+ {
58
+ "panelItems": [
59
+ {
60
+ "panelItems": [
61
+ {
62
+ "caption": "搜索栏",
63
+ "itemStyle": "DEFAULT",
64
+ "itemType": "CTRLPOS",
65
+ "layoutPos": {
66
+ "shrink": 1,
67
+ "layout": "FLEX"
68
+ },
69
+ "showCaption": true,
70
+ "id": "searchbar"
71
+ }
72
+ ],
73
+ "layout": {
74
+ "align": "center",
75
+ "layout": "FLEX"
76
+ },
77
+ "dataRegionType": "INHERIT",
78
+ "caption": "容器",
79
+ "itemStyle": "DEFAULT",
80
+ "itemType": "CONTAINER",
81
+ "layoutPos": {
82
+ "shrink": 1,
83
+ "heightMode": "FULL",
84
+ "layout": "FLEX"
85
+ },
86
+ "id": "view_searchbar"
87
+ },
88
+ {
89
+ "panelItems": [
90
+ {
91
+ "caption": "工具栏",
92
+ "itemStyle": "DEFAULT",
93
+ "itemType": "CTRLPOS",
94
+ "layoutPos": {
95
+ "shrink": 1,
96
+ "layout": "FLEX"
97
+ },
98
+ "showCaption": true,
99
+ "id": "toolbar"
100
+ }
101
+ ],
102
+ "layout": {
103
+ "align": "center",
104
+ "layout": "FLEX"
105
+ },
106
+ "dataRegionType": "INHERIT",
107
+ "caption": "容器",
108
+ "itemStyle": "DEFAULT",
109
+ "itemType": "CONTAINER",
110
+ "layoutPos": {
111
+ "shrink": 1,
112
+ "heightMode": "FULL",
113
+ "layout": "FLEX"
114
+ },
115
+ "id": "view_toolbar"
116
+ }
117
+ ],
118
+ "layout": {
119
+ "dir": "row",
120
+ "layout": "FLEX"
121
+ },
122
+ "dataRegionType": "INHERIT",
123
+ "caption": "容器",
124
+ "itemStyle": "DEFAULT",
125
+ "itemType": "CONTAINER",
126
+ "layoutPos": {
127
+ "shrink": 1,
128
+ "heightMode": "FULL",
129
+ "layout": "FLEX"
130
+ },
131
+ "id": "view_header_right"
132
+ }
133
+ ],
134
+ "predefinedType": "VIEWHEADER",
135
+ "layout": {
136
+ "align": "space-between",
137
+ "dir": "row",
138
+ "layout": "FLEX",
139
+ "valign": "center"
140
+ },
141
+ "dataRegionType": "INHERIT",
142
+ "caption": "容器",
143
+ "itemStyle": "DEFAULT",
144
+ "itemType": "CONTAINER",
145
+ "layoutPos": {
146
+ "shrink": 0,
147
+ "layout": "FLEX"
148
+ },
149
+ "id": "view_header"
150
+ }
151
+ ],
152
+ "predefinedType": "PANELPART",
153
+ "layout": {
154
+ "layout": "FLEX"
155
+ },
156
+ "dataRegionType": "INHERIT",
157
+ "caption": "引用布局面板",
158
+ "itemStyle": "DEFAULT",
159
+ "itemType": "CONTAINER",
160
+ "layoutPos": {
161
+ "shrink": 1,
162
+ "layout": "FLEX"
163
+ },
164
+ "showCaption": true,
165
+ "id": "panelpart"
166
+ },
167
+ {
168
+ "panelItems": [
169
+ {
170
+ "panelItems": [
171
+ {
172
+ "caption": "搜索表单",
173
+ "itemStyle": "DEFAULT",
174
+ "itemType": "CTRLPOS",
175
+ "layoutPos": {
176
+ "shrink": 1,
177
+ "layout": "FLEX"
178
+ },
179
+ "showCaption": true,
180
+ "id": "searchform"
181
+ }
182
+ ],
183
+ "layout": {
184
+ "dir": "column",
185
+ "layout": "FLEX"
186
+ },
187
+ "dataRegionType": "INHERIT",
188
+ "itemStyle": "DEFAULT",
189
+ "itemType": "CONTAINER",
190
+ "layoutPos": {
191
+ "shrink": 0,
192
+ "layout": "FLEX"
193
+ },
194
+ "id": "view_searchform"
195
+ }
196
+ ],
197
+ "predefinedType": "PANELPART",
198
+ "layout": {
199
+ "layout": "FLEX"
200
+ },
201
+ "dataRegionType": "INHERIT",
202
+ "caption": "引用布局面板",
203
+ "itemStyle": "DEFAULT",
204
+ "itemType": "CONTAINER",
205
+ "layoutPos": {
206
+ "shrink": 1,
207
+ "layout": "FLEX"
208
+ },
209
+ "showCaption": true,
210
+ "id": "panelpart1"
211
+ },
212
+ {
213
+ "panelItems": [
214
+ {
215
+ "caption": "树视图",
216
+ "itemStyle": "DEFAULT",
217
+ "itemType": "CTRLPOS",
218
+ "layoutPos": {
219
+ "shrink": 1,
220
+ "layout": "FLEX"
221
+ },
222
+ "showCaption": true,
223
+ "id": "tree"
224
+ }
225
+ ],
226
+ "predefinedType": "VIEWCONTENT",
227
+ "layout": {
228
+ "layout": "FLEX"
229
+ },
230
+ "dataRegionType": "INHERIT",
231
+ "caption": "容器",
232
+ "itemStyle": "DEFAULT",
233
+ "itemType": "CONTAINER",
234
+ "layoutPos": {
235
+ "grow": 1,
236
+ "shrink": 1,
237
+ "layout": "FLEX"
238
+ },
239
+ "id": "view_content"
240
+ }
241
+ ],
242
+ "layoutPanel": true,
243
+ "codeName": "TreeViewLayout",
244
+ "controlType": "VIEWLAYOUTPANEL",
245
+ "logicName": "树视图布局面板(预置模型)",
246
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
247
+ "controlParam": {},
248
+ "name": "layoutpanel",
249
+ "id": "treeviewlayout"
250
+ }
@@ -0,0 +1,49 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "caption": "向导面板",
11
+ "contentHeight": 100,
12
+ "height": 100,
13
+ "itemStyle": "DEFAULT",
14
+ "itemType": "CTRLPOS",
15
+ "layoutPos": {
16
+ "shrink": 1,
17
+ "height": 100,
18
+ "heightMode": "PERCENTAGE",
19
+ "layout": "FLEX"
20
+ },
21
+ "showCaption": true,
22
+ "id": "wizardpanel"
23
+ }
24
+ ],
25
+ "predefinedType": "VIEWCONTENT",
26
+ "layout": {
27
+ "layout": "FLEX"
28
+ },
29
+ "dataRegionType": "INHERIT",
30
+ "caption": "容器",
31
+ "itemStyle": "DEFAULT",
32
+ "itemType": "CONTAINER",
33
+ "layoutPos": {
34
+ "grow": 1,
35
+ "shrink": 1,
36
+ "layout": "FLEX"
37
+ },
38
+ "id": "view_content"
39
+ }
40
+ ],
41
+ "layoutPanel": true,
42
+ "codeName": "WizardViewLayout",
43
+ "controlType": "VIEWLAYOUTPANEL",
44
+ "logicName": "向导视图布局面板(预置模型)",
45
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
46
+ "controlParam": {},
47
+ "name": "layoutpanel",
48
+ "id": "wizardviewlayout"
49
+ }
@@ -0,0 +1,297 @@
1
+ export default {
2
+ "layoutMode": "Flex",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "panelItems": [
11
+ {
12
+ "panelItems": [
13
+ {
14
+ "panelItems": [
15
+ {
16
+ "caption": "页面标题",
17
+ "itemStyle": "DEFAULT",
18
+ "itemType": "CTRLPOS",
19
+ "layoutPos": {
20
+ "shrink": 1,
21
+ "layout": "FLEX"
22
+ },
23
+ "showCaption": true,
24
+ "id": "captionbar"
25
+ }
26
+ ],
27
+ "layout": {
28
+ "align": "center",
29
+ "layout": "FLEX"
30
+ },
31
+ "dataRegionType": "INHERIT",
32
+ "caption": "容器",
33
+ "itemStyle": "DEFAULT",
34
+ "itemType": "CONTAINER",
35
+ "layoutPos": {
36
+ "shrink": 1,
37
+ "heightMode": "FULL",
38
+ "layout": "FLEX"
39
+ },
40
+ "id": "view_captionbar"
41
+ }
42
+ ],
43
+ "layout": {
44
+ "layout": "FLEX"
45
+ },
46
+ "dataRegionType": "INHERIT",
47
+ "caption": "容器",
48
+ "itemStyle": "DEFAULT",
49
+ "itemType": "CONTAINER",
50
+ "layoutPos": {
51
+ "shrink": 1,
52
+ "heightMode": "FULL",
53
+ "layout": "FLEX"
54
+ },
55
+ "id": "view_header_left"
56
+ },
57
+ {
58
+ "panelItems": [
59
+ {
60
+ "panelItems": [
61
+ {
62
+ "caption": "搜索栏",
63
+ "itemStyle": "DEFAULT",
64
+ "itemType": "CTRLPOS",
65
+ "layoutPos": {
66
+ "shrink": 1,
67
+ "layout": "FLEX"
68
+ },
69
+ "showCaption": true,
70
+ "id": "searchbar"
71
+ }
72
+ ],
73
+ "layout": {
74
+ "align": "center",
75
+ "layout": "FLEX"
76
+ },
77
+ "dataRegionType": "INHERIT",
78
+ "caption": "容器",
79
+ "itemStyle": "DEFAULT",
80
+ "itemType": "CONTAINER",
81
+ "layoutPos": {
82
+ "shrink": 1,
83
+ "heightMode": "FULL",
84
+ "layout": "FLEX"
85
+ },
86
+ "id": "view_searchbar"
87
+ },
88
+ {
89
+ "panelItems": [
90
+ {
91
+ "caption": "工具栏",
92
+ "itemStyle": "DEFAULT",
93
+ "itemType": "CTRLPOS",
94
+ "layoutPos": {
95
+ "shrink": 1,
96
+ "layout": "FLEX"
97
+ },
98
+ "showCaption": true,
99
+ "id": "toolbar"
100
+ }
101
+ ],
102
+ "layout": {
103
+ "align": "center",
104
+ "layout": "FLEX"
105
+ },
106
+ "dataRegionType": "INHERIT",
107
+ "caption": "容器",
108
+ "itemStyle": "DEFAULT",
109
+ "itemType": "CONTAINER",
110
+ "layoutPos": {
111
+ "shrink": 1,
112
+ "heightMode": "FULL",
113
+ "layout": "FLEX"
114
+ },
115
+ "id": "view_toolbar"
116
+ }
117
+ ],
118
+ "layout": {
119
+ "dir": "row",
120
+ "layout": "FLEX"
121
+ },
122
+ "dataRegionType": "INHERIT",
123
+ "caption": "容器",
124
+ "itemStyle": "DEFAULT",
125
+ "itemType": "CONTAINER",
126
+ "layoutPos": {
127
+ "shrink": 1,
128
+ "heightMode": "FULL",
129
+ "layout": "FLEX"
130
+ },
131
+ "id": "view_header_right"
132
+ }
133
+ ],
134
+ "predefinedType": "VIEWHEADER",
135
+ "layout": {
136
+ "align": "space-between",
137
+ "dir": "row",
138
+ "layout": "FLEX",
139
+ "valign": "center"
140
+ },
141
+ "dataRegionType": "INHERIT",
142
+ "caption": "容器",
143
+ "itemStyle": "DEFAULT",
144
+ "itemType": "CONTAINER",
145
+ "layoutPos": {
146
+ "shrink": 0,
147
+ "layout": "FLEX"
148
+ },
149
+ "id": "view_header"
150
+ }
151
+ ],
152
+ "predefinedType": "PANELPART",
153
+ "layout": {
154
+ "layout": "FLEX"
155
+ },
156
+ "dataRegionType": "INHERIT",
157
+ "caption": "引用布局面板",
158
+ "itemStyle": "DEFAULT",
159
+ "itemType": "CONTAINER",
160
+ "layoutPos": {
161
+ "shrink": 1,
162
+ "layout": "FLEX"
163
+ },
164
+ "showCaption": true,
165
+ "id": "panelpart"
166
+ },
167
+ {
168
+ "panelItems": [
169
+ {
170
+ "panelItems": [
171
+ {
172
+ "caption": "搜索表单",
173
+ "itemStyle": "DEFAULT",
174
+ "itemType": "CTRLPOS",
175
+ "layoutPos": {
176
+ "shrink": 1,
177
+ "layout": "FLEX"
178
+ },
179
+ "showCaption": true,
180
+ "id": "searchform"
181
+ }
182
+ ],
183
+ "layout": {
184
+ "dir": "column",
185
+ "layout": "FLEX"
186
+ },
187
+ "dataRegionType": "INHERIT",
188
+ "itemStyle": "DEFAULT",
189
+ "itemType": "CONTAINER",
190
+ "layoutPos": {
191
+ "shrink": 0,
192
+ "layout": "FLEX"
193
+ },
194
+ "id": "view_searchform"
195
+ }
196
+ ],
197
+ "predefinedType": "PANELPART",
198
+ "layout": {
199
+ "layout": "FLEX"
200
+ },
201
+ "dataRegionType": "INHERIT",
202
+ "caption": "引用布局面板",
203
+ "itemStyle": "DEFAULT",
204
+ "itemType": "CONTAINER",
205
+ "layoutPos": {
206
+ "shrink": 1,
207
+ "layout": "FLEX"
208
+ },
209
+ "showCaption": true,
210
+ "id": "panelpart1"
211
+ },
212
+ {
213
+ "panelItems": [
214
+ {
215
+ "caption": "多编辑面板",
216
+ "itemStyle": "DEFAULT",
217
+ "itemType": "CTRLPOS",
218
+ "layoutPos": {
219
+ "grow": 1,
220
+ "shrink": 1,
221
+ "layout": "FLEX"
222
+ },
223
+ "showCaption": true,
224
+ "id": "meditviewpanel"
225
+ }
226
+ ],
227
+ "layout": {
228
+ "layout": "FLEX"
229
+ },
230
+ "dataRegionType": "INHERIT",
231
+ "caption": "容器",
232
+ "itemStyle": "DEFAULT",
233
+ "itemType": "CONTAINER",
234
+ "layoutPos": {
235
+ "grow": 1,
236
+ "shrink": 1,
237
+ "layout": "FLEX"
238
+ },
239
+ "id": "view_meditviewpanel"
240
+ },
241
+ {
242
+ "panelItems": [
243
+ {
244
+ "actionType": "UIACTION",
245
+ "buttonStyle": "DEFAULT",
246
+ "buttonType": "PANELBUTTON",
247
+ "uiactionId": "new",
248
+ "renderMode": "BUTTON",
249
+ "tooltip": "添加",
250
+ "capLanguageRes": {
251
+ "defaultContent": "新建",
252
+ "lanResTag": "TBB.TEXT.*.NEW",
253
+ "lanResType": "TBB.TEXT",
254
+ "refFlag": true,
255
+ "name": "工具栏按钮文本[*.NEW]",
256
+ "id": "工具栏按钮文本[*.new]"
257
+ },
258
+ "caption": "添加",
259
+ "itemStyle": "DEFAULT",
260
+ "itemType": "BUTTON",
261
+ "layoutPos": {
262
+ "shrink": 1,
263
+ "layout": "FLEX"
264
+ },
265
+ "sysImage": {
266
+ "cssClass": "add"
267
+ },
268
+ "showCaption": true,
269
+ "id": "button_calluilogic"
270
+ }
271
+ ],
272
+ "layout": {
273
+ "align": "center",
274
+ "dir": "row",
275
+ "layout": "FLEX",
276
+ "valign": "center"
277
+ },
278
+ "dataRegionType": "INHERIT",
279
+ "caption": "容器",
280
+ "itemStyle": "DEFAULT",
281
+ "itemType": "CONTAINER",
282
+ "layoutPos": {
283
+ "shrink": 1,
284
+ "layout": "FLEX"
285
+ },
286
+ "id": "container"
287
+ }
288
+ ],
289
+ "layoutPanel": true,
290
+ "codeName": "MEditViewLayout",
291
+ "controlType": "VIEWLAYOUTPANEL",
292
+ "logicName": "实体多表单编辑视图(部件视图)布局面板(预置模型)",
293
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
294
+ "controlParam": {},
295
+ "name": "layoutpanel",
296
+ "id": "meditviewlayout"
297
+ }