12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view class="container">
- <!-- 订单 -->
- <view class="charts-box">
- <echartOrder ref="echart-order"/>
- </view>
- <!-- 关键词 -->
- <view class="charts-box">
- <echartKeyword ref="echart-keyword" />
- </view>
- <!-- 咨询记录 -->
- <view class="charts-box">
- <echartContact ref="echart-contact"/>
- </view>
- <!-- 访问记录 -->
- <view class="charts-box">
- <echartService ref="echart-service"/>
- </view>
- </view>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex'
- import echartOrder from './components/echart-order'
- import echartKeyword from './components/echart-keyword'
- import echartContact from './components/echart-contact'
- import echartService from './components/echart-service'
- export default {
- components: {
- echartOrder,
- echartKeyword,
- echartContact,
- echartService
- },
- data() {
- return {
-
- }
- },
- onLoad(option) {
-
- },
- filters: {},
- computed: {},
- methods: {
-
- },
- onShow() {}
- }
- </script>
- <style lang="scss">
- .charts-box {
- width: 100%;
- height: 600rpx;
- box-sizing: border-box;
- }
- </style>
|