Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace ExtendInterface

自助仪表盘二次开发接口对象

version

10.0.0

since

10.0.0 在二次开发创建运行的过程中,调用了二次开发接口,系统在初始化过程中,调用用户定义的二次接口 提供接口对应接口对象

Index 目录

Type aliases 类型

DashboardToolbarItem

DashboardToolbarItem: { action: () => void; content: string; icon: string; id: string }

自助仪表盘工具栏按钮对象

Type declaration 类型声明

  • action: () => void

    点击事件回调

      • (): void
      • Returns 返回值 void

  • content: string

    按钮名称

  • icon: string

    字体图标iconfont的class

    sx-icon-back icon-16

    iconfont详细介绍查看官方文档 https://www.iconfont.cn/help/index

  • id: string

    可选值Custom

FlexMenuItem

FlexMenuItem: { color: string; handler: () => void; icon: string; id: string; label: string }

仪表盘菜单按钮对象

Type declaration 类型声明

  • color: string

    颜色,css格式颜色字符串

    #fff #ff0000 rgb(255,255,0) rgba(255,255,255,1)

  • handler: () => void

    点击事件回调

      • (): void
      • Returns 返回值 void

  • icon: string

    字体图标iconfont的class

    sx-icon-back icon-16

    iconfont详细介绍查看官方文档 https://www.iconfont.cn/help/index

  • id: string

    按钮的标识

  • label: string

    按钮名称

PortletMenuItem

PortletMenuItem: { group: string; handler: () => void; id: string; label: string; order: number }

仪表盘组件菜单按钮对象

Type declaration 类型声明

  • group: string

    可选值 'layout free' 布局方式

  • handler: () => void

    点击事件回调

      • (): void
      • Returns 返回值 void

  • id: string

    按钮标识

  • label: string

    按钮名称

  • order: number

    按钮摆放顺序 越小越靠前

PortletToolBarItem

PortletToolBarItem: { handler: () => void; icon: string; id: string; isEmit: boolean; show: boolean; title: string }

仪表盘组件工具栏按钮对象

Type declaration 类型声明

  • handler: () => void

    点击事件回调

      • (): void
      • Returns 返回值 void

  • icon: string

    字体图标iconfont的class

    sx-icon-back icon-16

    iconfont详细介绍查看官方文档 https://www.iconfont.cn/help/index

  • id: string

    按钮标识

  • isEmit: boolean

    是否触发事件

  • show: boolean

    是否展示按钮

  • title: string

    按钮名称