| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="page-box-bg-fff m-t20 r-30 p-30">
- <StatisticsTitle :is_right="false" is_age :genre="0" :leftText="'年龄分部'" :rightText="'同比环比'" @onHandle="onHandle">
- </StatisticsTitle>
- <view class="column-c m-30 r-30 p-l16">
- <PeakChart></PeakChart>
- </view>
- </view>
- </template>
- <script>
- import PeakChart from "@/common/chart/peak_chart.vue";
- import StatisticsTitle from "@/common/statistics/statistics_title.vue";
- export default {
- name: 'stat_age_chart',
- components: {
- PeakChart,
- StatisticsTitle
- },
- data() {
- return {
- list: [{
- name: '电力',
- color: '#2B7DFA'
- }, {
- name: '信息传媒',
- color: '#00BF8A'
- }, {
- name: '互联网',
- color: '#ED9A2C'
- }, ]
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|