护理站所属区域
This commit is contained in:
parent
62a7dd9bec
commit
1e2531f95b
@ -956,21 +956,18 @@
|
||||
liststationinfo() {
|
||||
listStation(this.queryParams).then((response) => {
|
||||
response.rows.forEach((e) => {
|
||||
if (e.sysAreaVOList == []) {
|
||||
} else if (e.sysAreaVOList == null) {
|
||||
} else if (!e.sysAreaVOList) {
|
||||
} else if (e.sysAreaVOList.length == 0) {
|
||||
} else if (e.sysAreaVOList.length > 0) {
|
||||
if (e.provinceName) {
|
||||
|
||||
e.area =
|
||||
e.sysAreaVOList[0].provinceName +
|
||||
e.provinceName +
|
||||
"-" +
|
||||
e.sysAreaVOList[0].cityName +
|
||||
e.cityName +
|
||||
"-" +
|
||||
e.sysAreaVOList[0].regionName +
|
||||
e.regionName +
|
||||
"-" +
|
||||
e.sysAreaVOList[0].streetName;
|
||||
e.streetName;
|
||||
}
|
||||
});
|
||||
} );
|
||||
this.stationList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user