index.js 484 Bytes
/* eslint-disable */

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

// 是否bug下拉数据
const sBugOption = [
  // {
  //   label: "",
  //   value: ""
  // },
  {
    label: "需求",
    value: "0"
  },
  {
    label: "BUG",
    value: "1"
  }
];

export default {
  priorityOption,
  sBugOption
};