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
| import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
| import { cloneDeep } from 'lodash-es'
|
| /** 列表导航属性 */
| export interface MenuListProperty {
| // 导航菜单列表
| list: MenuListItemProperty[]
| // 组件样式
| style: ComponentStyle
| }
|
| /** 列表导航项目属性 */
| export interface MenuListItemProperty {
| // 图标链接
| iconUrl: string
| // 标题
| title: string
| // 标题颜色
| titleColor: string
| // 副标题
| subtitle: string
| // 副标题颜色
| subtitleColor: string
| // 链接
| url: string
| }
|
| export const EMPTY_MENU_LIST_ITEM_PROPERTY = {
| title: '标题',
| titleColor: '#333',
| subtitle: '副标题',
| subtitleColor: '#bbb'
| }
|
| // 定义组件
| export const component = {
| id: 'MenuList',
| name: '列表导航',
| icon: 'fa-solid:list',
| property: {
| list: [cloneDeep(EMPTY_MENU_LIST_ITEM_PROPERTY)],
| style: {
| bgType: 'color',
| bgColor: '#fff',
| marginBottom: 8
| } as ComponentStyle
| }
| } as DiyComponent<MenuListProperty>
|
|