Commit 2f638393f8d02803e12b7b63560724fa70a8544c

Authored by xp.Huang
2 parents f10a58e9 2d55894e

Merge branch 'local_dev_ft' into 'main'

pref:地理位置筛选告警状态改为int类型

See merge request huang/yun-teng-iot-front!464
@@ -54,7 +54,7 @@ export const formSchema: FormSchema[] = [ @@ -54,7 +54,7 @@ export const formSchema: FormSchema[] = [
54 componentProps: { 54 componentProps: {
55 size: 'small', 55 size: 'small',
56 options: [ 56 options: [
57 - { label: '全部', value: '' }, 57 + { label: '全部', value: null },
58 { label: '待激活', value: 'INACTIVE' }, 58 { label: '待激活', value: 'INACTIVE' },
59 { label: '在线', value: 'ONLINE' }, 59 { label: '在线', value: 'ONLINE' },
60 { label: '离线', value: 'OFFLINE' }, 60 { label: '离线', value: 'OFFLINE' },
@@ -69,8 +69,8 @@ export const formSchema: FormSchema[] = [ @@ -69,8 +69,8 @@ export const formSchema: FormSchema[] = [
69 componentProps: { 69 componentProps: {
70 size: 'small', 70 size: 'small',
71 options: [ 71 options: [
72 - { label: '是', value: '1' },  
73 - { label: '否', value: '0' }, 72 + { label: '是', value: 1 },
  73 + { label: '否', value: 0 },
74 ], 74 ],
75 }, 75 },
76 }, 76 },