1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
| import MenuUtils from '@/utils/utils-custom.js'
|
| /**
| * @description tab表单配置信息
| */
| export function getTabForm(tab, setting) {
| let appType = sessionStorage.getItem('appType')
| let roleList = sessionStorage.getItem('sysRoles')
|
| if (roleList) {
| try {
| roleList = JSON.parse(roleList)
| } catch (e) {
| roleList = []
| }
| } else {
| roleList = []
| }
|
| const tabForm = [
| {
| type: 'text',
| field: 'label',
| label: '名称',
| initval: tab.label || '',
| required: true,
| focus: true,
| },
| {
| type: 'mkicon',
| field: 'icon',
| label: '图标',
| initval: tab.icon || '',
| required: false,
| allowClear: true,
| },
| {
| type: 'text',
| field: 'controlVal',
| label: '隐藏标记',
| initval: tab.controlVal || '',
| tooltip: '当禁用字段值与隐藏标记相等时,标签页会隐藏。注:多个值请用逗号分隔。',
| required: false,
| },
| {
| type: 'text',
| field: 'selectVal',
| label: '选中标记',
| initval: tab.selectVal || '',
| tooltip: '当选中字段值与选中标记相等时,标签页默认选中。',
| required: false
| },
| {
| type: 'color',
| field: 'backgroundColor',
| label: '背景(内容区)',
| initval: tab.backgroundColor || 'transparent',
| required: false,
| },
| {
| type: 'radio',
| field: 'hide',
| label: '隐藏',
| initval: tab.hide || 'false',
| required: false,
| options: [
| {value: 'false', label: '否'},
| {value: 'true', label: '是'},
| ],
| },
| {
| type: 'multiselect',
| field: 'blacklist',
| label: '黑名单',
| initval: tab.blacklist || [],
| required: false,
| options: roleList,
| forbid: !!appType,
| },
| ]
|
| return tabForm
| }
|
| /**
| * @description tabs表单配置信息
| */
| export function getTabsSetForm(setting, uuid) {
| let appType = sessionStorage.getItem('appType')
| let roleList = sessionStorage.getItem('sysRoles')
|
| let modules = MenuUtils.getSupModules(window.GLOB.customMenu.components, uuid)
| modules.push({
| value: 'preview',
| label: '上一页(url参数)'
| })
|
| if (roleList) {
| try {
| roleList = JSON.parse(roleList)
| } catch (e) {
| roleList = []
| }
| } else {
| roleList = []
| }
|
| const tabForm = [
| {
| type: 'text',
| field: 'name',
| label: '组件名称',
| initval: setting.name || '',
| tooltip: '用于组件间的区分。',
| required: true
| },
| {
| type: 'number',
| field: 'width',
| label: '宽度',
| initval: setting.width || 24,
| tooltip: '栅格布局,每行等分为24列。',
| min: 1,
| max: 24,
| precision: 0,
| required: true
| },
| {
| type: 'select',
| field: 'position',
| label: '标签位置',
| initval: setting.position || 'top',
| required: true,
| options: [
| {value: 'top', label: 'top'},
| {value: 'bottom', label: 'bottom'},
| {value: 'left', label: 'left'},
| {value: 'right', label: 'right'},
| ],
| controlFields: [
| {field: 'display', values: ['top', 'bottom']},
| ]
| },
| {
| type: 'radio',
| field: 'tabStyle',
| label: '页签样式',
| initval: setting.tabStyle || 'line',
| tooltip: '标签位置为top时有效,默认值为line。',
| required: true,
| options: [
| {value: 'line', label: 'line'},
| {value: 'card', label: 'card'},
| ],
| },
| {
| type: 'radio',
| field: 'autoSwitch',
| label: '自动切换',
| initval: setting.autoSwitch || 'false',
| tooltip: '存在两个及以上标签时有效。',
| required: false,
| options: [
| {value: 'true', label: '是'},
| {value: 'false', label: '否'},
| ],
| controlFields: [
| {field: 'interval', values: ['true']},
| {field: 'tabLabel', values: ['true']},
| ]
| },
| {
| type: 'number',
| field: 'interval',
| label: '间隔(s)',
| initval: setting.interval || 5,
| min: 1,
| max: 1000,
| precision: 0,
| required: true
| },
| {
| type: 'radio',
| field: 'tabLabel',
| label: '标签栏',
| initval: setting.tabLabel || 'show',
| required: false,
| options: [
| {value: 'show', label: '显示'},
| {value: 'hide', label: '隐藏'},
| ]
| },
| {
| type: 'cascader',
| field: 'supModule',
| label: '上级组件',
| initval: setting.supModule || [],
| tooltip: '标签组可以选择上级组件,填入禁用字段,用于控制标签隐藏。',
| help: '用于控制标签页隐藏。',
| required: false,
| allowClear: true,
| options: modules,
| controlFields: [
| {field: 'controlField', notNull: true},
| ],
| },
| {
| type: 'text',
| field: 'controlField',
| label: '禁用字段',
| initval: setting.controlField || '',
| tooltip: '用于控制标签隐藏的字段,在标签中填入隐藏标记。',
| required: true,
| },
| {
| type: 'text',
| field: 'selectField',
| label: '选中字段',
| initval: setting.selectField || '',
| tooltip: '用于控制标签页初始化选中,在标签中填入选中标记,注:数据源于url参数。',
| required: false
| },
| {
| type: 'color',
| field: 'backgroundColor',
| label: '背景(标题栏)',
| initval: setting.backgroundColor || 'transparent',
| required: false
| },
| {
| type: 'radio',
| field: 'permission',
| label: '权限验证',
| initval: setting.permission || 'false',
| required: false,
| options: [
| {value: 'true', label: '启用'},
| {value: 'false', label: '禁用'},
| ],
| forbid: !appType
| },
| {
| type: 'multiselect',
| field: 'blacklist',
| label: '黑名单',
| initval: setting.blacklist || [],
| required: false,
| options: roleList,
| forbid: !!appType
| },
| ]
|
| return tabForm
| }
|
|