沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
提交 | 用户 | 时间
314507 1 import { DiyComponent } from '@/components/DiyEditor/util'
H 2
3 /** 弹窗广告属性 */
4 export interface PopoverProperty {
5   list: PopoverItemProperty[]
6 }
7
8 export interface PopoverItemProperty {
9   // 图片地址
10   imgUrl: string
11   // 跳转连接
12   url: string
13   // 显示类型:仅显示一次、每次启动都会显示
14   showType: 'once' | 'always'
15 }
16
17 // 定义组件
18 export const component = {
19   id: 'Popover',
20   name: '弹窗广告',
21   icon: 'carbon:popup',
22   position: 'fixed',
23   property: {
24     list: [{ showType: 'once' }]
25   }
26 } as DiyComponent<PopoverProperty>