配置列表

This commit is contained in:
zoujiandong
2023-10-16 09:34:33 +08:00
parent 69c2f8c24c
commit e9e8c5d69e
3 changed files with 68 additions and 45 deletions
+10 -1
View File
@@ -88,4 +88,13 @@ export const formatRelation=(val)=>{
}else{
return ''
}
}
};
export const formatMultipoint=(val)=>{
//医生多点执业认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败)
let data={0:'未认证',1:'认证通过', 2:'审核中', 3:'认证失败'}
if(val|| val==0){
return data[val]
}else{
return ''
}
};