|
@@ -2,7 +2,9 @@ const male = 'https://minio.citupro.com/dev/menduner/11.png'
|
|
|
const female = 'https://minio.citupro.com/dev/menduner/7.png'
|
|
|
|
|
|
// 根据性别返回默认头像
|
|
|
-export const getUserAvatar = (avatar, sex) => {
|
|
|
+// isChatSystem: 系统消息
|
|
|
+export const getUserAvatar = (avatar, sex, isChatSystem) => {
|
|
|
+ if (isChatSystem) return 'https://minio.menduner.com/dev/1e6893918ef378ca280360078dfe74ade10b27101c89865261824b46de7d34a6.png'
|
|
|
if (avatar) return avatar
|
|
|
if (!sex) return female
|
|
|
if (sex === '1') return male
|