1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
|
| /** 公告栏属性 */
| export interface NoticeBarProperty {
| // 图标地址
| iconUrl: string
| // 公告内容列表
| contents: NoticeContentProperty[]
| // 背景颜色
| backgroundColor: string
| // 文字颜色
| textColor: string
| // 组件样式
| style: ComponentStyle
| }
|
| /** 内容属性 */
| export interface NoticeContentProperty {
| // 内容文字
| text: string
| // 链接地址
| url: string
| }
|
| // 定义组件
| export const component = {
| id: 'NoticeBar',
| name: '公告栏',
| icon: 'ep:bell',
| property: {
| iconUrl: 'http://xxxx/static/images/xinjian.png',
| contents: [
| {
| text: '',
| url: ''
| }
| ],
| backgroundColor: '#fff',
| textColor: '#333',
| style: {
| bgType: 'color',
| bgColor: '#fff',
| marginBottom: 8
| } as ComponentStyle
| }
| } as DiyComponent<NoticeBarProperty>
|
|