diff --git a/src/project/fengdu/AppCircle/AppCircle.vue b/src/project/fengdu/AppCircle/AppCircle.vue index 4bba832..fc210ed 100644 --- a/src/project/fengdu/AppCircle/AppCircle.vue +++ b/src/project/fengdu/AppCircle/AppCircle.vue @@ -194,7 +194,8 @@ withoutToken: true, params: { current: 1, - size: 100 + size: 100, + status: 1 } }).then(res => { if (res.code === 0) { diff --git a/src/project/fengdu/AppCircle/MyPostList.vue b/src/project/fengdu/AppCircle/MyPostList.vue index 1eab4dd..6ca8e29 100644 --- a/src/project/fengdu/AppCircle/MyPostList.vue +++ b/src/project/fengdu/AppCircle/MyPostList.vue @@ -162,7 +162,8 @@ export default { withoutToken: true, params: { current: 1, - size: 1000 + size: 1000, + status: 1 } }).then(res => { if (res.code === 0) { diff --git a/src/project/fengdu/AppCircle/Topic.vue b/src/project/fengdu/AppCircle/Topic.vue index c396a18..be0126f 100644 --- a/src/project/fengdu/AppCircle/Topic.vue +++ b/src/project/fengdu/AppCircle/Topic.vue @@ -32,7 +32,7 @@ methods: { getList() { if (this.current > this.pages) return - this.$instance.post(`/app/appneighborhoodassistancetheme/list?current=${this.current}&size=20`).then(res => { + this.$instance.post(`/app/appneighborhoodassistancetheme/list?current=${this.current}&size=20&status=1`).then(res => { if (res.code === 0 && res.data) { const list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records this.pages = Math.ceil(res.data.total / 10)