grade.vue 701 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="chart-list-container">
  3. <!-- <view>
  4. <view class="home-topinfo">
  5. <image class="children-avatar" src="../../static/logo.png"></image>
  6. <view class="children-name">
  7. <text>XXX</text>
  8. </view>
  9. <uni-icons class="children-icons" type="right"></uni-icons>
  10. </view>
  11. </view> -->
  12. <line-chart></line-chart>
  13. <column-chart></column-chart>
  14. <radar-chart></radar-chart>
  15. <bar-chart></bar-chart>
  16. <area-chart></area-chart>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. }
  24. },
  25. mounted() {
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss">
  32. .chart-list-container{
  33. }
  34. </style>