Logo

GitLab

Sign in

xlyErp / xlyUmi

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • xlyUmi
  • src
  • components
  • Common
  • WorkOrderSystem
  • WorkOrderSystemConfig
  • index.js
  • 1.提交闪电分支
    48ab0774
    Min authored
    2025-07-28 11:00:09 +0800  
    Browse Code »
index.js 284 Bytes
Edit Raw Blame History
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
/* eslint-disable */

// 优先级下拉数据
const priorityOption = [
  {
    label: "严重",
    value: 1
  },
  {
    label: "紧急",
    value: 2
  },
  {
    label: "一般",
    value: 3
  },
  {
    label: "优化",
    value: 4
  }
];

export default {
  priorityOption
};