config.ts
890 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
43
import { FormSchema } from '/@/components/Table';
import { ref } from 'vue';
export const isWhereType = ref(null);
export const formSchema: FormSchema[] = [
{
field: 'default',
component: 'Select',
label: '报警严重程度:',
colProps: {
span: 17,
},
componentProps() {
return {
options: [
{
value: 'CRITICAL',
label: '危险',
},
{
value: 'MAJOR',
label: '重要',
},
{
value: 'MINOR',
label: '次要',
},
{
value: 'WARNING',
label: '警告',
},
{
value: 'INDETERMINATE',
label: '不确定',
},
],
onChange: (v) => {
isWhereType.value = v ? v : 'CRITICAL';
},
};
},
},
];