index.js
484 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* 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
};