12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="chart-list-container">
- <!-- <view>
- <view class="home-topinfo">
- <image class="children-avatar" src="../../static/logo.png"></image>
- <view class="children-name">
- <text>XXX</text>
- </view>
- <uni-icons class="children-icons" type="right"></uni-icons>
- </view>
- </view> -->
- <line-chart></line-chart>
- <column-chart></column-chart>
- <radar-chart></radar-chart>
- <bar-chart></bar-chart>
- <area-chart></area-chart>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- mounted() {
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .chart-list-container{
-
- }
- </style>
|