|
|
@@ -16,7 +16,7 @@
|
|
|
<div class="container">
|
|
|
<div class="course-classify">
|
|
|
<div class="course-classify__list">
|
|
|
- <div class="left-item">教育类型:</div>
|
|
|
+ <div class="left-item">培训类型:</div>
|
|
|
<div class="right-item">
|
|
|
<div class="list">
|
|
|
<!-- <div
|
|
|
@@ -33,7 +33,11 @@
|
|
|
:class="{ active: params.educationTypeId == item.id }"
|
|
|
@click="changeType(item)"
|
|
|
>
|
|
|
- {{ item.educationName }}
|
|
|
+ {{
|
|
|
+ item.educationName == "继续教育"
|
|
|
+ ? "继教"
|
|
|
+ : item.educationName
|
|
|
+ }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -173,7 +177,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log(123)
|
|
|
+ console.log(123);
|
|
|
this.params.goodsName = this.$route.query.searchKey || "";
|
|
|
// this.params.searchKey = this.$route.query.searchKey || "";
|
|
|
this.params.educationTypeId = this.$route.query.educationId || "";
|
|
|
@@ -293,7 +297,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;
|
|
|
});
|
|
|
},
|