feat: 更新设置和组件,增强用户通知功能, 修复用户订单记录渲染

- 在 Setting_SendEmail 接口中新增 receiveOrder 字段,支持积分礼物兑换通知。
- 优化 PointOrderCard 组件,处理用户信息时增加安全性。
- 更新 ViewerLayout 组件,异步获取用户数据逻辑简化。
- 在 SettingsManageView 中新增积分礼物兑换邮件通知选项。
- 增强 PointSettings 组件,添加通知设置保存功能。
- 更新 QuestionBoxView 组件样式,提升视觉效果。
This commit is contained in:
2025-04-25 09:27:22 +08:00
parent 07948e6777
commit e48b3df236
6 changed files with 57 additions and 6 deletions

View File

@@ -116,12 +116,12 @@ const orderColumn: DataTableColumns<ResponsePointOrder2UserModel | ResponsePoint
text: true,
type: 'primary',
tag: 'a',
href: 'https://space.bilibili.com/' + row.customer.userId + '',
href: 'https://space.bilibili.com/' + row.customer?.userId + '',
target: '_blank',
},
{ default: () => row.customer.name },
{ default: () => row.customer?.name || '未知用户' },
),
default: () => row.customer.userId,
default: () => row.customer?.userId || '未知ID',
})
},
},