89dafd4886
## 改动内容 - 新增邀请提现审核页,并与其他提现共用审核组件 - 完善筛选、状态统计、详情、邀请用户信息、风险提示和时间线 - 按订单状态展示微信转账单号和真实失败原因 - 支持高风险标记、取消标记和备注维护 - 优化用户管理及提现列表的列宽、固定操作列和横向滚动 - 移除提现实名、账本校验和人工处理超时订单入口 ## 验证 - npm run build:通过 - npx tsc --noEmit:通过 ## 说明 - 本地设计记录与 mock 数据未提交 --------- Co-authored-by: guke <guke@wonderable.ai> Co-authored-by: linkeyu <798648091@qq.com> Reviewed-on: #75 Co-authored-by: linkeyu <linkeyu@wonderable.ai> Co-committed-by: linkeyu <linkeyu@wonderable.ai>
27 lines
544 B
TypeScript
27 lines
544 B
TypeScript
'use client';
|
|
|
|
import { useEffect } from 'react';
|
|
import { getToken } from '@/lib/auth';
|
|
|
|
export default function Home() {
|
|
useEffect(() => {
|
|
window.location.replace(getToken() ? '/dashboard' : '/login');
|
|
}, []);
|
|
|
|
return (
|
|
<main
|
|
style={{
|
|
minHeight: '100vh',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
background: '#f0f2f5',
|
|
color: '#595959',
|
|
fontFamily: 'system-ui, sans-serif',
|
|
}}
|
|
>
|
|
正在进入运营后台…
|
|
</main>
|
|
);
|
|
}
|