Quellcode durchsuchen

feat: 去掉部门

luoyali vor 1 Jahr
Ursprung
Commit
8a02a97c4b
1 geänderte Dateien mit 635 neuen und 641 gelöschten Zeilen
  1. 635 641
      src/components/packages/formEditor/componentsConfig.js

+ 635 - 641
src/components/packages/formEditor/componentsConfig.js

@@ -1,645 +1,639 @@
 export const globalConfig = {
-  isSync: true,
-  pc: {
-    size: 'default',
-    labelPosition: 'left',
-    completeButton: {
-      text: '提交',
-      color: '',
-      backgroundColor: ''
-    }
-  },
-  mobile: {
-    labelPosition: 'left',
-    completeButton: {
-      text: '提交',
-      color: '',
-      backgroundColor: ''
-    }
-  }
+	isSync: true,
+	pc: {
+		size: 'default',
+		labelPosition: 'left',
+		completeButton: {
+			text: '提交',
+			color: '',
+			backgroundColor: ''
+		}
+	},
+	mobile: {
+		labelPosition: 'left',
+		completeButton: {
+			text: '提交',
+			color: '',
+			backgroundColor: ''
+		}
+	}
 }
 export const fieldsConfig = [
-  {
-    name: '预设字段',
-    id: 'defaultField',
-    list: [
-      {
-        type: 'input',
-        label: '邮箱',
-        icon: 'email',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          renderType: 2,
-          disabled: false,
-          showPassword: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false
-        }
-      },
-      {
-        type: 'input',
-        label: '手机号',
-        icon: 'cellphone',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          renderType: 4,
-          disabled: false,
-          showPassword: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false
-        }
-      },
-      {
-        type: 'input',
-        label: '网址',
-        icon: 'url',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          renderType: 5,
-          disabled: false,
-          showPassword: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false
-        }
-      },
-      {
-        type: 'region',
-        label: '省市区',
-        icon: 'location',
-        key: '',
-        id: '',
-        options: {
-          placeholder: '',
-          required: false,
-          isShowLabel: true,
-          labelWidth: 100,
-          defaultValue: '',
-          selectType: 3,
-          filterable: true
-        }
-      },
-      {
-        type: 'input',
-        label: '身份证号',
-        icon: 'ID',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          renderType: 3,
-          disabled: false,
-          showPassword: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false
-        }
-      },
-      {
-        type: 'select',
-        label: '员工',
-        icon: 'employee',
-        key: '',
-        id: '',
-        options: {
-          dataKey: '',
-          filterable: true,
-          multiple: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false,
-          clearable: true,
-          required: false,
-          renderType: 2
-        }
-      },
-      {
-        type: 'select',
-        label: '角色',
-        icon: 'dropdown0',
-        key: '',
-        id: '',
-        options: {
-          dataKey: '',
-          filterable: true,
-          multiple: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false,
-          clearable: true,
-          required: false,
-          renderType: 3
-        }
-      },
-      {
-        type: 'select',
-        label: '部门',
-        icon: 'dropdown0',
-        key: '',
-        id: '',
-        options: {
-          dataKey: '',
-          filterable: true,
-          multiple: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false,
-          clearable: true,
-          required: false,
-          renderType: 4
-        }
-      }
-    ]
-  },
-  {
-    name: '基础字段',
-    id: 'field',
-    list: [
-      {
-        type: 'input',
-        label: '单行文本',
-        icon: 'input',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          isShowWordLimit: false,
-          renderType: 1,
-          disabled: false,
-          showPassword: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          min: null,
-          max: null
-        }
-      },
-      {
-        type: 'textarea',
-        label: '多行文本',
-        icon: 'textarea',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          isShowWordLimit: false,
-          rows: 6,
-          defaultValue: '',
-          placeholder: '',
-          disabled: false,
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          min: null,
-          max: null
-        }
-      },
-      {
-        type: 'number',
-        label: '数字',
-        icon: 'numbers',
-        key: '',
-        id: '',
-        options: {
-          min: 0,
-          max: null,
-          step: 1,
-          precision: 0,
-          disabled: false,
-          controls: true,
-          controlsPosition: true,
-          defaultValue: null,
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          minlength: null,
-          maxlength: null
-        }
-      },
-      {
-        type: 'radio',
-        label: '单选框',
-        icon: 'radio',
-        key: '',
-        id: '',
-        options: {
-          dataKey: '',
-          displayStyle: 'block',
-          defaultValue: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false,
-          required: false
-        }
-      },
-      {
-        type: 'checkbox',
-        label: '复选框',
-        icon: 'checkbox',
-        key: '',
-        id: '',
-        options: {
-          dataKey: '',
-          displayStyle: 'block',
-          defaultValue: [],
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          disabled: false
-        }
-      },
-      {
-        type: 'select',
-        label: '下拉框',
-        icon: 'dropdown0',
-        key: '',
-        id: '',
-        options: {
-          dataKey: '',
-          filterable: true,
-          multiple: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false,
-          clearable: true,
-          required: false,
-          renderType: 1
-        }
-      },
-      {
-        type: 'time',
-        label: '时间',
-        icon: 'time',
-        key: '',
-        id: '',
-        options: {
-          clearable: true,
-          format: 'HH:mm:ss',
-          valueFormat: 'HH:mm:ss',
-          defaultValue: null,
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          disabled: false
-        }
-      },
-      {
-        type: 'date',
-        label: '日期',
-        icon: 'calendar',
-        key: '',
-        id: '',
-        options: {
-          isShowWordLimit: false,
-          clearable: true,
-          format: 'YYYY-MM-DD',
-          defaultValue: null,
-          startTime: null,
-          endTime: null,
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          type: 'date',
-          required: false,
-          disabled: false
-        }
-      },
-      {
-        type: 'rate',
-        label: '评分',
-        icon: 'rating',
-        key: '',
-        id: '',
-        options: {
-          max: 5,
-          allowHalf: false,
-          defaultValue: 0,
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false
-        }
-      },
-      // {
-      //   type: 'color',
-      //   label: '颜色',
-      //   icon: 'color-filling',
-      //   key: '',
-      //   id: '',
-      //   options: {
-      //     showAlpha: false,
-      //     defaultValue: '',
-      //     placeholder: '',
-      //     labelWidth: 100,
-      //     isShowLabel: true,
-      //     required: false,
-      //     requiredHint: '',
-      //     validation: '',
-      //     validationHint: '',
-      //     minlength: null,
-      //     maxlength: null
-      //   }
-      // },
-      {
-        type: 'switch',
-        label: '开关',
-        icon: 'switch',
-        key: '',
-        id: '',
-        options: {
-          defaultValue: true,
-          labelWidth: 100,
-          isShowLabel: true,
-          disabled: false
-        }
-      },
-      {
-        type: 'slider',
-        label: '滑块',
-        icon: 'slider',
-        key: '',
-        id: '',
-        options: {
-          min: 0,
-          max: 100,
-          step: 1,
-          defaultValue: 0,
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          disabled: false
-        }
-      },
-      {
-        type: 'html',
-        label: '富文本编辑器',
-        icon: 'html',
-        key: '',
-        id: '',
-        options: {
-          defaultValue: '',
-          placeholder: '',
-          action: '',
-          size: 1,
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          disabled: false
-        }
-      },
-      {
-        type: 'cascader',
-        label: '级联框',
-        icon: 'cascader',
-        key: '',
-        id: '',
-        options: {
-          filterable: true,
-          multiple: false,
-          checkStrictly: false,
-          defaultValue: '',
-          placeholder: '',
-          labelWidth: 100,
-          isShowLabel: true,
-          required: false,
-          disabled: false,
-          clearable: true
-        }
-      },
-      {
-        type: 'uploadfile',
-        label: '上传文件',
-        icon: 'upload',
-        key: '',
-        id: '',
-        options: {
-          isShowLabel: true,
-          labelWidth: 100,
-          defaultValue: [],
-          multiple: false,
-          action: '',
-          limit: 1,
-          size: 5,
-          accept: '.png,.jpg',
-          disabled: false,
-          required: false
-        }
-      },
-      {
-        type: 'signature',
-        label: '签名',
-        icon: 'signature',
-        key: '',
-        id: '',
-        options: {
-          required: false,
-          isShowLabel: true,
-          labelWidth: 100,
-          defaultValue: '',
-          penColor: 'rgb(0, 0, 0)',
-          action: '',
-          disabled: false
-        }
-      }
-    ]
-  },
-  {
-    name: '容器',
-    id: 'container',
-    list: [
-      {
-        type: 'grid',
-        label: 'grid',
-        icon: 'grid',
-        id: '',
-        columns: [
-          {
-            id: '',
-            options: {
-              span: 6,
-              offset: 0,
-              pull: 0,
-              push: 0
-            },
-            type: 'col',
-            list: [
-            ]
-          },
-          {
-            id: '',
-            options: {
-              span: 6,
-              offset: 0,
-              pull: 0,
-              push: 0
-            },
-            type: 'col',
-            list: [
-            ]
-          },
-          {
-            id: '',
-            options: {
-              span: 6,
-              offset: 0,
-              pull: 0,
-              push: 0
-            },
-            type: 'col',
-            list: [
-            ]
-          }
-        ],
-        options: {
-          gutter: 0,
-          justify: 'space-around',
-          align: 'top'
-        }
-      },
-      {
-        type: 'table',
-        label: '表格布局',
-        icon: 'tableStokeP2',
-        id: '',
-        rows: [
-          {
-            type: 'tr',
-            columns: [
-              {
-                type: 'td',
-                options: {
-                  colspan: 1,
-                  rowspan: 1,
-                  isMerged: false
-                },
-                list: [],
-                style: {}
-              },
-              {
-                type: 'td',
-                options: {
-                  colspan: 1,
-                  rowspan: 1,
-                  isMerged: false
-                },
-                list: [],
-                style: {}
-              }
-            ]
-          },
-          {
-            type: 'tr',
-            columns: [
-              {
-                type: 'td',
-                options: {
-                  colspan: 1,
-                  rowspan: 1,
-                  isMerged: false
-                },
-                list: [],
-                style: {}
-              },
-              {
-                type: 'td',
-                options: {
-                  colspan: 1,
-                  rowspan: 1,
-                  isMerged: false
-                },
-                list: [],
-                style: {}
-              }
-            ]
-          }
-        ],
-        options: {
-          width: 100,
-          widthType: '%'
-        }
-      },
-      {
-        type: 'tabs',
-        label: '标签页',
-        icon: 'label',
-        id: '',
-        columns: [
-        ],
-        options: {
-          type: '',
-          tabPosition: 'top',
-          align: 'top',
-          hidden: false
-        }
-      },
-      {
-        type: 'collapse',
-        label: '折叠面板',
-        icon: 'collapse',
-        id: '',
-        columns: [],
-        options: {
-          defaultValue: [],
-          accordion: false
-        }
-      },
-      {
-        type: 'divider',
-        label: '分割线',
-        icon: 'divider',
-        key: '',
-        id: '',
-        options: {
-          contentPosition: 'center',
-          filterable: true,
-          defaultValue: 'divider',
-          labelWidth: 100,
-          labelHidden: true,
-          required: false
-        }
-      },
-      {
-        type: 'subform',
-        label: '子表单',
-        icon: 'subform',
-        id: '',
-        list: [
-          []
-        ],
-        options: {
-          defaultValue: [],
-          isShowLabel: true,
-          required: false,
-          disabled: false
-        }
-      }
-    ]
-  }
+	{
+		name: '预设字段',
+		id: 'defaultField',
+		list: [
+			{
+				type: 'input',
+				label: '邮箱',
+				icon: 'email',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					renderType: 2,
+					disabled: false,
+					showPassword: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false
+				}
+			},
+			{
+				type: 'input',
+				label: '手机号',
+				icon: 'cellphone',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					renderType: 4,
+					disabled: false,
+					showPassword: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false
+				}
+			},
+			{
+				type: 'input',
+				label: '网址',
+				icon: 'url',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					renderType: 5,
+					disabled: false,
+					showPassword: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false
+				}
+			},
+			{
+				type: 'region',
+				label: '省市区',
+				icon: 'location',
+				key: '',
+				id: '',
+				options: {
+					placeholder: '',
+					required: false,
+					isShowLabel: true,
+					labelWidth: 100,
+					defaultValue: '',
+					selectType: 3,
+					filterable: true
+				}
+			},
+			{
+				type: 'input',
+				label: '身份证号',
+				icon: 'ID',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					renderType: 3,
+					disabled: false,
+					showPassword: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false
+				}
+			},
+			{
+				type: 'select',
+				label: '员工',
+				icon: 'employee',
+				key: '',
+				id: '',
+				options: {
+					dataKey: '',
+					filterable: true,
+					multiple: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					disabled: false,
+					clearable: true,
+					required: false,
+					renderType: 2
+				}
+			},
+			{
+				type: 'select',
+				label: '角色',
+				icon: 'dropdown0',
+				key: '',
+				id: '',
+				options: {
+					dataKey: '',
+					filterable: true,
+					multiple: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					disabled: false,
+					clearable: true,
+					required: false,
+					renderType: 3
+				}
+			} // ,
+			// {
+			// 	type: 'select',
+			// 	label: '部门',
+			// 	icon: 'dropdown0',
+			// 	key: '',
+			// 	id: '',
+			// 	options: {
+			// 		dataKey: '',
+			// 		filterable: true,
+			// 		multiple: false,
+			// 		defaultValue: '',
+			// 		placeholder: '',
+			// 		labelWidth: 100,
+			// 		isShowLabel: true,
+			// 		disabled: false,
+			// 		clearable: true,
+			// 		required: false,
+			// 		renderType: 4
+			// 	}
+			// }
+		]
+	},
+	{
+		name: '基础字段',
+		id: 'field',
+		list: [
+			{
+				type: 'input',
+				label: '单行文本',
+				icon: 'input',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					isShowWordLimit: false,
+					renderType: 1,
+					disabled: false,
+					showPassword: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					min: null,
+					max: null
+				}
+			},
+			{
+				type: 'textarea',
+				label: '多行文本',
+				icon: 'textarea',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					isShowWordLimit: false,
+					rows: 6,
+					defaultValue: '',
+					placeholder: '',
+					disabled: false,
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					min: null,
+					max: null
+				}
+			},
+			{
+				type: 'number',
+				label: '数字',
+				icon: 'numbers',
+				key: '',
+				id: '',
+				options: {
+					min: 0,
+					max: null,
+					step: 1,
+					precision: 0,
+					disabled: false,
+					controls: true,
+					controlsPosition: true,
+					defaultValue: null,
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					minlength: null,
+					maxlength: null
+				}
+			},
+			{
+				type: 'radio',
+				label: '单选框',
+				icon: 'radio',
+				key: '',
+				id: '',
+				options: {
+					dataKey: '',
+					displayStyle: 'block',
+					defaultValue: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					disabled: false,
+					required: false
+				}
+			},
+			{
+				type: 'checkbox',
+				label: '复选框',
+				icon: 'checkbox',
+				key: '',
+				id: '',
+				options: {
+					dataKey: '',
+					displayStyle: 'block',
+					defaultValue: [],
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					disabled: false
+				}
+			},
+			{
+				type: 'select',
+				label: '下拉框',
+				icon: 'dropdown0',
+				key: '',
+				id: '',
+				options: {
+					dataKey: '',
+					filterable: true,
+					multiple: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					disabled: false,
+					clearable: true,
+					required: false,
+					renderType: 1
+				}
+			},
+			{
+				type: 'time',
+				label: '时间',
+				icon: 'time',
+				key: '',
+				id: '',
+				options: {
+					clearable: true,
+					format: 'HH:mm:ss',
+					valueFormat: 'HH:mm:ss',
+					defaultValue: null,
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					disabled: false
+				}
+			},
+			{
+				type: 'date',
+				label: '日期',
+				icon: 'calendar',
+				key: '',
+				id: '',
+				options: {
+					isShowWordLimit: false,
+					clearable: true,
+					format: 'YYYY-MM-DD',
+					defaultValue: null,
+					startTime: null,
+					endTime: null,
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					type: 'date',
+					required: false,
+					disabled: false
+				}
+			},
+			{
+				type: 'rate',
+				label: '评分',
+				icon: 'rating',
+				key: '',
+				id: '',
+				options: {
+					max: 5,
+					allowHalf: false,
+					defaultValue: 0,
+					labelWidth: 100,
+					isShowLabel: true,
+					disabled: false
+				}
+			},
+			// {
+			//   type: 'color',
+			//   label: '颜色',
+			//   icon: 'color-filling',
+			//   key: '',
+			//   id: '',
+			//   options: {
+			//     showAlpha: false,
+			//     defaultValue: '',
+			//     placeholder: '',
+			//     labelWidth: 100,
+			//     isShowLabel: true,
+			//     required: false,
+			//     requiredHint: '',
+			//     validation: '',
+			//     validationHint: '',
+			//     minlength: null,
+			//     maxlength: null
+			//   }
+			// },
+			{
+				type: 'switch',
+				label: '开关',
+				icon: 'switch',
+				key: '',
+				id: '',
+				options: {
+					defaultValue: true,
+					labelWidth: 100,
+					isShowLabel: true,
+					disabled: false
+				}
+			},
+			{
+				type: 'slider',
+				label: '滑块',
+				icon: 'slider',
+				key: '',
+				id: '',
+				options: {
+					min: 0,
+					max: 100,
+					step: 1,
+					defaultValue: 0,
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					disabled: false
+				}
+			},
+			{
+				type: 'html',
+				label: '富文本编辑器',
+				icon: 'html',
+				key: '',
+				id: '',
+				options: {
+					defaultValue: '',
+					placeholder: '',
+					action: '',
+					size: 1,
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					disabled: false
+				}
+			},
+			{
+				type: 'cascader',
+				label: '级联框',
+				icon: 'cascader',
+				key: '',
+				id: '',
+				options: {
+					filterable: true,
+					multiple: false,
+					checkStrictly: false,
+					defaultValue: '',
+					placeholder: '',
+					labelWidth: 100,
+					isShowLabel: true,
+					required: false,
+					disabled: false,
+					clearable: true
+				}
+			},
+			{
+				type: 'uploadfile',
+				label: '上传文件',
+				icon: 'upload',
+				key: '',
+				id: '',
+				options: {
+					isShowLabel: true,
+					labelWidth: 100,
+					defaultValue: [],
+					multiple: false,
+					action: '',
+					limit: 1,
+					size: 5,
+					accept: '.png,.jpg',
+					disabled: false,
+					required: false
+				}
+			},
+			{
+				type: 'signature',
+				label: '签名',
+				icon: 'signature',
+				key: '',
+				id: '',
+				options: {
+					required: false,
+					isShowLabel: true,
+					labelWidth: 100,
+					defaultValue: '',
+					penColor: 'rgb(0, 0, 0)',
+					action: '',
+					disabled: false
+				}
+			}
+		]
+	},
+	{
+		name: '容器',
+		id: 'container',
+		list: [
+			{
+				type: 'grid',
+				label: 'grid',
+				icon: 'grid',
+				id: '',
+				columns: [
+					{
+						id: '',
+						options: {
+							span: 6,
+							offset: 0,
+							pull: 0,
+							push: 0
+						},
+						type: 'col',
+						list: []
+					},
+					{
+						id: '',
+						options: {
+							span: 6,
+							offset: 0,
+							pull: 0,
+							push: 0
+						},
+						type: 'col',
+						list: []
+					},
+					{
+						id: '',
+						options: {
+							span: 6,
+							offset: 0,
+							pull: 0,
+							push: 0
+						},
+						type: 'col',
+						list: []
+					}
+				],
+				options: {
+					gutter: 0,
+					justify: 'space-around',
+					align: 'top'
+				}
+			},
+			{
+				type: 'table',
+				label: '表格布局',
+				icon: 'tableStokeP2',
+				id: '',
+				rows: [
+					{
+						type: 'tr',
+						columns: [
+							{
+								type: 'td',
+								options: {
+									colspan: 1,
+									rowspan: 1,
+									isMerged: false
+								},
+								list: [],
+								style: {}
+							},
+							{
+								type: 'td',
+								options: {
+									colspan: 1,
+									rowspan: 1,
+									isMerged: false
+								},
+								list: [],
+								style: {}
+							}
+						]
+					},
+					{
+						type: 'tr',
+						columns: [
+							{
+								type: 'td',
+								options: {
+									colspan: 1,
+									rowspan: 1,
+									isMerged: false
+								},
+								list: [],
+								style: {}
+							},
+							{
+								type: 'td',
+								options: {
+									colspan: 1,
+									rowspan: 1,
+									isMerged: false
+								},
+								list: [],
+								style: {}
+							}
+						]
+					}
+				],
+				options: {
+					width: 100,
+					widthType: '%'
+				}
+			},
+			{
+				type: 'tabs',
+				label: '标签页',
+				icon: 'label',
+				id: '',
+				columns: [],
+				options: {
+					type: '',
+					tabPosition: 'top',
+					align: 'top',
+					hidden: false
+				}
+			},
+			{
+				type: 'collapse',
+				label: '折叠面板',
+				icon: 'collapse',
+				id: '',
+				columns: [],
+				options: {
+					defaultValue: [],
+					accordion: false
+				}
+			},
+			{
+				type: 'divider',
+				label: '分割线',
+				icon: 'divider',
+				key: '',
+				id: '',
+				options: {
+					contentPosition: 'center',
+					filterable: true,
+					defaultValue: 'divider',
+					labelWidth: 100,
+					labelHidden: true,
+					required: false
+				}
+			},
+			{
+				type: 'subform',
+				label: '子表单',
+				icon: 'subform',
+				id: '',
+				list: [[]],
+				options: {
+					defaultValue: [],
+					isShowLabel: true,
+					required: false,
+					disabled: false
+				}
+			}
+		]
+	}
 ]