鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 import { DiyComponent } from '@/components/DiyEditor/util'
H 2
3 /** 页面设置属性 */
4 export interface PageConfigProperty {
5   // 页面描述
6   description: string
7   // 页面背景颜色
8   backgroundColor: string
9   // 页面背景图片
10   backgroundImage: string
11 }
12
13 // 定义页面组件
14 export const component = {
15   id: 'PageConfig',
16   name: '页面设置',
17   icon: 'ep:document',
18   property: {
19     description: '',
20     backgroundColor: '#f5f5f5',
21     backgroundImage: ''
22   }
23 } as DiyComponent<PageConfigProperty>