居民活动统计页面
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<ai-list class="statistics" isTabs style="width: 100%">
|
<ai-list class="statistics" isTabs style="width: 100%" v-loading="loading">
|
||||||
<template #left>
|
<template #left>
|
||||||
<div class="villagecode-left">
|
<div class="villagecode-left">
|
||||||
<div class="villagecode-left__title">
|
<div class="villagecode-left__title">
|
||||||
@@ -30,27 +30,60 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template slot="content" v-loading="loading">
|
<template slot="content">
|
||||||
<div class="statistics-top">
|
<ai-card title="近12个月居民参与活动人数统计">
|
||||||
<div class="statistics-top__item">
|
|
||||||
<span>居民总数</span>
|
|
||||||
<h2 style="color: #2266FF;">{{ info.total }}</h2>
|
|
||||||
</div>
|
|
||||||
<div class="statistics-top__item">
|
|
||||||
<span>今日新增</span>
|
|
||||||
<h2 style="color: #22AA99;">{{ info.increase }}</h2>
|
|
||||||
</div>
|
|
||||||
<div class="statistics-top__item">
|
|
||||||
<span>今日流失</span>
|
|
||||||
<h2 style="color: #F8B425">{{ info.decrease }}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ai-card title="趋势图">
|
|
||||||
<template #content>
|
<template #content>
|
||||||
<div class="chart" style="height: 340px; width: 100%;"></div>
|
<div class="chart1" style="height: 300px; width: 100%;"></div>
|
||||||
<ai-empty v-if="false" style="height: 148px;"></ai-empty>
|
<ai-empty v-if="false" style="height: 148px;"></ai-empty>
|
||||||
</template>
|
</template>
|
||||||
</ai-card>
|
</ai-card>
|
||||||
|
<ai-card title="活动统计">
|
||||||
|
<template #right>
|
||||||
|
<el-date-picker
|
||||||
|
v-model="time1"
|
||||||
|
type="month"
|
||||||
|
size="small"
|
||||||
|
value-format="yyyy-MM"
|
||||||
|
placeholder="请选择月份">
|
||||||
|
</el-date-picker>
|
||||||
|
</template>
|
||||||
|
<template #content>
|
||||||
|
<div class="middle">
|
||||||
|
<div class="left">
|
||||||
|
<div class="left-item">
|
||||||
|
<h2>活动发布数量</h2>
|
||||||
|
<div>
|
||||||
|
<span style="color: rgb(34, 102, 255);">{{ info['活动发布数量'] }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="left-item">
|
||||||
|
<h2>活动报名人数</h2>
|
||||||
|
<div>
|
||||||
|
<span style="color: rgb(34, 170, 153);">{{ info['活动报名人数'] || 0 }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="left-item">
|
||||||
|
<h2>发布动态条数</h2>
|
||||||
|
<div>
|
||||||
|
<span style="color: rgb(248, 180, 37);">{{ info['发布动态条数'] }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="left-item">
|
||||||
|
<h2>发布动态人员占比</h2>
|
||||||
|
<div>
|
||||||
|
<span style="color: red;">{{ info['发布动态人员占比'] }}%</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<h2>居民参与类型占比</h2>
|
||||||
|
<div class="right-chart">
|
||||||
|
<div class="chart2" style="height: 200px; width: 100%;"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</ai-card>
|
||||||
</template>
|
</template>
|
||||||
</ai-list>
|
</ai-list>
|
||||||
</template>
|
</template>
|
||||||
@@ -68,7 +101,7 @@
|
|||||||
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
chart: null,
|
chart1: null,
|
||||||
info: {},
|
info: {},
|
||||||
chartWidth: '',
|
chartWidth: '',
|
||||||
loading: false,
|
loading: false,
|
||||||
@@ -79,6 +112,8 @@
|
|||||||
children: 'children',
|
children: 'children',
|
||||||
label: 'name'
|
label: 'name'
|
||||||
},
|
},
|
||||||
|
time1: '',
|
||||||
|
chart2: '',
|
||||||
areaId: '',
|
areaId: '',
|
||||||
currIndex: -1,
|
currIndex: -1,
|
||||||
areaList: [],
|
areaList: [],
|
||||||
@@ -107,7 +142,8 @@
|
|||||||
this.getAreaList()
|
this.getAreaList()
|
||||||
this.loading = true
|
this.loading = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.chart = echarts.init(document.querySelector('.chart'))
|
this.chart1 = echarts.init(document.querySelector('.chart1'))
|
||||||
|
this.chart2 = echarts.init(document.querySelector('.chart2'))
|
||||||
window.addEventListener('resize', this.onResize)
|
window.addEventListener('resize', this.onResize)
|
||||||
this.getInfo()
|
this.getInfo()
|
||||||
})
|
})
|
||||||
@@ -119,7 +155,7 @@
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onResize () {
|
onResize () {
|
||||||
this.chart.resize()
|
this.chart1.resize()
|
||||||
},
|
},
|
||||||
|
|
||||||
onTreeChange (e) {
|
onTreeChange (e) {
|
||||||
@@ -128,7 +164,8 @@
|
|||||||
this.search.current = 1
|
this.search.current = 1
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.getList()
|
this.loading = true
|
||||||
|
this.getInfo()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -180,10 +217,11 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
getInfo () {
|
getInfo () {
|
||||||
this.instance.post(`/app/wxcp/wxcustomerlog/customerStatistic`).then(res => {
|
this.instance.post(`/app/appvillageactivityinfo/statistic?time1=${this.time1}`).then(res => {
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
this.info = res.data.today
|
this.info = res.data.total
|
||||||
this.initChart(res.data.list)
|
this.initChart1(res.data.twelve)
|
||||||
|
this.initChart2(res.data.gender)
|
||||||
this.loading = false
|
this.loading = false
|
||||||
} else {
|
} else {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
@@ -191,9 +229,65 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
initChart (data) {
|
initChart2 (data) {
|
||||||
const x = Object.keys(data)
|
const values = Object.keys(data).map(v => {
|
||||||
const y = Object.values(data)
|
return {
|
||||||
|
value: data[v],
|
||||||
|
name: v
|
||||||
|
}
|
||||||
|
})
|
||||||
|
let option = {
|
||||||
|
tooltip: {
|
||||||
|
trigger: 'item'
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
right: '5%',
|
||||||
|
top: 'center',
|
||||||
|
orient: 'vertical'
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
type: 'pie',
|
||||||
|
radius: ['40%', '70%'],
|
||||||
|
avoidLabelOverlap: false,
|
||||||
|
label: {
|
||||||
|
show: false,
|
||||||
|
position: 'center'
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
fontSize: '20',
|
||||||
|
color: '#2266FF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
emphasis: {
|
||||||
|
shadowBlur: 10,
|
||||||
|
shadowOffsetX: 0,
|
||||||
|
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
||||||
|
},
|
||||||
|
normal:{
|
||||||
|
label:{
|
||||||
|
show: true,
|
||||||
|
formatter: '{b} : {c} ({d}%)'
|
||||||
|
},
|
||||||
|
labelLine :{show:true}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
labelLine: {
|
||||||
|
show: false
|
||||||
|
},
|
||||||
|
color: ['#2266FF', '#22AA99', '#F8B425'],
|
||||||
|
data: values
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
this.chart2.setOption(option)
|
||||||
|
},
|
||||||
|
|
||||||
|
initChart1 (data) {
|
||||||
|
const x = data.map(v => v.time)
|
||||||
let option = {
|
let option = {
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis'
|
trigger: 'axis'
|
||||||
@@ -202,8 +296,8 @@
|
|||||||
type: "plain"
|
type: "plain"
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
left: '20px',
|
left: '10px',
|
||||||
right: '38px',
|
right: '28px',
|
||||||
bottom: '14px',
|
bottom: '14px',
|
||||||
top: '30px',
|
top: '30px',
|
||||||
containLabel: true
|
containLabel: true
|
||||||
@@ -253,41 +347,24 @@
|
|||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
name: '居民总数',
|
name: '活动报名人数',
|
||||||
type: 'line',
|
type: 'line',
|
||||||
data: y.map(v => v.total)
|
data: data.map(v => v.active)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '新增居民数',
|
name: '发布动态人数',
|
||||||
type: 'line',
|
type: 'line',
|
||||||
data: y.map(v => v.increase)
|
data: data.map(v => v.total)
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '流失居民数',
|
|
||||||
type: 'line',
|
|
||||||
data: y.map(v => v.decrease)
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
this.chart.setOption(option)
|
this.chart1.setOption(option)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.villagecode {
|
|
||||||
.table-tags {
|
|
||||||
.el-tag {
|
|
||||||
margin-right: 8px;
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.statistics {
|
.statistics {
|
||||||
padding: 0!important;
|
padding: 0!important;
|
||||||
::v-deep .ai-list__content--right-wrapper {
|
::v-deep .ai-list__content--right-wrapper {
|
||||||
@@ -300,6 +377,65 @@
|
|||||||
padding: 0!important;
|
padding: 0!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.middle {
|
||||||
|
display: flex;
|
||||||
|
height: 220px;
|
||||||
|
|
||||||
|
& > div {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
h2 {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
flex: 1;
|
||||||
|
padding-right: 20px;
|
||||||
|
|
||||||
|
.left-item {
|
||||||
|
width: calc((100% - 10px) / 2);
|
||||||
|
padding: 16px;
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
background: #f9f9f9;
|
||||||
|
-webkit-box-shadow: 0 4px 6px -2px rgb(15 15 21 / 15%);
|
||||||
|
box-shadow: 0 4px 6px -2px rgb(15 15 21 / 15%);
|
||||||
|
border-radius: 4px;
|
||||||
|
|
||||||
|
&:nth-of-type(2n) {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
color: #888;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
div {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
i {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.5em;
|
||||||
|
color: #333;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.addressBook-left__list {
|
.addressBook-left__list {
|
||||||
height: calc(100% - 40px);
|
height: calc(100% - 40px);
|
||||||
padding: 8px 8px;
|
padding: 8px 8px;
|
||||||
@@ -403,7 +539,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .ai-list__content--left {
|
::v-deep .ai-list__content--left {
|
||||||
margin-right: 2px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.villagecode-left {
|
.villagecode-left {
|
||||||
|
|||||||
Reference in New Issue
Block a user