|
@@ -236,6 +236,7 @@ export default {
|
|
|
if (this.params.educationTypeId == item.id) {
|
|
|
return;
|
|
|
}
|
|
|
+ this.params.projectId = "";
|
|
|
this.params.educationTypeId = item.id;
|
|
|
this.params.businessId = "";
|
|
|
this.businessList = [];
|
|
@@ -303,7 +304,7 @@ export default {
|
|
|
this.$request
|
|
|
.businessList({ educationId: this.params.educationTypeId })
|
|
|
.then((res) => {
|
|
|
- this.businessList = res.rows.filter((item) => item.aliasName)
|
|
|
+ this.businessList = res.rows.filter((item) => item.aliasName);
|
|
|
this.projectId = this.businessList[0].projectId;
|
|
|
});
|
|
|
},
|