选煤厂生产管理平台前端代码
houzhongjian
2024-11-22 82c159b99ca114bc8189e681bde3b4491a81af1c
提交 | 用户 | 时间
82c159 1 import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
H 2
3 /** 用户资产属性 */
4 export interface UserWalletProperty {
5   // 组件样式
6   style: ComponentStyle
7 }
8
9 // 定义组件
10 export const component = {
11   id: 'UserWallet',
12   name: '用户资产',
13   icon: 'ep:wallet-filled',
14   property: {
15     style: {
16       bgType: 'color',
17       bgColor: '',
18       marginLeft: 8,
19       marginRight: 8,
20       marginBottom: 8
21     } as ComponentStyle
22   }
23 } as DiyComponent<UserWalletProperty>