Commit e9fe9f18 by 陶光胜

回写修改

parent 36f79549
...@@ -33,9 +33,9 @@ public class StoreAreaBackImpl implements ScreenBackStrategy { ...@@ -33,9 +33,9 @@ public class StoreAreaBackImpl implements ScreenBackStrategy {
String[] valueArr = value.split(" "); String[] valueArr = value.split(" ");
List<String> view = new ArrayList<>(); List<String> view = new ArrayList<>();
List<String> hideView = new ArrayList<>(); List<String> hideView = new ArrayList<>();
for(CityDTO cityDTO : cityDTOList){ for(String s : valueArr){
int index = 0; int index = 0;
for(String s : valueArr){ for(CityDTO cityDTO : cityDTOList){
if(s.equals(cityDTO.getCityId())){ if(s.equals(cityDTO.getCityId())){
String provinceName = ""; String provinceName = "";
ServiceResponse<ProvinceDTO> provinceById = this.provincesApiService.getProvinceById(cityDTO.getProvinceId()); ServiceResponse<ProvinceDTO> provinceById = this.provincesApiService.getProvinceById(cityDTO.getProvinceId());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment