index.js 284 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 24 25 /* eslint-disable */ // 优先级下拉数据 const priorityOption = [ { label: "严重", value: 1 }, { label: "紧急", value: 2 }, { label: "一般", value: 3 }, { label: "优化", value: 4 } ]; export default { priorityOption };