// 1=Android、2=IOS export function formatIOS(type){ const result = { 'android':1, 'ios':2, } return result[type]; } // 紧急程度 1-紧急 2-急 3-一般 export function formatLevel(type){ const result = { 1:'紧急', 2:'急', 3:'一般', } return result[type]; }