This commit is contained in:
2025-12-26 23:57:51 +08:00
parent 43820c6ec2
commit e198ab93ed
8 changed files with 323 additions and 36 deletions

View File

@@ -85,7 +85,7 @@
async Task LoadCountry()
{
var url = $"/api/country?id={CountryId}";
var url = $"/api/country/{CountryId}";
var apiResult = await HttpService.Get<ApiResult<Country>>(url);
if (apiResult.Success)
{