@ibiz-template/web-theme 1.0.31-dev.0 → 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,228 @@
1
+ export default {
2
+ "layoutBodyOnly": true,
3
+ "layoutMode": "FLEX",
4
+ "layout": {
5
+ "layout": "FLEX"
6
+ },
7
+ "rootPanelItems": [
8
+ {
9
+ "panelItems": [
10
+ {
11
+ "panelItems": [
12
+ {
13
+ "panelItems": [
14
+ {
15
+ "panelItems": [
16
+ {
17
+ "caption": "页面标题",
18
+ "itemStyle": "DEFAULT",
19
+ "itemType": "CTRLPOS",
20
+ "layoutPos": {
21
+ "shrink": 1,
22
+ "layout": "FLEX"
23
+ },
24
+ "showCaption": true,
25
+ "id": "captionbar"
26
+ }
27
+ ],
28
+ "layout": {
29
+ "align": "center",
30
+ "layout": "FLEX"
31
+ },
32
+ "dataRegionType": "INHERIT",
33
+ "caption": "容器",
34
+ "itemStyle": "DEFAULT",
35
+ "itemType": "CONTAINER",
36
+ "layoutPos": {
37
+ "shrink": 1,
38
+ "heightMode": "FULL",
39
+ "layout": "FLEX"
40
+ },
41
+ "id": "view_captionbar"
42
+ }
43
+ ],
44
+ "layout": {
45
+ "layout": "FLEX"
46
+ },
47
+ "dataRegionType": "INHERIT",
48
+ "caption": "容器",
49
+ "itemStyle": "DEFAULT",
50
+ "itemType": "CONTAINER",
51
+ "layoutPos": {
52
+ "shrink": 1,
53
+ "heightMode": "FULL",
54
+ "layout": "FLEX"
55
+ },
56
+ "id": "view_header_left"
57
+ },
58
+ {
59
+ "panelItems": [
60
+ {
61
+ "panelItems": [
62
+ {
63
+ "caption": "工具栏",
64
+ "itemStyle": "DEFAULT",
65
+ "itemType": "CTRLPOS",
66
+ "layoutPos": {
67
+ "shrink": 1,
68
+ "layout": "FLEX"
69
+ },
70
+ "showCaption": true,
71
+ "id": "toolbar"
72
+ }
73
+ ],
74
+ "layout": {
75
+ "align": "center",
76
+ "layout": "FLEX"
77
+ },
78
+ "dataRegionType": "INHERIT",
79
+ "caption": "容器",
80
+ "itemStyle": "DEFAULT",
81
+ "itemType": "CONTAINER",
82
+ "layoutPos": {
83
+ "shrink": 1,
84
+ "heightMode": "FULL",
85
+ "layout": "FLEX"
86
+ },
87
+ "id": "view_toolbar"
88
+ }
89
+ ],
90
+ "layout": {
91
+ "layout": "FLEX"
92
+ },
93
+ "dataRegionType": "INHERIT",
94
+ "caption": "容器",
95
+ "itemStyle": "DEFAULT",
96
+ "itemType": "CONTAINER",
97
+ "layoutPos": {
98
+ "shrink": 1,
99
+ "heightMode": "FULL",
100
+ "layout": "FLEX"
101
+ },
102
+ "id": "view_header_right"
103
+ }
104
+ ],
105
+ "predefinedType": "VIEWHEADER",
106
+ "layout": {
107
+ "align": "space-between",
108
+ "dir": "row",
109
+ "layout": "FLEX",
110
+ "valign": "center"
111
+ },
112
+ "dataRegionType": "INHERIT",
113
+ "caption": "容器",
114
+ "itemStyle": "DEFAULT",
115
+ "itemType": "CONTAINER",
116
+ "layoutPos": {
117
+ "shrink": 0,
118
+ "layout": "FLEX"
119
+ },
120
+ "id": "view_header"
121
+ }
122
+ ],
123
+ "predefinedType": "PANELPART",
124
+ "layout": {
125
+ "layout": "FLEX"
126
+ },
127
+ "dataRegionType": "INHERIT",
128
+ "caption": "引用布局面板",
129
+ "itemStyle": "DEFAULT",
130
+ "itemType": "CONTAINER",
131
+ "layoutPos": {
132
+ "shrink": 1,
133
+ "layout": "FLEX"
134
+ },
135
+ "showCaption": true,
136
+ "id": "panelpart"
137
+ },
138
+ {
139
+ "panelItems": [
140
+ {
141
+ "caption": "表单",
142
+ "itemStyle": "DEFAULT",
143
+ "itemType": "CTRLPOS",
144
+ "layoutPos": {
145
+ "shrink": 1,
146
+ "layout": "FLEX"
147
+ },
148
+ "showCaption": true,
149
+ "id": "form"
150
+ }
151
+ ],
152
+ "predefinedType": "VIEWCONTENT",
153
+ "layout": {
154
+ "layout": "FLEX"
155
+ },
156
+ "dataRegionType": "INHERIT",
157
+ "caption": "容器",
158
+ "itemStyle": "DEFAULT",
159
+ "itemType": "CONTAINER",
160
+ "layoutPos": {
161
+ "grow": 1,
162
+ "shrink": 1,
163
+ "layout": "FLEX"
164
+ },
165
+ "id": "view_content"
166
+ },
167
+ {
168
+ "panelItems": [
169
+ {
170
+ "actionType": "UIACTION",
171
+ "buttonStyle": "PRIMARY",
172
+ "buttonType": "PANELBUTTON",
173
+ "uiactionId": "ok",
174
+ "renderMode": "BUTTON",
175
+ "tooltip": "确定",
176
+ "caption": "确定",
177
+ "itemStyle": "PRIMARY",
178
+ "itemType": "BUTTON",
179
+ "layoutPos": {
180
+ "shrink": 1,
181
+ "layout": "FLEX"
182
+ },
183
+ "showCaption": true,
184
+ "id": "button_okaction"
185
+ },
186
+ {
187
+ "actionType": "UIACTION",
188
+ "buttonStyle": "INFO",
189
+ "buttonType": "PANELBUTTON",
190
+ "uiactionId": "cancel",
191
+ "renderMode": "BUTTON",
192
+ "tooltip": "取消",
193
+ "caption": "取消",
194
+ "itemStyle": "INFO",
195
+ "itemType": "BUTTON",
196
+ "layoutPos": {
197
+ "shrink": 1,
198
+ "layout": "FLEX"
199
+ },
200
+ "showCaption": true,
201
+ "id": "button_cancelaction"
202
+ }
203
+ ],
204
+ "layout": {
205
+ "dir": "row-reverse",
206
+ "layout": "FLEX",
207
+ "valign": "center"
208
+ },
209
+ "dataRegionType": "INHERIT",
210
+ "caption": "容器",
211
+ "itemStyle": "DEFAULT",
212
+ "itemType": "CONTAINER",
213
+ "layoutPos": {
214
+ "shrink": 0,
215
+ "layout": "FLEX"
216
+ },
217
+ "id": "view_footer"
218
+ }
219
+ ],
220
+ "layoutPanel": true,
221
+ "codeName": "OptionViewLayout",
222
+ "controlType": "VIEWLAYOUTPANEL",
223
+ "logicName": "选项操作视图布局面(预置模型)",
224
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
225
+ "controlParam": {},
226
+ "name": "layoutpanel",
227
+ "id": "optionviewlayout"
228
+ }
@@ -0,0 +1,176 @@
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": "toolbar"
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_toolbar"
87
+ }
88
+ ],
89
+ "layout": {
90
+ "layout": "FLEX"
91
+ },
92
+ "dataRegionType": "INHERIT",
93
+ "caption": "容器",
94
+ "itemStyle": "DEFAULT",
95
+ "itemType": "CONTAINER",
96
+ "layoutPos": {
97
+ "shrink": 1,
98
+ "heightMode": "FULL",
99
+ "layout": "FLEX"
100
+ },
101
+ "id": "view_header_right"
102
+ }
103
+ ],
104
+ "predefinedType": "VIEWHEADER",
105
+ "layout": {
106
+ "align": "space-between",
107
+ "dir": "row",
108
+ "layout": "FLEX",
109
+ "valign": "center"
110
+ },
111
+ "dataRegionType": "INHERIT",
112
+ "caption": "容器",
113
+ "itemStyle": "DEFAULT",
114
+ "itemType": "CONTAINER",
115
+ "layoutPos": {
116
+ "shrink": 0,
117
+ "layout": "FLEX"
118
+ },
119
+ "id": "view_header"
120
+ }
121
+ ],
122
+ "predefinedType": "PANELPART",
123
+ "layout": {
124
+ "layout": "FLEX"
125
+ },
126
+ "dataRegionType": "INHERIT",
127
+ "caption": "引用布局面板",
128
+ "itemStyle": "DEFAULT",
129
+ "itemType": "CONTAINER",
130
+ "layoutPos": {
131
+ "shrink": 1,
132
+ "layout": "FLEX"
133
+ },
134
+ "showCaption": true,
135
+ "id": "panelpart"
136
+ },
137
+ {
138
+ "panelItems": [
139
+ {
140
+ "caption": "面板部件",
141
+ "itemStyle": "DEFAULT",
142
+ "itemType": "CTRLPOS",
143
+ "layoutPos": {
144
+ "shrink": 1,
145
+ "heightMode": "FULL",
146
+ "layout": "FLEX",
147
+ "widthMode": "FULL"
148
+ },
149
+ "showCaption": true,
150
+ "id": "panel"
151
+ }
152
+ ],
153
+ "predefinedType": "VIEWCONTENT",
154
+ "layout": {
155
+ "layout": "FLEX"
156
+ },
157
+ "dataRegionType": "INHERIT",
158
+ "caption": "容器",
159
+ "itemStyle": "DEFAULT",
160
+ "itemType": "CONTAINER",
161
+ "layoutPos": {
162
+ "shrink": 1,
163
+ "layout": "FLEX"
164
+ },
165
+ "id": "view_content"
166
+ }
167
+ ],
168
+ "layoutPanel": true,
169
+ "codeName": "PanelViewLayout",
170
+ "controlType": "VIEWLAYOUTPANEL",
171
+ "logicName": "实体面板视图布局面板(预置模型)",
172
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
173
+ "controlParam": {},
174
+ "name": "layoutpanel",
175
+ "id": "panelviewlayout"
176
+ }
@@ -0,0 +1,73 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "panelItems": [
11
+ {
12
+ "caption": "搜索表单",
13
+ "itemStyle": "DEFAULT",
14
+ "itemType": "CTRLPOS",
15
+ "layoutPos": {
16
+ "shrink": 1,
17
+ "layout": "FLEX"
18
+ },
19
+ "showCaption": true,
20
+ "id": "searchform"
21
+ }
22
+ ],
23
+ "layout": {
24
+ "dir": "column",
25
+ "layout": "FLEX"
26
+ },
27
+ "dataRegionType": "INHERIT",
28
+ "itemStyle": "DEFAULT",
29
+ "itemType": "CONTAINER",
30
+ "layoutPos": {
31
+ "shrink": 0,
32
+ "layout": "FLEX"
33
+ },
34
+ "id": "view_searchform"
35
+ }
36
+ ],
37
+ "predefinedType": "PANELPART",
38
+ "layout": {
39
+ "layout": "FLEX"
40
+ },
41
+ "dataRegionType": "INHERIT",
42
+ "caption": "引用布局面板",
43
+ "itemStyle": "DEFAULT",
44
+ "itemType": "CONTAINER",
45
+ "layoutPos": {
46
+ "shrink": 1,
47
+ "layout": "FLEX"
48
+ },
49
+ "showCaption": true,
50
+ "id": "panelpart"
51
+ },
52
+ {
53
+ "caption": "数据视图",
54
+ "itemStyle": "DEFAULT",
55
+ "itemType": "CTRLPOS",
56
+ "layoutPos": {
57
+ "grow": 1,
58
+ "shrink": 1,
59
+ "layout": "FLEX"
60
+ },
61
+ "showCaption": true,
62
+ "id": "dataview"
63
+ }
64
+ ],
65
+ "layoutPanel": true,
66
+ "codeName": "PickupDataViewLayout",
67
+ "controlType": "VIEWLAYOUTPANEL",
68
+ "logicName": "实体选择数据视图布局面板(预置模型)",
69
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
70
+ "controlParam": {},
71
+ "name": "layoutpanel",
72
+ "id": "pickupdataviewlayout"
73
+ }
@@ -0,0 +1,73 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "panelItems": [
11
+ {
12
+ "caption": "搜索表单",
13
+ "itemStyle": "DEFAULT",
14
+ "itemType": "CTRLPOS",
15
+ "layoutPos": {
16
+ "shrink": 1,
17
+ "layout": "FLEX"
18
+ },
19
+ "showCaption": true,
20
+ "id": "searchform"
21
+ }
22
+ ],
23
+ "layout": {
24
+ "dir": "column",
25
+ "layout": "FLEX"
26
+ },
27
+ "dataRegionType": "INHERIT",
28
+ "itemStyle": "DEFAULT",
29
+ "itemType": "CONTAINER",
30
+ "layoutPos": {
31
+ "shrink": 0,
32
+ "layout": "FLEX"
33
+ },
34
+ "id": "view_searchform"
35
+ }
36
+ ],
37
+ "predefinedType": "PANELPART",
38
+ "layout": {
39
+ "layout": "FLEX"
40
+ },
41
+ "dataRegionType": "INHERIT",
42
+ "caption": "引用布局面板",
43
+ "itemStyle": "DEFAULT",
44
+ "itemType": "CONTAINER",
45
+ "layoutPos": {
46
+ "shrink": 1,
47
+ "layout": "FLEX"
48
+ },
49
+ "showCaption": true,
50
+ "id": "panelpart"
51
+ },
52
+ {
53
+ "caption": "表格",
54
+ "itemStyle": "DEFAULT",
55
+ "itemType": "CTRLPOS",
56
+ "layoutPos": {
57
+ "grow": 1,
58
+ "shrink": 1,
59
+ "layout": "FLEX"
60
+ },
61
+ "showCaption": true,
62
+ "id": "grid"
63
+ }
64
+ ],
65
+ "layoutPanel": true,
66
+ "codeName": "PickupGridViewLayout",
67
+ "controlType": "VIEWLAYOUTPANEL",
68
+ "logicName": "实体选择表格视图布局面板(预置模型)",
69
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
70
+ "controlParam": {},
71
+ "name": "layoutpanel",
72
+ "id": "pickupgridviewlayout"
73
+ }
@@ -0,0 +1,72 @@
1
+ export default {
2
+ "layoutMode": "FLEX",
3
+ "layout": {
4
+ "layout": "FLEX"
5
+ },
6
+ "rootPanelItems": [
7
+ {
8
+ "panelItems": [
9
+ {
10
+ "panelItems": [
11
+ {
12
+ "caption": "搜索表单",
13
+ "itemStyle": "DEFAULT",
14
+ "itemType": "CTRLPOS",
15
+ "layoutPos": {
16
+ "shrink": 1,
17
+ "layout": "FLEX"
18
+ },
19
+ "showCaption": true,
20
+ "id": "searchform"
21
+ }
22
+ ],
23
+ "layout": {
24
+ "dir": "column",
25
+ "layout": "FLEX"
26
+ },
27
+ "dataRegionType": "INHERIT",
28
+ "itemStyle": "DEFAULT",
29
+ "itemType": "CONTAINER",
30
+ "layoutPos": {
31
+ "shrink": 0,
32
+ "layout": "FLEX"
33
+ },
34
+ "id": "view_searchform"
35
+ }
36
+ ],
37
+ "predefinedType": "PANELPART",
38
+ "layout": {
39
+ "layout": "FLEX"
40
+ },
41
+ "dataRegionType": "INHERIT",
42
+ "caption": "引用布局面板",
43
+ "itemStyle": "DEFAULT",
44
+ "itemType": "CONTAINER",
45
+ "layoutPos": {
46
+ "shrink": 1,
47
+ "layout": "FLEX"
48
+ },
49
+ "showCaption": true,
50
+ "id": "panelpart"
51
+ },
52
+ {
53
+ "caption": "树",
54
+ "itemStyle": "DEFAULT",
55
+ "itemType": "CTRLPOS",
56
+ "layoutPos": {
57
+ "shrink": 1,
58
+ "layout": "FLEX"
59
+ },
60
+ "showCaption": true,
61
+ "id": "tree"
62
+ }
63
+ ],
64
+ "layoutPanel": true,
65
+ "codeName": "PickupTreeViewLayout",
66
+ "controlType": "VIEWLAYOUTPANEL",
67
+ "logicName": "实体选择树视图布局面板(预置模型)",
68
+ "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
69
+ "controlParam": {},
70
+ "name": "layoutpanel",
71
+ "id": "pickuptreeviewlayout"
72
+ }