diff --git a/src/views/share/ToList.vue b/src/views/share/ToList.vue index 1c76cb29..b56aead8 100644 --- a/src/views/share/ToList.vue +++ b/src/views/share/ToList.vue @@ -14,7 +14,7 @@ 搜索 重置 - + @@ -211,7 +211,7 @@ export default { if (this.tabName == 'case') { this.findCase(); } - + }, resData() { this.keyword = ''; @@ -267,7 +267,7 @@ export default { if (this.tabName == 'case') { this.caseList.pageSize = value; this.findCase() - } + } }, //分页点击事件 handleCurrentChange(value) { @@ -287,13 +287,13 @@ export default { this.caseList.pageIndex = value; this.findCase(); } - + }, // 案例 findCase(){ let { pageIndex, pageSize } = this.caseList; let query = { pageIndex, pageSize, keyword: this.keyword, isRead: this.isRead }; - apiShares.myCaseList(query).then(res=>{ + apiShares.myMeCaseList(query).then(res=>{ if(res.status == 200) { this.caseList.count = res.result.count; this.caseList.list = res.result.list; @@ -408,7 +408,7 @@ export default { if (this.tabName == 'course') { this.findCourse(); } - + } };