@lingxiteam/theme-utils 0.1.3

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 (128) hide show
  1. package/README.md +83 -0
  2. package/dist/config/Button.d.ts +101 -0
  3. package/dist/config/Button.js +265 -0
  4. package/dist/config/Card.d.ts +137 -0
  5. package/dist/config/Card.js +149 -0
  6. package/dist/config/Cascader.d.ts +179 -0
  7. package/dist/config/Cascader.js +208 -0
  8. package/dist/config/Checkbox.d.ts +161 -0
  9. package/dist/config/Checkbox.js +161 -0
  10. package/dist/config/CheckboxGroup.d.ts +176 -0
  11. package/dist/config/CheckboxGroup.js +184 -0
  12. package/dist/config/Collapse.d.ts +170 -0
  13. package/dist/config/Collapse.js +308 -0
  14. package/dist/config/Container.d.ts +268 -0
  15. package/dist/config/Container.js +288 -0
  16. package/dist/config/DatePicker.d.ts +163 -0
  17. package/dist/config/DatePicker.js +163 -0
  18. package/dist/config/Description.d.ts +97 -0
  19. package/dist/config/Description.js +117 -0
  20. package/dist/config/Divider.d.ts +61 -0
  21. package/dist/config/Divider.js +61 -0
  22. package/dist/config/Form.d.ts +2700 -0
  23. package/dist/config/Form.js +1214 -0
  24. package/dist/config/Icon.d.ts +51 -0
  25. package/dist/config/Icon.js +51 -0
  26. package/dist/config/Input.d.ts +150 -0
  27. package/dist/config/Input.js +150 -0
  28. package/dist/config/InputNumber.d.ts +145 -0
  29. package/dist/config/InputNumber.js +145 -0
  30. package/dist/config/Link.d.ts +123 -0
  31. package/dist/config/Link.js +115 -0
  32. package/dist/config/MultipleSelect.d.ts +158 -0
  33. package/dist/config/MultipleSelect.js +166 -0
  34. package/dist/config/Radio.d.ts +171 -0
  35. package/dist/config/Radio.js +179 -0
  36. package/dist/config/RangePicker.d.ts +165 -0
  37. package/dist/config/RangePicker.js +165 -0
  38. package/dist/config/Select.d.ts +173 -0
  39. package/dist/config/Select.js +181 -0
  40. package/dist/config/StdUpload.d.ts +204 -0
  41. package/dist/config/StdUpload.js +208 -0
  42. package/dist/config/Switch.d.ts +137 -0
  43. package/dist/config/Switch.js +137 -0
  44. package/dist/config/Table.d.ts +398 -0
  45. package/dist/config/Table.js +527 -0
  46. package/dist/config/Tabs.d.ts +170 -0
  47. package/dist/config/Tabs.js +229 -0
  48. package/dist/config/Tag.d.ts +114 -0
  49. package/dist/config/Tag.js +314 -0
  50. package/dist/config/Text.d.ts +30 -0
  51. package/dist/config/Text.js +30 -0
  52. package/dist/config/TextArea.d.ts +142 -0
  53. package/dist/config/TextArea.js +142 -0
  54. package/dist/config/TimePicker.d.ts +164 -0
  55. package/dist/config/TimePicker.js +164 -0
  56. package/dist/config/Tree.d.ts +131 -0
  57. package/dist/config/Tree.js +175 -0
  58. package/dist/config/TreeSelect.d.ts +180 -0
  59. package/dist/config/TreeSelect.js +196 -0
  60. package/dist/css.d.ts +6 -0
  61. package/dist/css.js +121 -0
  62. package/dist/demo.d.ts +5 -0
  63. package/dist/demo.js +79 -0
  64. package/dist/h5config/Accordion.d.ts +338 -0
  65. package/dist/h5config/Accordion.js +445 -0
  66. package/dist/h5config/Button.d.ts +134 -0
  67. package/dist/h5config/Button.js +245 -0
  68. package/dist/h5config/Card.d.ts +268 -0
  69. package/dist/h5config/Card.js +425 -0
  70. package/dist/h5config/DAddressPicker.d.ts +196 -0
  71. package/dist/h5config/DAddressPicker.js +226 -0
  72. package/dist/h5config/DCheckbox.d.ts +203 -0
  73. package/dist/h5config/DCheckbox.js +237 -0
  74. package/dist/h5config/DForm.d.ts +1607 -0
  75. package/dist/h5config/DForm.js +897 -0
  76. package/dist/h5config/DMultiplePicker.d.ts +197 -0
  77. package/dist/h5config/DMultiplePicker.js +231 -0
  78. package/dist/h5config/DformDate.d.ts +199 -0
  79. package/dist/h5config/DformDate.js +229 -0
  80. package/dist/h5config/DformFile.d.ts +186 -0
  81. package/dist/h5config/DformFile.js +198 -0
  82. package/dist/h5config/DformImagePicker.d.ts +138 -0
  83. package/dist/h5config/DformImagePicker.js +150 -0
  84. package/dist/h5config/DformInput.d.ts +188 -0
  85. package/dist/h5config/DformInput.js +218 -0
  86. package/dist/h5config/DformInputNumber.d.ts +173 -0
  87. package/dist/h5config/DformInputNumber.js +203 -0
  88. package/dist/h5config/DformPicker.d.ts +198 -0
  89. package/dist/h5config/DformPicker.js +232 -0
  90. package/dist/h5config/DformRadio.d.ts +203 -0
  91. package/dist/h5config/DformRadio.js +237 -0
  92. package/dist/h5config/DformRangePicker.d.ts +199 -0
  93. package/dist/h5config/DformRangePicker.js +229 -0
  94. package/dist/h5config/DformSelect.d.ts +208 -0
  95. package/dist/h5config/DformSelect.js +260 -0
  96. package/dist/h5config/DformSwitch.d.ts +146 -0
  97. package/dist/h5config/DformSwitch.js +158 -0
  98. package/dist/h5config/DformTextArea.d.ts +184 -0
  99. package/dist/h5config/DformTextArea.js +214 -0
  100. package/dist/h5config/Divider.d.ts +53 -0
  101. package/dist/h5config/Divider.js +90 -0
  102. package/dist/h5config/FilterItems.d.ts +142 -0
  103. package/dist/h5config/FilterItems.js +181 -0
  104. package/dist/h5config/Grid.d.ts +117 -0
  105. package/dist/h5config/Grid.js +154 -0
  106. package/dist/h5config/Icon.d.ts +54 -0
  107. package/dist/h5config/Icon.js +54 -0
  108. package/dist/h5config/Link.d.ts +47 -0
  109. package/dist/h5config/Link.js +47 -0
  110. package/dist/h5config/LoadMore.d.ts +527 -0
  111. package/dist/h5config/LoadMore.js +940 -0
  112. package/dist/h5config/NoticeBarPlus.d.ts +104 -0
  113. package/dist/h5config/NoticeBarPlus.js +129 -0
  114. package/dist/h5config/SearchView.d.ts +128 -0
  115. package/dist/h5config/SearchView.js +163 -0
  116. package/dist/h5config/StaticTabs.d.ts +133 -0
  117. package/dist/h5config/StaticTabs.js +173 -0
  118. package/dist/h5config/Table.d.ts +182 -0
  119. package/dist/h5config/Table.js +566 -0
  120. package/dist/index.d.ts +4 -0
  121. package/dist/index.js +4 -0
  122. package/dist/lx-mobile.d.ts +9 -0
  123. package/dist/lx-mobile.js +153 -0
  124. package/dist/lx.d.ts +6 -0
  125. package/dist/lx.js +112 -0
  126. package/dist/utils.d.ts +12 -0
  127. package/dist/utils.js +65 -0
  128. package/package.json +38 -0
