feat(admin): 添加实名审核管理页面及提现审核功能

- 新增实名审核管理页面,支持审核通过和驳回操作
- 实现审核记录的分页查询和状态展示
- 添加身份证照片预览功能
- 集成审核状态变更的通知推送
- 在经销商首页添加实名审核入口
- 用户提交实名认证后自动发送审核提醒给管理员
- 经销商提现申请时发送提现审核提醒
- 提现成功后发送到账通知给申请人
- 更新API基础URL配置
- 修复企业认证选项显示问题
- 优化审核流程用户体验
This commit is contained in:
2025-11-20 17:54:09 +08:00
parent d9cd206da8
commit c67b2d4863
9 changed files with 413 additions and 6 deletions

View File

@@ -271,6 +271,18 @@ const DealerIndex: React.FC = () => {
)
}
{
(dealerUser?.userId == 33658 || dealerUser?.userId == 33677) && (
<Grid.Item text={'实名审核'} onClick={() => navigateToPage('/admin/userVerify/index')}>
<View className="text-center">
<View className="w-12 h-12 bg-red-50 rounded-xl flex items-center justify-center mx-auto mb-2">
<People color="#10b981" size="20"/>
</View>
</View>
</Grid.Item>
)
}
</Grid>
{/* 第二行功能 */}