| 123456789101112131415161718192021222324 |
- <template>
- <view class="page-box-bg-fff m-lr30 m-t30 r-30 p-30">
- <StatisticsTitle :genre="0" :leftText="'任务资金汇总'" :rightText="'同比环比'" @onHandle="onHandle"></StatisticsTitle>
- </view>
- </template>
- <script>
- import StatisticsTitle from "@/common/statistics/statistics_title.vue";
-
- export default {
- name: 'peak_chart',
- components: {
- StatisticsTitle
- },
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|