Sign in

简柏林 / thingskit-scada · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-scada
  • src
  • enums
  • modeEnum.ts
  • perf: 重构组态
    06a645b4
    ww authored
    2023-10-31 09:21:38 +0800  
    Browse Files »
modeEnum.ts 367 Bytes
Raw Blame History Permalink
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
export enum ModeEnum {
  TOOLTIP = 'TOOLTIP',
  EDIT = 'EDIT',
  PREVIEW = 'PREVIEW',
}

export enum PageModeEnum {
  /**
   * @description 设计模式
   */
  DESIGN = 'design',

  /**
   * @description 预览模式
   */
  LIGHTBOX = 'lightbox',

  /**
   * @description 分享模式
   */
  SHARE = 'share',
}

export enum PlatformEnum {
  PHONE = 0,
  PC = 1,
}