|
@@ -25,6 +25,7 @@ import {
|
|
|
Button,
|
|
Button,
|
|
|
Input,
|
|
Input,
|
|
|
Badge,
|
|
Badge,
|
|
|
|
|
+ Space,
|
|
|
} from '@douyinfe/semi-ui';
|
|
} from '@douyinfe/semi-ui';
|
|
|
import { Copy, Users, BarChart2, TrendingUp, Gift, Zap } from 'lucide-react';
|
|
import { Copy, Users, BarChart2, TrendingUp, Gift, Zap } from 'lucide-react';
|
|
|
|
|
|
|
@@ -52,55 +53,77 @@ const InvitationCard = ({
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
{/* 收益展示区域 */}
|
|
{/* 收益展示区域 */}
|
|
|
- <div className='space-y-4'>
|
|
|
|
|
- {/* 主要收益卡片 - 待使用收益 */}
|
|
|
|
|
- <Card className='!rounded-xl'>
|
|
|
|
|
- <div className='flex justify-between items-center mb-3'>
|
|
|
|
|
- <div className="flex items-center">
|
|
|
|
|
- <TrendingUp size={16} className="mr-2 text-slate-600 dark:text-slate-300" />
|
|
|
|
|
- <Text strong className='text-slate-700 dark:text-slate-200'>{t('待使用收益')}</Text>
|
|
|
|
|
- </div>
|
|
|
|
|
- <Button
|
|
|
|
|
- type='primary'
|
|
|
|
|
- theme='solid'
|
|
|
|
|
- size='small'
|
|
|
|
|
- disabled={!userState?.user?.aff_quota || userState?.user?.aff_quota <= 0}
|
|
|
|
|
- onClick={() => setOpenTransfer(true)}
|
|
|
|
|
- className='!rounded-lg !bg-slate-600 hover:!bg-slate-700'
|
|
|
|
|
|
|
+ <Space vertical style={{ width: '100%' }}>
|
|
|
|
|
+ {/* 统计数据统一卡片 */}
|
|
|
|
|
+ <Card
|
|
|
|
|
+ className='!rounded-xl w-full'
|
|
|
|
|
+ cover={
|
|
|
|
|
+ <div
|
|
|
|
|
+ className="relative h-30"
|
|
|
|
|
+ style={{
|
|
|
|
|
+ '--palette-primary-darkerChannel': '0 75 80',
|
|
|
|
|
+ backgroundImage: `linear-gradient(0deg, rgba(var(--palette-primary-darkerChannel) / 80%), rgba(var(--palette-primary-darkerChannel) / 80%)), url('/cover-4.webp')`,
|
|
|
|
|
+ backgroundSize: 'cover',
|
|
|
|
|
+ backgroundPosition: 'center',
|
|
|
|
|
+ backgroundRepeat: 'no-repeat'
|
|
|
|
|
+ }}
|
|
|
>
|
|
>
|
|
|
- <Zap size={12} className="mr-1" />
|
|
|
|
|
- {t('划转到余额')}
|
|
|
|
|
- </Button>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div className='text-2xl sm:text-3xl font-bold text-slate-900 dark:text-slate-100 mb-1'>
|
|
|
|
|
- {renderQuota(userState?.user?.aff_quota || 0)}
|
|
|
|
|
- </div>
|
|
|
|
|
- </Card>
|
|
|
|
|
|
|
+ {/* 标题和按钮 */}
|
|
|
|
|
+ <div className="relative z-10 h-full flex flex-col justify-between p-4">
|
|
|
|
|
+ <div className='flex justify-between items-center'>
|
|
|
|
|
+ <Text strong style={{ color: 'white', fontSize: '16px' }}>{t('收益统计')}</Text>
|
|
|
|
|
+ <Button
|
|
|
|
|
+ type='primary'
|
|
|
|
|
+ theme='solid'
|
|
|
|
|
+ size='small'
|
|
|
|
|
+ disabled={!userState?.user?.aff_quota || userState?.user?.aff_quota <= 0}
|
|
|
|
|
+ onClick={() => setOpenTransfer(true)}
|
|
|
|
|
+ className='!rounded-lg'
|
|
|
|
|
+ >
|
|
|
|
|
+ <Zap size={12} className="mr-1" />
|
|
|
|
|
+ {t('划转到余额')}
|
|
|
|
|
+ </Button>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- {/* 统计数据网格 */}
|
|
|
|
|
- <div className='grid grid-cols-2 gap-4'>
|
|
|
|
|
- <Card className='!rounded-xl bg-slate-50 dark:bg-slate-800'>
|
|
|
|
|
- <div className='flex items-center mb-2'>
|
|
|
|
|
- <BarChart2 size={16} className='mr-2 text-slate-600 dark:text-slate-300' />
|
|
|
|
|
- <Text type='tertiary' className='text-slate-600 dark:text-slate-300'>{t('总收益')}</Text>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div className='text-xl font-semibold text-slate-900 dark:text-slate-100'>
|
|
|
|
|
- {renderQuota(userState?.user?.aff_history_quota || 0)}
|
|
|
|
|
- </div>
|
|
|
|
|
- </Card>
|
|
|
|
|
|
|
+ {/* 统计数据 */}
|
|
|
|
|
+ <div className='grid grid-cols-3 gap-6 mt-4'>
|
|
|
|
|
+ {/* 待使用收益 */}
|
|
|
|
|
+ <div className='text-center'>
|
|
|
|
|
+ <div className='text-2xl font-bold mb-2' style={{ color: 'white' }}>
|
|
|
|
|
+ {renderQuota(userState?.user?.aff_quota || 0)}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className='flex items-center justify-center text-sm'>
|
|
|
|
|
+ <TrendingUp size={14} className="mr-1" style={{ color: 'rgba(255,255,255,0.8)' }} />
|
|
|
|
|
+ <Text style={{ color: 'rgba(255,255,255,0.8)', fontSize: '12px' }}>{t('待使用收益')}</Text>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <Card className='!rounded-xl bg-slate-50 dark:bg-slate-800'>
|
|
|
|
|
- <div className='flex items-center mb-2'>
|
|
|
|
|
- <Users size={16} className='mr-2 text-slate-600 dark:text-slate-300' />
|
|
|
|
|
- <Text type='tertiary' className='text-slate-600 dark:text-slate-300'>{t('邀请人数')}</Text>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div className='text-xl font-semibold text-slate-900 dark:text-slate-100 flex items-center'>
|
|
|
|
|
- {userState?.user?.aff_count || 0} {t('人')}
|
|
|
|
|
- </div>
|
|
|
|
|
- </Card>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ {/* 总收益 */}
|
|
|
|
|
+ <div className='text-center'>
|
|
|
|
|
+ <div className='text-2xl font-bold mb-2' style={{ color: 'white' }}>
|
|
|
|
|
+ {renderQuota(userState?.user?.aff_history_quota || 0)}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className='flex items-center justify-center text-sm'>
|
|
|
|
|
+ <BarChart2 size={14} className="mr-1" style={{ color: 'rgba(255,255,255,0.8)' }} />
|
|
|
|
|
+ <Text style={{ color: 'rgba(255,255,255,0.8)', fontSize: '12px' }}>{t('总收益')}</Text>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <div className='!mb-4'>
|
|
|
|
|
|
|
+ {/* 邀请人数 */}
|
|
|
|
|
+ <div className='text-center'>
|
|
|
|
|
+ <div className='text-2xl font-bold mb-2' style={{ color: 'white' }}>
|
|
|
|
|
+ {userState?.user?.aff_count || 0}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className='flex items-center justify-center text-sm'>
|
|
|
|
|
+ <Users size={14} className="mr-1" style={{ color: 'rgba(255,255,255,0.8)' }} />
|
|
|
|
|
+ <Text style={{ color: 'rgba(255,255,255,0.8)', fontSize: '12px' }}>{t('邀请人数')}</Text>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ }
|
|
|
|
|
+ >
|
|
|
{/* 邀请链接部分 */}
|
|
{/* 邀请链接部分 */}
|
|
|
<Input
|
|
<Input
|
|
|
value={affLink}
|
|
value={affLink}
|
|
@@ -119,13 +142,13 @@ const InvitationCard = ({
|
|
|
</Button>
|
|
</Button>
|
|
|
}
|
|
}
|
|
|
/>
|
|
/>
|
|
|
- </div>
|
|
|
|
|
|
|
+ </Card>
|
|
|
|
|
|
|
|
{/* 奖励说明 */}
|
|
{/* 奖励说明 */}
|
|
|
<Card
|
|
<Card
|
|
|
- className='!rounded-xl with-pastel-balls-warm'
|
|
|
|
|
|
|
+ className='!rounded-xl w-full'
|
|
|
title={
|
|
title={
|
|
|
- <Text strong className='text-slate-700'>
|
|
|
|
|
|
|
+ <Text type='tertiary'>
|
|
|
{t('奖励说明')}
|
|
{t('奖励说明')}
|
|
|
</Text>
|
|
</Text>
|
|
|
}
|
|
}
|
|
@@ -133,27 +156,27 @@ const InvitationCard = ({
|
|
|
<div className='space-y-3'>
|
|
<div className='space-y-3'>
|
|
|
<div className='flex items-start gap-2'>
|
|
<div className='flex items-start gap-2'>
|
|
|
<Badge dot type='success' />
|
|
<Badge dot type='success' />
|
|
|
- <Text type='tertiary' className='text-sm text-slate-600'>
|
|
|
|
|
|
|
+ <Text type='tertiary' className='text-sm'>
|
|
|
{t('邀请好友注册,好友充值后您可获得相应奖励')}
|
|
{t('邀请好友注册,好友充值后您可获得相应奖励')}
|
|
|
</Text>
|
|
</Text>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div className='flex items-start gap-2'>
|
|
<div className='flex items-start gap-2'>
|
|
|
<Badge dot type='success' />
|
|
<Badge dot type='success' />
|
|
|
- <Text type='tertiary' className='text-sm text-slate-600'>
|
|
|
|
|
|
|
+ <Text type='tertiary' className='text-sm'>
|
|
|
{t('通过划转功能将奖励额度转入到您的账户余额中')}
|
|
{t('通过划转功能将奖励额度转入到您的账户余额中')}
|
|
|
</Text>
|
|
</Text>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div className='flex items-start gap-2'>
|
|
<div className='flex items-start gap-2'>
|
|
|
<Badge dot type='success' />
|
|
<Badge dot type='success' />
|
|
|
- <Text type='tertiary' className='text-sm text-slate-600'>
|
|
|
|
|
|
|
+ <Text type='tertiary' className='text-sm'>
|
|
|
{t('邀请的好友越多,获得的奖励越多')}
|
|
{t('邀请的好友越多,获得的奖励越多')}
|
|
|
</Text>
|
|
</Text>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</Card>
|
|
</Card>
|
|
|
- </div>
|
|
|
|
|
|
|
+ </Space>
|
|
|
</Card>
|
|
</Card>
|
|
|
);
|
|
);
|
|
|
};
|
|
};
|