|
|
@ -77,7 +77,7 @@ |
|
|
|
:data="tableData" |
|
|
|
style="width: 100%" |
|
|
|
height="200"> |
|
|
|
<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column> |
|
|
|
<!-- <el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column> --> |
|
|
|
<el-table-column min-width="100" prop="memberCount" label="网格员数" header-align="center" align="center" /> |
|
|
|
<el-table-column min-width="100" prop="orgName" label="所属社区" header-align="center" align="center" /> |
|
|
|
<el-table-column min-width="100" prop="projectCount" label="上报数量" header-align="center" align="center" /> |
|
|
@ -217,13 +217,13 @@ export default { |
|
|
|
this.tableData = [] |
|
|
|
this.dataForm.type = 0 |
|
|
|
this.$http |
|
|
|
.get('/data/stats/factAgencyUserHouseDaily/total',{params: this.dataForm}) |
|
|
|
.post('/data/aggregator/org/orgProjectDetailList', this.dataForm) |
|
|
|
.then(({ data: res }) => { |
|
|
|
if (res.code !== 0) { |
|
|
|
return this.$message.error(res.msg) |
|
|
|
} else { |
|
|
|
console.log('获取查询详情成功', res.data) |
|
|
|
if (res.data) this.tableData.push(res.data) |
|
|
|
console.log('获取查询详情成功', res.data.list) |
|
|
|
this.tableData = res.data.list |
|
|
|
} |
|
|
|
}) |
|
|
|
.catch(() => { |
|
|
|