表单
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user