mitt.d.ts 1.3 KB

123456789101112131415161718192021
  1. // mitt 事件类型定义
  2. declare type MittType = {
  3. openSetTingsDrawer?: string; // 打开布局设置弹窗
  4. restoreDefault?: string; // 分栏布局,鼠标移入、移出数据显示
  5. setSendColumnsChildren?: string; // 分栏布局,鼠标移入、移出菜单数据传入到 navMenu 下的菜单中
  6. setSendClassicChildren?: string; // 经典布局,开启切割菜单时,菜单数据传入到 navMenu 下的菜单中
  7. getBreadcrumbIndexSetFilterRoutes?: string; // 布局设置弹窗,开启切割菜单时,菜单数据传入到 navMenu 下的菜单中
  8. layoutMobileResize?: object; // 浏览器窗口改变时,用于适配移动端界面显示
  9. openOrCloseSortable?: string; // 布局设置弹窗,开启 TagsView 拖拽
  10. openShareTagsView?: string; // 布局设置弹窗,开启 TagsView 共用
  11. onTagsViewRefreshRouterView?: any; // tagsview 刷新界面
  12. onCurrentContextmenuClick?: any; // tagsview 右键菜单每项点击时
  13. scrollTopEmit?: object; //点击分页跳转滚动到顶部
  14. clearCache?: any; //清除某个页面的缓存
  15. wsReceive?: any; //接受坐席辅助消息
  16. CircularRecord?: any; //小红点消息通知
  17. SeatState?: any; //坐席监控
  18. RestApplyPass?: any; //休息申请
  19. outboundConnect?: any; //外呼连接
  20. wsNotice: any;
  21. };