鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
H 2
3 /** 用户卡片属性 */
4 export interface UserCardProperty {
5   // 组件样式
6   style: ComponentStyle
7 }
8
9 // 定义组件
10 export const component = {
11   id: 'UserCard',
12   name: '用户卡片',
13   icon: 'mdi:user-card-details',
14   property: {
15     style: {
16       bgType: 'color',
17       bgColor: '',
18       marginBottom: 8
19     } as ComponentStyle
20   }
21 } as DiyComponent<UserCardProperty>