![]()
@@ -53,10 +53,10 @@ export default {
let res = await communityActivity(parm)
if (res) {
this.loading = false;
- if (res.length < this.pageSize) {
+ if (res.list.length < this.pageSize) {
this.finished = true;
}
- this.list = this.list.concat(res);
+ this.list = this.list.concat(res.list);
}
},
handelClickJump(path) {
diff --git a/src/views/mine/mySatisfaction/index.vue b/src/views/mine/mySatisfaction/index.vue
index 3fd00a3..134cd1a 100644
--- a/src/views/mine/mySatisfaction/index.vue
+++ b/src/views/mine/mySatisfaction/index.vue
@@ -44,7 +44,7 @@ export default {
methods: {
async communitySatisfactionPageList() {
let parm = {
- residList:[ this.$store.state.app.userInfo.id]
+ residList:[ '1703655913619628033']
}
let res = await communitySatisfactionPageList(parm)
if (res) {
diff --git a/src/views/selectAgency/index.vue b/src/views/selectAgency/index.vue
index e1a027f..3e00191 100644
--- a/src/views/selectAgency/index.vue
+++ b/src/views/selectAgency/index.vue
@@ -36,7 +36,6 @@ export default {
},
methods: {
async getAgency() {
- // this.cityJson = [cityJson]
this.selfCity = [];
let res = await getAllOrgTreeList()
if (res) {
@@ -55,7 +54,6 @@ export default {
parm.agencyId = item.agencyId;
let res = await editUser(parm)
if (res) {
- // this.$router.replace('home')
this.$router.replace('/')
}
} else {