新增置顶人功能,允许在小程序首页展示特定用户信息(昵称、头像)。更新相关 API 接口以支持获取和设置置顶人,优化用户体验。调整小程序页面以动态显示置顶人信息,确保一致性和可用性。

This commit is contained in:
Alex-larget
2026-03-20 15:58:18 +08:00
parent f7e7552eb1
commit 1b87fa92f7
12 changed files with 389 additions and 30 deletions

View File

@@ -0,0 +1,6 @@
-- 链接人与事 - persons 表新增 avatar 字段
-- 有 user_id 时头像从 users 表取;无 user_id 时用本字段(管理端可编辑)
-- 执行mysql -u user -p db < soul-api/scripts/add_persons_avatar.sql
-- 若已存在则忽略错误
ALTER TABLE persons ADD COLUMN avatar VARCHAR(512) DEFAULT '' COMMENT '头像URL无user_id时使用';