+ @click="linkTo(`../AppServicePublic/Detail?id=${item.id}&listName=政策动态`)">
{{ item.title }}
@@ -58,17 +58,29 @@ export default {
uni.navigateTo({url})
},
getList() {
- this.$http.post(`/app/appnewscenterinfo/listForWx`, null, {
+ this.$http.post('/app/appcontentinfo/list', null, {
params: {
+ size: 20,
current: 1,
- size: 10,
- status: 1
- }
- }).then(res => {
+ moduleId: 'ac80f2857f2c4e4d8f0e266a703aed7a',
+ },
+ })
+ .then((res) => {
if (res.code == 0) {
this.list = res.data.records
}
})
+ // this.$http.post(`/app/appnewscenterinfo/listForWx`, null, {
+ // params: {
+ // current: 1,
+ // size: 10,
+ // status: 1
+ // }
+ // }).then(res => {
+ // if (res.code == 0) {
+ // this.list = res.data.records
+ // }
+ // })
}
}
}