From 248b07149001b98661e4f0b6d1011eac1ef7e813 Mon Sep 17 00:00:00 2001
From: zhaofang <752743406@qq.com>
Date: Wed, 8 Jun 2022 16:12:41 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/share/ToList.vue | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
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();
}
-
+
}
};