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
80
81
82
| import { DiyComponent } from '@/components/DiyEditor/util'
|
| /** 顶部导航栏属性 */
| export interface NavigationBarProperty {
| // 背景类型
| bgType: 'color' | 'img'
| // 背景颜色
| bgColor: string
| // 图片链接
| bgImg: string
| // 样式类型:默认 | 沉浸式
| styleType: 'normal' | 'inner'
| // 常驻显示
| alwaysShow: boolean
| // 小程序单元格列表
| mpCells: NavigationBarCellProperty[]
| // 其它平台单元格列表
| otherCells: NavigationBarCellProperty[]
| // 本地变量
| _local: {
| // 预览顶部导航(小程序)
| previewMp: boolean
| // 预览顶部导航(非小程序)
| previewOther: boolean
| }
| }
|
| /** 顶部导航栏 - 单元格 属性 */
| export interface NavigationBarCellProperty {
| // 类型:文字 | 图片 | 搜索框
| type: 'text' | 'image' | 'search'
| // 宽度
| width: number
| // 高度
| height: number
| // 顶部位置
| top: number
| // 左侧位置
| left: number
| // 文字内容
| text: string
| // 文字颜色
| textColor: string
| // 图片地址
| imgUrl: string
| // 图片链接
| url: string
| // 搜索框:提示文字
| placeholder: string
| // 搜索框:边框圆角半径
| borderRadius: number
| }
|
| // 定义组件
| export const component = {
| id: 'NavigationBar',
| name: '顶部导航栏',
| icon: 'tabler:layout-navbar',
| property: {
| bgType: 'color',
| bgColor: '#fff',
| bgImg: '',
| styleType: 'normal',
| alwaysShow: true,
| mpCells: [
| {
| type: 'text',
| textColor: '#111111'
| }
| ],
| otherCells: [
| {
| type: 'text',
| textColor: '#111111'
| }
| ],
| _local: {
| previewMp: true,
| previewOther: false
| }
| }
| } as DiyComponent<NavigationBarProperty>
|
|