fix(mobile-app): 修复 CityPickers locationCode 类型错误

添加空字符串默认值,确保 locationCode 参数类型为 String

🤖 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-22 06:58:00 -08:00
parent da69ecec44
commit 857beeb196
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ class _AuthorizationApplyPageState
height: 300,
showType: ShowType.pc, //
barrierDismissible: true,
locationCode: tempCityCode ?? tempProvinceCode, //
locationCode: tempCityCode ?? tempProvinceCode ?? '', //
);
if (result != null) {