|
|
@@ -203,7 +203,7 @@ export const myMixin = {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- let area = this.areaJson.find(item => this.userJson.schooldest.includes(item.code));
|
|
|
+ let area = this.areaJson.find(item => this.userJson.schooldest.includes(item.code) || this.userJson.schooldest.includes(item.name));
|
|
|
let dest = area ? area.name : '未知';
|
|
|
|
|
|
let params = {
|
|
|
@@ -291,7 +291,7 @@ export const myMixin = {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- let area = this.areaJson.find(item => this.userJson.schooldest.includes(item.code));
|
|
|
+ let area = this.areaJson.find(item => this.userJson.schooldest.includes(item.code) || this.userJson.schooldest.includes(item.name));
|
|
|
let dest = area ? area.name : '未知';
|
|
|
|
|
|
let params = {
|