moban.vue 466 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="page-box-bg-fff m-lr30 m-t30 r-30 p-30">
  3. <StatisticsTitle :genre="0" :leftText="'任务资金汇总'" :rightText="'同比环比'" @onHandle="onHandle"></StatisticsTitle>
  4. </view>
  5. </template>
  6. <script>
  7. import StatisticsTitle from "@/common/statistics/statistics_title.vue";
  8. export default {
  9. name: 'peak_chart',
  10. components: {
  11. StatisticsTitle
  12. },
  13. data() {
  14. return {
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. </style>