This commit is contained in:
yanran200730
2022-02-18 13:43:37 +08:00
parent 2a8c3cd45f
commit fd76ce7ac1
7 changed files with 159 additions and 148 deletions

View File

@@ -59,7 +59,8 @@
props: {
instance: Function,
dict: Object
dict: Object,
areaId: String
},
data() {
@@ -102,17 +103,12 @@
getList() {
this.instance.post(`/app/appvillagercircleinfo/list`, null, {
params: {
type: 0,
...this.search
...this.search,
areaId: this.areaId
}
}).then(res => {
if (res.code == 0) {
this.tableData = res.data.records.map(v => {
return {
...v,
content: v.content || v.title
}
})
this.tableData = res.data.records
this.total = res.data.total
}
})