Sign in

cnlive_project / cnlive-community-web-vue · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • cnlive-community-web-vue
  • src
  • views
  • repair
  • config.ts
  • ts类型补充
    54f99a8b
    杨泽宇 authored
    2022-01-28 16:50:30 +0800  
    Browse Code »
config.ts 309 Bytes
Edit 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
import type { EnumArrayItem } from "@/@type/module/basic"

/**
 * 工单状态
 */
export const status: EnumArrayItem[] = [
  {
    label: '未处理',
    value: 0
  },
  {
    label: '处理中',
    value: 1
  },
  {
    label: '已失效',
    value: 2
  },
  {
    label: '已完成',
    value: 3
  },
]