|
@@ -5123,7 +5123,7 @@ namespace OASystem.API.Controllers
|
|
|
spArr = countryArr.Split("、");
|
|
|
}
|
|
|
|
|
|
- foreach (var item in spArr)
|
|
|
+ foreach (var item in spArr.Where(x=>!string.IsNullOrWhiteSpace(x)).ToList())
|
|
|
{
|
|
|
var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
|
|
|
if (dbQueryCountry != null)
|