fix(admin-web): 预种管理页更新价格与单位
- 每份价格: 3566 USDT → 1887 绿积分(匹配 10份合1树 方案) - 金额单位: USDT → 绿积分(状态栏、统计卡片、订单表头) - 协议 placeholder: 1/5份额 8% → 1/10份额 4% Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
24fe10ee36
commit
b3f3349190
|
|
@ -194,7 +194,7 @@ export default function PrePlantingPage() {
|
|||
</div>
|
||||
<div className={styles.prePlanting__switchDesc}>
|
||||
{config?.isActive
|
||||
? '用户可正常购买预种份额(3566 USDT/份)'
|
||||
? '用户可正常购买预种份额(1887 绿积分/份)'
|
||||
: '新用户不可购买;已有未凑满份额的用户可继续购买至 5 的倍数'}
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -240,7 +240,7 @@ export default function PrePlantingPage() {
|
|||
<textarea
|
||||
value={agreementText}
|
||||
onChange={(e) => setAgreementText(e.target.value)}
|
||||
placeholder={'预种协议\n\n1. 用户成功购买预种计划后,自动获得分享权。\n2. 每一份预种计划,对应享有1棵猫山王榴莲树40%产果分红权的1/5份额,即单份预种计划可享受该果树8%的产果分红权。'}
|
||||
placeholder={'预种协议\n\n1. 用户成功购买预种计划后,自动获得分享权。\n2. 每一份预种计划,对应享有1棵猫山王榴莲树40%产果分红权的1/10份额,即单份预种计划可享受该果树4%的产果分红权。'}
|
||||
style={{
|
||||
width: '100%',
|
||||
minHeight: 120,
|
||||
|
|
@ -278,7 +278,7 @@ export default function PrePlantingPage() {
|
|||
<div className={styles.prePlanting__statValue}>
|
||||
{statsLoading ? '-' : formatNumber(stats?.totalAmount ?? 0)}
|
||||
</div>
|
||||
<div className={styles.prePlanting__statLabel}>总金额 (USDT)</div>
|
||||
<div className={styles.prePlanting__statLabel}>总金额 (绿积分)</div>
|
||||
</div>
|
||||
<div className={styles.prePlanting__statCard}>
|
||||
<div className={styles.prePlanting__statValue}>
|
||||
|
|
@ -417,7 +417,7 @@ function OrdersTable({
|
|||
<th>订单号</th>
|
||||
<th>用户账号</th>
|
||||
<th>份数</th>
|
||||
<th>金额 (USDT)</th>
|
||||
<th>金额 (绿积分)</th>
|
||||
<th>状态</th>
|
||||
<th>支付时间</th>
|
||||
<th>创建时间</th>
|
||||
|
|
|
|||
Loading…
Reference in New Issue