import { View, Text, Image } from '@tarojs/components'; import { useState } from 'react'; import Taro from '@tarojs/taro'; import NavBar from '@/components/NavBar'; export default function SharePage() { const [shareLink, setShareLink] = useState('https://paopao.com/ref/abc123'); const [qrCodeUrl, setQrCodeUrl] = useState(''); const handleCopyLink = () => { Taro.setClipboardData({ data: shareLink }) }; const handleGeneratePoster = () => { Taro.showToast({ title: '海报生成功能开发中', icon: 'none' }) }; const handleShare = (platform: string) => { // TODO: 接入分享 API }; return ( {/* 佣金概览 */} 累计佣金(元) 1,258 .50 36 邀请人数 89 订单数 ¥528 待结算 {/* 分享方式 */} 分享链接 {shareLink} 复制 handleShare('wechat')} > 微信分享 handleShare('moments')} > 朋友圈 {/* 分享海报 */} 分享海报 {qrCodeUrl ? ( ) : ( 📱 点击下方按钮生成专属海报 )} 生成海报 {/* 分享规则 */} 分享规则 每邀请一位新用户注册,获得 ¥10 奖励 被邀请人完成首单,您可获得订单金额 5% 佣金 佣金满 ¥100 可申请提现 提现将在 1-3 个工作日内到账 ); }