沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
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
import { ComponentStyle, DiyComponent } from '@/components/DiyEditor/util'
 
/** 轮播图属性 */
export interface CarouselProperty {
  // 类型:默认 | 卡片
  type: 'default' | 'card'
  // 指示器样式:点 | 数字
  indicator: 'dot' | 'number'
  // 是否自动播放
  autoplay: boolean
  // 播放间隔
  interval: number
  // 轮播内容
  items: CarouselItemProperty[]
  // 组件样式
  style: ComponentStyle
}
// 轮播内容属性
export interface CarouselItemProperty {
  // 类型:图片 | 视频
  type: 'img' | 'video'
  // 图片链接
  imgUrl: string
  // 视频链接
  videoUrl: string
  // 跳转链接
  url: string
}
 
// 定义组件
export const component = {
  id: 'Carousel',
  name: '轮播图',
  icon: 'system-uicons:carousel',
  property: {
    type: 'default',
    indicator: 'dot',
    autoplay: false,
    interval: 3,
    items: [
      { type: 'img', imgUrl: 'https://xxxx/banner-01.jpg', videoUrl: '' },
      { type: 'img', imgUrl: 'https://xxxx/banner-02.jpg', videoUrl: '' }
    ] as CarouselItemProperty[],
    style: {
      bgType: 'color',
      bgColor: '#fff',
      marginBottom: 8
    } as ComponentStyle
  }
} as DiyComponent<CarouselProperty>