加入签名信息显示

This commit is contained in:
liuwei
2025-06-12 09:17:55 +08:00
parent 6301a4baad
commit c798e3faa4

View File

@@ -214,7 +214,7 @@ class DashboardServer:
"avatar": user_data.get("smallHeadImgUrl", "logo.png"), # 使用小头像URL
"mobile": user_data.get("mobile", ""),
"home": f"{user_data.get('province', '')}-{user_data.get('city', '')}", # 组合省市信息
"signature": user_data.get("signature", "")
"signature": user_data.get("signature", "")[:10]
}
}
except Exception as e: