feat(@vben/web-antd): 重构个人中心用户资料与社交绑定页面

- 用户资料页改为卡片式布局,头像居中展示角色标签
- 社交绑定页替换表格为卡片列表,支持已绑定详情展开
- 新增微信小程序社交类型枚举,小程序端绑定入口置灰提示
- 头像上传兼容 server/client 两种模式的返回值
- 社交绑定列表增加类型安全(SocialBindItem interface)
- 隐藏暂不支持的钉钉和企业微信绑定入口

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
lzh
2026-03-18 15:19:56 +08:00
parent 666f25404d
commit bea5a82825
3 changed files with 292 additions and 217 deletions

View File

@@ -56,4 +56,10 @@ export const SystemUserSocialTypeEnum = {
source: 'wechat_enterprise',
img: 'https://s1.ax1x.com/2022/05/22/OzMrzn.png',
},
WECHAT_MINI_APP: {
title: '微信小程序',
type: 34,
source: 'wechat_mini_app',
img: 'https://res.wx.qq.com/a/wx_fed/assets/res/NTI4MWU5.ico',
},
};