fix: change USDT to CNY in authorization apply page

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-21 22:09:39 -08:00
parent ecf3755227
commit be505d1070
1 changed files with 3 additions and 3 deletions

View File

@ -29,11 +29,11 @@ extension AuthorizationTypeExtension on AuthorizationType {
String get description {
switch (this) {
case AuthorizationType.community:
return '社区权益 - 576 USDT/棵';
return '社区权益 - 576 CNY/棵';
case AuthorizationType.cityTeam:
return '市团队权益 - 288 USDT/棵';
return '市团队权益 - 288 CNY/棵';
case AuthorizationType.provinceTeam:
return '省团队权益 - 144 USDT/棵';
return '省团队权益 - 144 CNY/棵';
}
}
}