@@ -0,0 +1,171 @@
1
+ export declare const Radio: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelLineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelFontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ textColor: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ fontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ radioSize: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ };
49
+ radioBorderColor: {
50
+ type: string;
51
+ label: string;
52
+ groupsName: string;
53
+ };
54
+ radioBgColor: {
55
+ type: string;
56
+ label: string;
57
+ groupsName: string;
58
+ };
59
+ radioSeBorderColor: {
60
+ type: string;
61
+ label: string;
62
+ groupsName: string;
63
+ };
64
+ radioSeBgColor: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ };
69
+ };
70
+ groupsName: string;
71
+ icon: string;
72
+ title: string;
73
+ defaultValue: {
74
+ radioSize: string;
75
+ radioBorderColor: string;
76
+ radioBgColor: string;
77
+ radioSeBorderColor: string;
78
+ radioSeBgColor: string;
79
+ }[];
80
+ tpl: string;
81
+ components: {
82
+ id: string;
83
+ label: string;
84
+ compName: string;
85
+ type: string;
86
+ compType: number;
87
+ compLib: string;
88
+ props: {
89
+ name: string;
90
+ colSpan: number;
91
+ labelCol: number;
92
+ wrapperCol: number;
93
+ layout: string;
94
+ colon: boolean;
95
+ labelAlign: string;
96
+ basicStatus: number;
97
+ colSpace: number;
98
+ rowSpace: number;
99
+ formCode: string;
100
+ };
101
+ style: {
102
+ padding: string;
103
+ };
104
+ isContainer: boolean;
105
+ isBusiObjContainer: boolean;
106
+ cmdgroup: string[];
107
+ platform: string;
108
+ icon: string;
109
+ description: string;
110
+ image: string;
111
+ groupsName: string;
112
+ engineApi: string[];
113
+ setEvents: never[];
114
+ isLabelDropBoxChild: boolean;
115
+ components: {
116
+ id: string;
117
+ label: string;
118
+ compName: string;
119
+ type: string;
120
+ compType: number;
121
+ compLib: string;
122
+ props: {
123
+ name: string;
124
+ radioType: string;
125
+ optionMarginRight: number;
126
+ labelCol: number;
127
+ wrapperCol: number;
128
+ basicStatus: number;
129
+ titleTip: string;
130
+ tipSize: string;
131
+ tipWidth: string;
132
+ tipHeight: string;
133
+ required: boolean;
134
+ formItemIndex: number;
135
+ fieldName: string;
136
+ staticData: {
137
+ data: {
138
+ id: string;
139
+ label: string;
140
+ value: string;
141
+ }[];
142
+ type: string;
143
+ };
144
+ options: {
145
+ id: string;
146
+ label: string;
147
+ value: string;
148
+ }[];
149
+ };
150
+ style: {};
151
+ isContainer: boolean;
152
+ isBusiObjContainer: boolean;
153
+ cmdgroup: string[];
154
+ platform: string;
155
+ fieldProps: {
156
+ trigger: string;
157
+ valuePropName: string;
158
+ };
159
+ icon: string;
160
+ description: string;
161
+ image: string;
162
+ groupsName: string;
163
+ isInlineBlock: boolean;
164
+ setEvents: never[];
165
+ isLabelDropBoxChild: boolean;
166
+ components: never[];
167
+ path: string[];
168
+ }[];
169
+ path: string[];
170
+ }[];
171
+ };
@@ -0,0 +1,179 @@
1
+ export var Radio = {
2
+ type: 'Radio',
3
+ variable: {
4
+ labelTextColor: {
5
+ type: 'color',
6
+ label: '标签文本颜色',
7
+ groupsName: '文字',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'Form'
11
+ },
12
+ labelLineHeight: {
13
+ type: 'px',
14
+ label: '标签文本行高',
15
+ groupsName: '文字',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'Form'
19
+ },
20
+ labelFontSize: {
21
+ type: 'px',
22
+ label: '标签文本尺寸',
23
+ groupsName: '文字',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Form'
27
+ },
28
+ textColor: {
29
+ type: 'color',
30
+ label: '文本颜色',
31
+ groupsName: '文字',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Form'
35
+ },
36
+ fontSize: {
37
+ type: 'px',
38
+ label: '文本尺寸',
39
+ groupsName: '文字',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Form'
43
+ },
44
+ radioSize: {
45
+ type: 'px',
46
+ label: '图标尺寸',
47
+ groupsName: '文字'
48
+ },
49
+ radioBorderColor: {
50
+ type: 'color',
51
+ label: '默认边框颜色',
52
+ groupsName: '边框'
53
+ },
54
+ radioBgColor: {
55
+ type: 'color',
56
+ label: '默认背景颜色',
57
+ groupsName: '边框'
58
+ },
59
+ radioSeBorderColor: {
60
+ type: 'color',
61
+ label: '选中边框颜色',
62
+ groupsName: '边框'
63
+ },
64
+ radioSeBgColor: {
65
+ type: 'color',
66
+ label: '选中背景颜色',
67
+ groupsName: '边框'
68
+ }
69
+ },
70
+ groupsName: '数据录入',
71
+ icon: 'icon-ico-comp-radio',
72
+ title: '单选组',
73
+ defaultValue: [{
74
+ radioSize: '16px',
75
+ radioBorderColor: '#e5e5e5',
76
+ radioBgColor: '#fff',
77
+ radioSeBorderColor: '#47e',
78
+ radioSeBgColor: '#fff'
79
+ }],
80
+ tpl: ".pcfactory-radio-inner{\n width: radioSize;\n height: radioSize;\n border-color: radioBorderColor;\n background: radioBgColor;\n }\n .pcfactory-radio-checked .pcfactory-radio-inner{\n border-color: radioSeBorderColor;\n background: radioSeBgColor;\n }\n .pcfactory-radio-input:focus+.pcfactory-radio-inner{\n border-color: radioSeBorderColor;\n }\n .pcfactory-radio-wrapper:hover .pcfactory-radio{\n border-color: radioSeBorderColor;\n}\n .pcfactory-radio:hover .pcfactory-radio-inner {\n border-color: radioSeBorderColor;\n }\n .pcfactory-form-item input[type=checkbox]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-form-item input[type=radio]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-radio-checked .pcfactory-radio-inner:after{\n background: radioSeBorderColor;\n margin-left:0px;\n margin-top:0px;\n top:-1%;\n left:-3%;\n border-radius: radioSize;\n width: radioSize;\n height: radioSize;\n }",
81
+ components: [{
82
+ id: 'Form_180373',
83
+ label: '表单',
84
+ compName: 'Form',
85
+ type: 'Form',
86
+ compType: 0,
87
+ compLib: 'comm',
88
+ props: {
89
+ name: '表单',
90
+ colSpan: 12,
91
+ labelCol: 8,
92
+ wrapperCol: 16,
93
+ layout: 'vertical',
94
+ colon: true,
95
+ labelAlign: 'right',
96
+ basicStatus: 1,
97
+ colSpace: 16,
98
+ rowSpace: 16,
99
+ formCode: 'Code_Form_180373'
100
+ },
101
+ style: {
102
+ padding: '0px 0px 0px 0px'
103
+ },
104
+ isContainer: true,
105
+ isBusiObjContainer: true,
106
+ cmdgroup: ['basic'],
107
+ platform: 'pc',
108
+ icon: 'Form',
109
+ description: '',
110
+ image: '',
111
+ groupsName: '容器',
112
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
113
+ setEvents: [],
114
+ isLabelDropBoxChild: false,
115
+ components: [{
116
+ id: 'Radio_371201',
117
+ label: '单选组',
118
+ compName: 'Radio',
119
+ type: 'Radio',
120
+ compType: 2,
121
+ compLib: 'comm',
122
+ props: {
123
+ name: '单选组',
124
+ radioType: 'Radio',
125
+ optionMarginRight: 0,
126
+ labelCol: 8,
127
+ wrapperCol: 16,
128
+ basicStatus: 1,
129
+ titleTip: 'notext',
130
+ tipSize: 'default',
131
+ tipWidth: '240px',
132
+ tipHeight: 'auto',
133
+ required: false,
134
+ formItemIndex: 3,
135
+ fieldName: 'dsgc',
136
+ staticData: {
137
+ data: [{
138
+ id: '363107',
139
+ label: '属性名',
140
+ value: 'zx'
141
+ }, {
142
+ id: '3028122',
143
+ label: '属性名11',
144
+ value: 'asds'
145
+ }],
146
+ type: 'custom'
147
+ },
148
+ options: [{
149
+ id: '363107',
150
+ label: '属性名',
151
+ value: 'zx'
152
+ }, {
153
+ id: '3028122',
154
+ label: '属性名11',
155
+ value: 'asds'
156
+ }]
157
+ },
158
+ style: {},
159
+ isContainer: false,
160
+ isBusiObjContainer: false,
161
+ cmdgroup: ['basic'],
162
+ platform: 'pc',
163
+ fieldProps: {
164
+ trigger: 'onChange',
165
+ valuePropName: 'value'
166
+ },
167
+ icon: 'Radio',
168
+ description: '',
169
+ image: '',
170
+ groupsName: '数据录入',
171
+ isInlineBlock: true,
172
+ setEvents: [],
173
+ isLabelDropBoxChild: false,
174
+ components: [],
175
+ path: ['998509', 'Form_180373']
176
+ }],
177
+ path: ['998509']
178
+ }]
179
+ };
@@ -0,0 +1,165 @@
1
+ export declare const RangePicker: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelLineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelFontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ textColor: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ fontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ itemBorderColor: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ desc: string;
49
+ canEdit: boolean;
50
+ extendsKey: string;
51
+ };
52
+ itemBorderRadius: {
53
+ type: string;
54
+ label: string;
55
+ groupsName: string;
56
+ desc: string;
57
+ canEdit: boolean;
58
+ extendsKey: string;
59
+ };
60
+ iconFontSize: {
61
+ type: string;
62
+ label: string;
63
+ groupsName: string;
64
+ };
65
+ iconColor: {
66
+ type: string;
67
+ label: string;
68
+ groupsName: string;
69
+ };
70
+ lineColor: {
71
+ type: string;
72
+ label: string;
73
+ groupsName: string;
74
+ };
75
+ };
76
+ groupsName: string;
77
+ icon: string;
78
+ title: string;
79
+ defaultValue: {
80
+ iconFontSize: string;
81
+ iconColor: string;
82
+ lineColor: string;
83
+ }[];
84
+ tpl: string;
85
+ components: {
86
+ id: string;
87
+ label: string;
88
+ compName: string;
89
+ type: string;
90
+ compType: number;
91
+ compLib: string;
92
+ props: {
93
+ name: string;
94
+ colSpan: number;
95
+ labelCol: number;
96
+ wrapperCol: number;
97
+ layout: string;
98
+ colon: boolean;
99
+ labelAlign: string;
100
+ basicStatus: number;
101
+ colSpace: number;
102
+ rowSpace: number;
103
+ formCode: string;
104
+ };
105
+ style: {
106
+ padding: string;
107
+ };
108
+ isContainer: boolean;
109
+ isBusiObjContainer: boolean;
110
+ cmdgroup: string[];
111
+ platform: string;
112
+ icon: string;
113
+ description: string;
114
+ image: string;
115
+ groupsName: string;
116
+ engineApi: string[];
117
+ setEvents: never[];
118
+ isLabelDropBoxChild: boolean;
119
+ components: {
120
+ id: string;
121
+ label: string;
122
+ compName: string;
123
+ type: string;
124
+ compType: number;
125
+ compLib: string;
126
+ props: {
127
+ name: string;
128
+ timeMode: string;
129
+ separator: string;
130
+ size: string;
131
+ labelCol: number;
132
+ wrapperCol: number;
133
+ basicStatus: number;
134
+ titleTip: string;
135
+ tipSize: string;
136
+ tipWidth: string;
137
+ tipHeight: string;
138
+ required: boolean;
139
+ format: string;
140
+ pickerType: string;
141
+ allowClear: boolean;
142
+ formItemIndex: number;
143
+ fieldName: string;
144
+ };
145
+ style: {};
146
+ isContainer: boolean;
147
+ isBusiObjContainer: boolean;
148
+ cmdgroup: string[];
149
+ platform: string;
150
+ fieldProps: {
151
+ trigger: string;
152
+ valuePropName: string;
153
+ };
154
+ icon: string;
155
+ description: string;
156
+ image: string;
157
+ groupsName: string;
158
+ setEvents: never[];
159
+ isLabelDropBoxChild: boolean;
160
+ components: never[];
161
+ path: string[];
162
+ }[];
163
+ path: string[];
164
+ }[];
165
+ };
@@ -0,0 +1,165 @@
1
+ export var RangePicker = {
2
+ type: 'RangePicker',
3
+ variable: {
4
+ labelTextColor: {
5
+ type: 'color',
6
+ label: '标签文本颜色',
7
+ groupsName: '文字',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'Form'
11
+ },
12
+ labelLineHeight: {
13
+ type: 'px',
14
+ label: '标签文本行高',
15
+ groupsName: '文字',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'Form'
19
+ },
20
+ labelFontSize: {
21
+ type: 'px',
22
+ label: '标签文本尺寸',
23
+ groupsName: '文字',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Form'
27
+ },
28
+ textColor: {
29
+ type: 'color',
30
+ label: '文本颜色',
31
+ groupsName: '文字',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Form'
35
+ },
36
+ fontSize: {
37
+ type: 'px',
38
+ label: '文本尺寸',
39
+ groupsName: '文字',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Form'
43
+ },
44
+ itemBorderColor: {
45
+ type: 'color',
46
+ label: '边框颜色',
47
+ groupsName: '边框',
48
+ desc: '继承自表单,此处不可编辑',
49
+ canEdit: false,
50
+ extendsKey: 'Form'
51
+ },
52
+ itemBorderRadius: {
53
+ type: 'px',
54
+ label: '边框圆角',
55
+ groupsName: '边框',
56
+ desc: '继承自表单,此处不可编辑',
57
+ canEdit: false,
58
+ extendsKey: 'Form'
59
+ },
60
+ iconFontSize: {
61
+ type: 'px',
62
+ label: '时间图标尺寸',
63
+ groupsName: '文字'
64
+ },
65
+ iconColor: {
66
+ type: 'color',
67
+ label: '时间图标颜色',
68
+ groupsName: '文字'
69
+ },
70
+ lineColor: {
71
+ type: 'color',
72
+ label: '时间连接线颜色',
73
+ groupsName: '文字'
74
+ }
75
+ },
76
+ groupsName: '数据录入',
77
+ icon: 'icon-ico-comp-rangepicker',
78
+ title: '时间段选择',
79
+ defaultValue: [{
80
+ iconFontSize: '14px',
81
+ iconColor: '#0085D0',
82
+ lineColor: '#1c242e'
83
+ }],
84
+ tpl: ".ued-datePicker-wrap .pcfactory-picker-suffix{\n color: iconColor;\n width: iconFontSize;\n height: iconFontSize;\n .anticon>svg{\n width: iconFontSize;\n height: iconFontSize;\n }\n }\n .ued-datePicker-wrap .pcfactory-picker-clear{\n color: iconColor;\n width: iconFontSize;\n height: iconFontSize;\n .anticon>svg{\n width: iconFontSize;\n height: iconFontSize;\n }\n }\n .ued-datePicker-wrap .pcfactory-picker-range-separator{\n color: lineColor;\n }",
85
+ components: [{
86
+ id: 'Form_180373',
87
+ label: '表单',
88
+ compName: 'Form',
89
+ type: 'Form',
90
+ compType: 0,
91
+ compLib: 'comm',
92
+ props: {
93
+ name: '表单',
94
+ colSpan: 12,
95
+ labelCol: 8,
96
+ wrapperCol: 16,
97
+ layout: 'vertical',
98
+ colon: true,
99
+ labelAlign: 'right',
100
+ basicStatus: 1,
101
+ colSpace: 16,
102
+ rowSpace: 16,
103
+ formCode: 'Code_Form_180373'
104
+ },
105
+ style: {
106
+ padding: '0px 0px 0px 0px'
107
+ },
108
+ isContainer: true,
109
+ isBusiObjContainer: true,
110
+ cmdgroup: ['basic'],
111
+ platform: 'pc',
112
+ icon: 'Form',
113
+ description: '',
114
+ image: '',
115
+ groupsName: '容器',
116
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
117
+ setEvents: [],
118
+ isLabelDropBoxChild: false,
119
+ components: [{
120
+ id: 'RangePicker_842094',
121
+ label: '时间段选择',
122
+ compName: 'RangePicker',
123
+ type: 'RangePicker',
124
+ compType: 2,
125
+ compLib: 'comm',
126
+ props: {
127
+ name: '时间段选择',
128
+ timeMode: 'date',
129
+ separator: '~',
130
+ size: 'default',
131
+ labelCol: 8,
132
+ wrapperCol: 16,
133
+ basicStatus: 1,
134
+ titleTip: 'notext',
135
+ tipSize: 'default',
136
+ tipWidth: '240px',
137
+ tipHeight: 'auto',
138
+ required: false,
139
+ format: 'YYYY-MM-DD',
140
+ pickerType: 'RangePicker',
141
+ allowClear: true,
142
+ formItemIndex: 12,
143
+ fieldName: 'vfdcx'
144
+ },
145
+ style: {},
146
+ isContainer: false,
147
+ isBusiObjContainer: false,
148
+ cmdgroup: ['basic'],
149
+ platform: 'pc',
150
+ fieldProps: {
151
+ trigger: 'onChange',
152
+ valuePropName: 'value'
153
+ },
154
+ icon: 'RangePicker',
155
+ description: '',
156
+ image: '',
157
+ groupsName: '数据录入',
158
+ setEvents: [],
159
+ isLabelDropBoxChild: false,
160
+ components: [],
161
+ path: ['998509', 'Form_180373']
162
+ }],
163
+ path: ['998509']
164
+ }]
165
+ };