...
元素名称枚举 | |||||||||||||||||||||||||
import ElementTypes from "@fe-plugin/components/lib/constants/element-types"; | |||||||||||||||||||||||||
元素名称 | 元素私有配置 | ||||||||||||||||||||||||
按钮 ElementTypes.BTN |
| ||||||||||||||||||||||||
文本 ElementTypes.TEXT |
| ||||||||||||||||||||||||
图片 ElementTypes.IMAGE |
| ||||||||||||||||||||||||
形状 ElementTypes.SHAPE |
| ||||||||||||||||||||||||
弹窗 ElementTypes.DIAGLOG | 暂无私有属性 | ||||||||||||||||||||||||
表单文件上上传 ElementTypes.FILEUPLOADER |
| ||||||||||||||||||||||||
表单文本域 ElementTypes.TEXTAREA |
| ||||||||||||||||||||||||
表单单选 ElementTypes.CHOOSE |
| ||||||||||||||||||||||||
表单输入框 ElementTypes.INPUT |
| ||||||||||||||||||||||||
表单提交 ElementTypes.SUBMIT |
| ||||||||||||||||||||||||
表单下拉框 ElementTypes.SELECT |
|
2、element 配置示例
代码块 | ||||
---|---|---|---|---|
| ||||
//包含一个按钮 和 一个内置页的组件 const defaultSetting file = { name: "testCmp", title: "测试组件", inlinePages:[ { name: "INLINE_PAGE_A", title: "这是内置页", style: {}, cover: "https://static.h5no1.com/rp/plugin/assets/a19e096f-89b8-4f15-8187-09db7a3c86f0", } ], elements:[ { app/default-setting/element.js import * as ELEMENT from "constants/element-keys"; import * as INLINE from "constants/inline-pages-names"; import ElementTypes from "@fe-plugin/components/lib/constants/element-types"; //导出一个包含按钮元素、图片元素的配置 export default [ { key: "ELEMENT.BTN_A", name: "按钮这是组件中的按钮", type: "btn"ElementTypes.BTN, label: "确定非常好", style: { position: "absolute", left: 42, top: 353, width: 235, height: 39, backgroundColor: "rgba(224,47,36,1)", borderRadius: 20, fontSize: 15, fontWeight: 600, color: "rgba(255,255,255,1)", }, parentName: "组件名称", }, { key: parentNameELEMENT.IMAGE_A, name: "testCmp测试图片", } type: ElementTypes.IMAGE, ], cover:"https://static.h5no1.com/rp/plugin/assets/85becc30-ccb4-41b2-ad75-9bfa9447e587", style: { text: "测试图片", style: { position: "absolute", left: 75, top: 123, width: 293169, height: 408 145, }, backgroundColorparentName: "#fff组件名称", }, hasComponentSetting: true, };src: "https://static.h5no1.com/rp/plugin/assets/484a0326-0091-433c-8133-d5989b7b588d", }, ] |
1、ComponentDefaultSetting 默认设置
...