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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
| import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
| import { cloneDeep } from 'lodash-es'
|
| /** 宫格导航属性 */
| export interface MenuGridProperty {
| // 列数
| column: number
| // 导航菜单列表
| list: MenuGridItemProperty[]
| // 组件样式
| style: ComponentStyle
| }
|
| /** 宫格导航项目属性 */
| export interface MenuGridItemProperty {
| // 图标链接
| iconUrl: string
| // 标题
| title: string
| // 标题颜色
| titleColor: string
| // 副标题
| subtitle: string
| // 副标题颜色
| subtitleColor: string
| // 链接
| url: string
| // 角标
| badge: {
| // 是否显示
| show: boolean
| // 角标文字
| text: string
| // 角标文字颜色
| textColor: string
| // 角标背景颜色
| bgColor: string
| }
| }
|
| export const EMPTY_MENU_GRID_ITEM_PROPERTY = {
| title: '标题',
| titleColor: '#333',
| subtitle: '副标题',
| subtitleColor: '#bbb',
| badge: {
| show: false,
| textColor: '#fff',
| bgColor: '#FF6000'
| }
| } as MenuGridItemProperty
|
| // 定义组件
| export const component = {
| id: 'MenuGrid',
| name: '宫格导航',
| icon: 'bi:grid-3x3-gap',
| property: {
| column: 3,
| list: [cloneDeep(EMPTY_MENU_GRID_ITEM_PROPERTY)],
| style: {
| bgType: 'color',
| bgColor: '#fff',
| marginBottom: 8,
| marginLeft: 8,
| marginRight: 8,
| padding: 8,
| paddingTop: 8,
| paddingRight: 8,
| paddingBottom: 8,
| paddingLeft: 8,
| borderRadius: 8,
| borderTopLeftRadius: 8,
| borderTopRightRadius: 8,
| borderBottomRightRadius: 8,
| borderBottomLeftRadius: 8
| } as ComponentStyle
| }
| } as DiyComponent<MenuGridProperty>
|
|