paymentMethod.vue 454 B

1234567891011121314151617181920212223242526272829
  1. <!-- 支付占比分析分析 -->
  2. <template>
  3. <view class="revenue">
  4. <view class="revenue-line">
  5. <PieChart :chartData="chartData" :title="title"/>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import PieChart from '@/components/pieChart.vue'
  11. export default {
  12. components: {
  13. PieChart
  14. },
  15. props: {
  16. title: {
  17. type: String,
  18. default: ''
  19. },
  20. chartData: {
  21. type: Object,
  22. default: () => {
  23. return {}
  24. }
  25. }
  26. }
  27. }
  28. </script>