diff --git a/packages/3.0.0/AppVillageActivity/components/Statistics.vue b/packages/3.0.0/AppVillageActivity/components/Statistics.vue
index 623d168d..03a33055 100644
--- a/packages/3.0.0/AppVillageActivity/components/Statistics.vue
+++ b/packages/3.0.0/AppVillageActivity/components/Statistics.vue
@@ -97,17 +97,6 @@
value-format="yyyy-MM"
placeholder="请选择月份">
-
-
-
-
-
@@ -162,10 +152,10 @@
},
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' }
+ { prop: 'name', label: '姓名', align: 'left' },
+ { prop: 'gender', label: '性别', align: 'center' },
+ { prop: 'number1', label: '报名次数', align: 'center' },
+ { prop: 'number2', label: '发布动态条数', align: 'center' }
],
time1: '',
time2: '',
@@ -223,7 +213,6 @@
this.search.current = 1
this.$nextTick(() => {
- this.loading = true
this.getInfo()
})
},
@@ -276,11 +265,13 @@
},
getInfo () {
+ this.loading = true
this.instance.post(`/app/appvillageactivityinfo/statistic?time1=${this.time1}&time2=${this.time2}`).then(res => {
if (res.code == 0) {
this.info = res.data.total
this.initChart1(res.data.twelve)
this.initChart2(res.data.gender)
+ this.list = res.data.rank || []
this.loading = false
} else {
this.loading = false