Browse Source

fix: 调整推送平台的字段

wyf 1 year ago
parent
commit
92933c5397
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/views/message/alarm-config/types.ts

+ 3 - 3
src/views/message/alarm-config/types.ts

@@ -11,13 +11,13 @@ export const ALARMLEVEL_LIST = [
 ];
 
 export enum AlarmChannel {
-  platform = 1,
-  lanxin = 2,
+  lanxin = 1,
+  platform = 2,
 }
 
 export const ALARMCHANNEL_LIST = [
-  { label: '平台', value: AlarmChannel.platform },
   { label: '蓝信', value: AlarmChannel.lanxin },
+  { label: '平台', value: AlarmChannel.platform },
 ];
 
 export enum AlarmPhase {