const switchState=state=>{
switch (state) {
case 0:
return "未通过"
break;
case 1:
return "审核中"
break;
case 2:
return "已审核"
break;
}
}