diff --git a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart index cef8c644..a95c8a2c 100644 --- a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart +++ b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart @@ -356,7 +356,7 @@ class _AssetPageState extends ConsumerState { AmountText( amount: displayValue != null ? formatAmount(displayValue) : null, isLoading: isLoading, - prefix: '¥ ', + suffix: ' 积分值', style: const TextStyle( fontSize: 30, fontWeight: FontWeight.bold, @@ -630,7 +630,7 @@ class _AssetPageState extends ConsumerState { DataText( data: isLoading ? null : '≈ $valueInCny', isLoading: isLoading, - placeholder: '≈ ¥--', + placeholder: '≈ --', style: TextStyle( fontSize: 12, color: AppColors.textMutedOf(context), 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 744aa5b4..b48e5408 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 @@ -629,7 +629,7 @@ class _C2cPublishPageState extends ConsumerState { children: [ const Text('交易总额', style: TextStyle(fontSize: 14, color: _grayText)), Text( - '¥${formatAmount(total.toString())}', + '${formatAmount(total.toString())} 积分值', style: const TextStyle( fontSize: 18, fontWeight: FontWeight.bold, @@ -818,12 +818,12 @@ class _C2cPublishPageState extends ConsumerState { mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ - Text('单价: ¥$price/积分值'), + Text('单价: $price 积分值'), const SizedBox(height: 8), Text('数量: $quantity 积分值'), const SizedBox(height: 8), Text( - '总额: ¥${formatAmount((double.parse(price) * double.parse(quantity)).toString())}', + '总额: ${formatAmount((double.parse(price) * double.parse(quantity)).toString())} 积分值', style: const TextStyle(fontWeight: FontWeight.bold), ), if (isSell) ...[