12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <el-card header="运营数据">
- <statistic class="statistic" :cols="0">
- <statistic-item v-for="(item, key) in items" :key="key" :class="{active: active === key}" @click="active = key">
- <span>
- {{item.title}}
- <el-tooltip v-if="item.desc" :content="item.desc" :open-delay=".3" placement="top">
- <i style="margin-left: 5px;cursor: pointer;" class="el-icon-warning-outline"/>
- </el-tooltip>
- </span>
- <span>
- <count-to :endVal="item.percent"/>
- </span>
- </statistic-item>
- </statistic>
- <auto-height>
- <ve-histogram style="width: 100%;" height="100%" :data="chartData"></ve-histogram>
- </auto-height>
- </el-card>
- </template>
- <script>
- import countTo from 'vue-count-to'
- import veHistogram from 'v-charts/lib/histogram.common'
- export default {
- props: ['data'],
- components: {
- 've-histogram': veHistogram,
- 'count-to': countTo
- },
- computed: {
- items() {
- return {
- SCHOOL: this.data['SCHOOL'] || {},
- MUSIC_GROUP_NUM: this.data['MUSIC_GROUP_NUM'] || {},
- MUSIC_GROUP_STUDENT: this.data['MUSIC_GROUP_STUDENT'] || {},
- OTHER_STUDENT: this.data['OTHER_STUDENT'] || {},
- }
- },
- chartData() {
- const data = this.data[this.active] || {}
- const values = Object.values(this.items)
- const months = {}
- for (const item of values) {
- for (const row of (item.indexMonthData || [])) {
- const key = this.$helpers.dayjs(row.month).month() + 1 + '月'
- if (!months[key]) {
- months[key] = {
- '月份': key,
- }
- }
- months[key][item.title] = row.percent
- }
- }
- return {
- columns: ['月份', ...values.map(item => item.title)],
- rows: Object.values(months)
- }
- }
- },
- data () {
- return {
- active: 'SCHOOL',
- }
- },
- }
- </script>
- <style lang="less" scoped>
- // .statistic{
- // /deep/ .statistic-content{
- // cursor: pointer;
- // &.active > span{
- // color: #14928a !important;
- // }
- // }
- // }
- </style>
|