fix(text): 预种合并份数从5份改为10份

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-04 06:18:12 -08:00
parent 867d4853ae
commit 979ba379c1
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ export class OrderService {
if (type === OrderType.SELL) { if (type === OrderType.SELL) {
const restricted = await this.sellRestrictionService.isRestricted(accountSequence); const restricted = await this.sellRestrictionService.isRestricted(accountSequence);
if (restricted) { if (restricted) {
throw new Error('预种积分股暂时不可卖出,请先完成预种合并(满5份合成1棵树后即可卖出'); throw new Error('预种积分股暂时不可卖出,请先完成预种合并(满10份合成1棵树后即可卖出');
} }
} }

View File

@ -833,7 +833,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
border: Border.all(color: AppColors.down.withOpacity(0.3)), border: Border.all(color: AppColors.down.withOpacity(0.3)),
), ),
child: const Text( child: const Text(
'预种积分股暂时不可卖出,请先完成预种合并(满5份合成1棵树后即可卖出', '预种积分股暂时不可卖出,请先完成预种合并(满10份合成1棵树后即可卖出',
style: TextStyle(fontSize: 12, color: AppColors.down), style: TextStyle(fontSize: 12, color: AppColors.down),
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),