From b50091eb1ef06b76e0426c353945251b6c45e172 Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 30 Jan 2026 14:09:17 -0800 Subject: [PATCH] =?UTF-8?q?fix(mining-app):=20C2C=20=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E9=A1=B5"=E7=A7=AF=E5=88=86=E5=80=BC=E9=87=91=E9=A2=9D"?= =?UTF-8?q?=E6=94=B9=E4=B8=BA"=E7=BB=BF=E7=A7=AF=E5=88=86=E6=95=B0?= =?UTF-8?q?=E9=87=8F"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/c2c/c2c_publish_page.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/mining-app/lib/presentation/pages/c2c/c2c_publish_page.dart b/frontend/mining-app/lib/presentation/pages/c2c/c2c_publish_page.dart index 47b76f55..817493b5 100644 --- a/frontend/mining-app/lib/presentation/pages/c2c/c2c_publish_page.dart +++ b/frontend/mining-app/lib/presentation/pages/c2c/c2c_publish_page.dart @@ -269,7 +269,7 @@ class _C2cPublishPageState extends ConsumerState { ); } - // #14: 双向输入 — 积分值数量 ↔ 积分值金额(1:1固定价格,两者相等) + // #14: 双向输入 — 积分值数量 ↔ 绿积分数量(1:1固定价格,两者相等) Widget _buildQuantityInput( String availableShares, String availableCash, @@ -298,7 +298,7 @@ class _C2cPublishPageState extends ConsumerState { ), const SizedBox(height: 4), Text( - '价格1:1,积分值数量 = 积分值金额', + '价格1:1,积分值数量 = 绿积分数量', style: const TextStyle(fontSize: 12, color: _grayText), ), const SizedBox(height: 12), @@ -353,7 +353,7 @@ class _C2cPublishPageState extends ConsumerState { const SizedBox(height: 12), - // 输入框2: 积分值金额 + // 输入框2: 绿积分数量 TextField( controller: _amountController, keyboardType: const TextInputType.numberWithOptions(decimal: true), @@ -361,7 +361,7 @@ class _C2cPublishPageState extends ConsumerState { FilteringTextInputFormatter.allow(RegExp(r'^\d+\.?\d{0,4}')), ], decoration: InputDecoration( - hintText: '请输入积分值金额', + hintText: '请输入绿积分数量', hintStyle: const TextStyle(color: _grayText), filled: true, fillColor: _bgGray,