dataease-dm/frontend/src/components/canvas/custom-component/component-list.js

158 lines
2.9 KiB
JavaScript
Raw Normal View History

2021-03-25 19:16:32 +08:00
// 公共样式
export const commonStyle = {
rotate: 0,
opacity: 1
}
export const commonAttr = {
animations: [],
events: {},
groupStyle: {}, // 当一个组件成为 Group 的子组件时使用
isLock: false // 是否锁定组件
}
export const assistList = [
{
id: '10001',
component: 'v-text',
type: 'v-text',
label: '文字',
icon: 'iconfont icon-text',
defaultClass: 'text-filter'
},
{
id: '10004',
component: 'rect-shape',
type: 'rect-shape',
label: '矩形',
icon: 'iconfont icon-juxing',
defaultClass: 'text-filter'
}
]
export const pictureList = [
{
id: '20001',
2021-06-21 15:33:10 +08:00
component: 'picture-add',
type: 'picture-add',
label: '拖拽上传',
icon: 'iconfont icon-picture',
defaultClass: 'text-filter'
}
]
2021-03-25 19:16:32 +08:00
// 编辑器左侧组件列表
const list = [
{
2021-03-26 11:37:32 +08:00
id: '10001',
2021-03-25 19:16:32 +08:00
component: 'v-text',
label: '文字',
2021-06-21 12:39:24 +08:00
propValue: '双击输入文字',
2021-03-25 19:16:32 +08:00
icon: 'wenben',
type: 'v-text',
2021-03-25 19:16:32 +08:00
style: {
2021-06-21 12:39:24 +08:00
width: 300,
height: 100,
fontSize: 18,
2021-03-25 19:16:32 +08:00
fontWeight: 500,
lineHeight: '',
letterSpacing: 0,
textAlign: '',
2021-06-21 12:39:24 +08:00
color: '#000000'
2021-03-25 19:16:32 +08:00
}
},
{
2021-03-26 11:37:32 +08:00
id: '10002',
2021-03-25 19:16:32 +08:00
component: 'v-button',
label: '按钮',
propValue: '按钮',
icon: 'button',
type: 'v-button',
2021-03-25 19:16:32 +08:00
style: {
width: 100,
height: 34,
borderWidth: '',
borderColor: '',
borderRadius: '',
fontSize: 14,
fontWeight: 500,
lineHeight: '',
letterSpacing: 0,
textAlign: '',
color: '',
backgroundColor: ''
}
},
{
2021-03-26 11:37:32 +08:00
id: '10003',
2021-03-25 19:16:32 +08:00
component: 'Picture',
label: '图片',
icon: 'tupian',
type: 'Picture',
2021-03-30 15:38:32 +08:00
propValue: require('@/components/canvas/assets/title.jpg'),
2021-03-25 19:16:32 +08:00
style: {
width: 300,
height: 200,
borderRadius: ''
}
},
{
2021-03-26 11:37:32 +08:00
id: '10003-1',
component: 'Picture',
label: '背景-科技1',
icon: 'tupian',
type: 'Picture',
2021-03-30 15:38:32 +08:00
propValue: require('@/components/canvas/assets/bg-kj-1.jpg'),
2021-03-26 11:37:32 +08:00
style: {
width: 600,
height: 300,
borderRadius: ''
}
},
{
id: '10004',
2021-03-25 19:16:32 +08:00
component: 'rect-shape',
label: '矩形',
propValue: '',
2021-03-25 19:16:32 +08:00
icon: 'juxing',
type: 'rect-shape',
2021-03-25 19:16:32 +08:00
style: {
width: 200,
height: 200,
borderColor: '#000',
borderWidth: 1,
backgroundColor: '',
2021-06-21 12:39:24 +08:00
borderStyle: 'solid'
2021-03-25 19:16:32 +08:00
}
},
{
2021-03-26 11:37:32 +08:00
id: '10005',
2021-06-21 14:00:03 +08:00
component: 'user-view',
2021-03-25 19:16:32 +08:00
label: '用户视图',
propValue: '',
icon: 'juxing',
type: 'view',
style: {
width: 200,
height: 300,
borderRadius: ''
2021-03-25 19:16:32 +08:00
}
2021-06-21 15:33:10 +08:00
},
{
id: '20001',
component: 'picture-add',
type: 'picture-add',
label: '拖拽上传',
icon: 'iconfont icon-picture',
defaultClass: 'text-filter'
2021-03-25 19:16:32 +08:00
}
]
for (let i = 0, len = list.length; i < len; i++) {
const item = list[i]
item.style = { ...commonStyle, ...item.style }
list[i] = { ...commonAttr, ...item }
}
export default list