鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
H 2
3 /** 营销文章属性 */
4 export interface PromotionArticleProperty {
5   // 文章编号
6   id: number
7   // 组件样式
8   style: ComponentStyle
9 }
10
11 // 定义组件
12 export const component = {
13   id: 'PromotionArticle',
14   name: '营销文章',
15   icon: 'ph:article-medium',
16   property: {
17     style: {
18       bgType: 'color',
19       bgColor: '',
20       marginLeft: 8,
21       marginRight: 8,
22       marginBottom: 8
23     } as ComponentStyle
24   }
25 } as DiyComponent<PromotionArticleProperty>