村民统计
This commit is contained in:
@@ -43,6 +43,7 @@
|
|||||||
v-model="time1"
|
v-model="time1"
|
||||||
type="month"
|
type="month"
|
||||||
size="small"
|
size="small"
|
||||||
|
@change="getInfo"
|
||||||
value-format="yyyy-MM"
|
value-format="yyyy-MM"
|
||||||
placeholder="请选择月份">
|
placeholder="请选择月份">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
@@ -84,6 +85,53 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</ai-card>
|
</ai-card>
|
||||||
|
<ai-card title="村民参与活动记录">
|
||||||
|
<template #content>
|
||||||
|
<ai-search-bar class="search-bar" bottomBorder>
|
||||||
|
<template slot="left">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="time2"
|
||||||
|
type="month"
|
||||||
|
size="small"
|
||||||
|
@change="getInfo"
|
||||||
|
value-format="yyyy-MM"
|
||||||
|
placeholder="请选择月份">
|
||||||
|
</el-date-picker>
|
||||||
|
<ai-download :instance="instance" url="/app/appcommunityhouseinfo/listExport" fileName="村民参与活动记录" style="left-right: 10px"></ai-download>
|
||||||
|
</template>
|
||||||
|
<template slot="right">
|
||||||
|
<el-input
|
||||||
|
v-model="search.name"
|
||||||
|
class="search-input"
|
||||||
|
size="small"
|
||||||
|
placeholder="请输入姓名"
|
||||||
|
clearable
|
||||||
|
suffix-icon="iconfont iconSearch">
|
||||||
|
</el-input>
|
||||||
|
</template>
|
||||||
|
</ai-search-bar>
|
||||||
|
<ai-table
|
||||||
|
style="margin-top: 12px;"
|
||||||
|
:border="true"
|
||||||
|
tableSize="small"
|
||||||
|
:total="total"
|
||||||
|
:tableData="list"
|
||||||
|
:col-configs="colConfigs"
|
||||||
|
:current.sync="search.current"
|
||||||
|
:size.sync="search.size"
|
||||||
|
:stripe="false"
|
||||||
|
@getList="getInfo">
|
||||||
|
<el-table-column slot="options" width="220px" fixed="right" label="操作" align="center">
|
||||||
|
<template slot-scope="{ row }">
|
||||||
|
<div class="table-options">
|
||||||
|
<el-button type="text" @click="id = row.id, form.categoryName = row.categoryName">编辑</el-button>
|
||||||
|
<el-button type="text" @click="removeCate(row.id)">删除</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</ai-table>
|
||||||
|
</template>
|
||||||
|
</ai-card>
|
||||||
</template>
|
</template>
|
||||||
</ai-list>
|
</ai-list>
|
||||||
</template>
|
</template>
|
||||||
@@ -112,15 +160,26 @@
|
|||||||
children: 'children',
|
children: 'children',
|
||||||
label: 'name'
|
label: 'name'
|
||||||
},
|
},
|
||||||
|
total: 0,
|
||||||
|
colConfigs: [
|
||||||
|
{ prop: 'moduleName', label: '模块名称', align: 'left', width: '200px' },
|
||||||
|
{ prop: 'menuName', label: '关联菜单', align: 'center' },
|
||||||
|
{ prop: 'id', label: 'ID', align: 'center' },
|
||||||
|
{ prop: 'categoryStr', label: '文章分类', align: 'center' }
|
||||||
|
],
|
||||||
time1: '',
|
time1: '',
|
||||||
|
time2: '',
|
||||||
chart2: '',
|
chart2: '',
|
||||||
areaId: '',
|
areaId: '',
|
||||||
currIndex: -1,
|
currIndex: -1,
|
||||||
|
list: [],
|
||||||
areaList: [],
|
areaList: [],
|
||||||
unitName: '',
|
unitName: '',
|
||||||
search: {
|
search: {
|
||||||
current: 1,
|
current: 1,
|
||||||
areaId: ''
|
areaId: '',
|
||||||
|
size: 10,
|
||||||
|
name: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -217,7 +276,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
getInfo () {
|
getInfo () {
|
||||||
this.instance.post(`/app/appvillageactivityinfo/statistic?time1=${this.time1}`).then(res => {
|
this.instance.post(`/app/appvillageactivityinfo/statistic?time1=${this.time1}&time2=${this.time2}`).then(res => {
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
this.info = res.data.total
|
this.info = res.data.total
|
||||||
this.initChart1(res.data.twelve)
|
this.initChart1(res.data.twelve)
|
||||||
|
|||||||
Reference in New Issue
Block a user