| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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 "./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>
|