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
| export const orgList = ['organizeSelect', 'posSelect', 'userSelect', 'usersSelect', 'groupSelect', 'roleSelect'];
|
| export const systemList = ['createUser', 'createTime', 'modifyUser', 'modifyTime', 'currOrganize', 'currPosition', 'billRule'];
|
| export const layoutList = [
| 'groupTitle',
| 'divider',
| 'collapse',
| 'tab',
| 'row',
| 'card',
| 'table',
| 'link',
| 'button',
| 'text',
| 'alert',
| 'tableGrid',
| 'tableGridTr',
| 'tableGridTd',
| 'steps',
| ];
|
| // 不设置宽度
| export const noWithList = [...layoutList, 'switch', 'radio', 'checkbox', 'uploadFile', 'uploadImg', 'colorPicker', 'rate', 'qrcode', 'barcode', 'editor'];
|
| export const generalWidthOptions = ['600px', '800px', '1000px', '40%', '50%', '60%', '70%', '80%'];
|
| export const fullScreenWidthOptions = ['800px', '1000px', '1200px', '1400px', '50%', '60%', '70%', '80%', '90%', '100%'];
|
|