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
| import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
|
| /** 商品卡片属性 */
| export interface CouponCardProperty {
| // 列数
| columns: number
| // 背景图
| bgImg: string
| // 文字颜色
| textColor: string
| // 按钮样式
| button: {
| // 颜色
| color: string
| // 背景颜色
| bgColor: string
| }
| // 间距
| space: number
| // 优惠券编号列表
| couponIds: number[]
| // 组件样式
| style: ComponentStyle
| }
|
| // 定义组件
| export const component = {
| id: 'CouponCard',
| name: '优惠券',
| icon: 'ep:ticket',
| property: {
| columns: 1,
| bgImg: '',
| textColor: '#E9B461',
| button: {
| color: '#434343',
| bgColor: ''
| },
| space: 0,
| couponIds: [],
| style: {
| bgType: 'color',
| bgColor: '',
| marginBottom: 8
| } as ComponentStyle
| }
| } as DiyComponent<CouponCardProperty>
|
|