1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <view class="content">
- <!-- 首页信息 -->
- <iHead></iHead>
- <!-- 行情信息 -->
- <Market class="margintop20"></Market>
- <!-- 商场分类 -->
- <shoppingMalls class="margintop20"></shoppingMalls>
- <!-- 页签跳转 -->
- <labelItem class="margintop20"></labelItem>
- <!-- 最新资讯 -->
- <news class="margintop20"></news>
- <!-- 最新视频 -->
- <newVideo class="margintop20"></newVideo>
- <!-- 互动天地 -->
- <Exchange class="margintop20"></Exchange>
- </view>
- </template>
- <script>
- import iHead from './base/head.vue'
- import Market from './base/Market.vue'
- import shoppingMalls from './base/shoppingMalls.vue'
- import news from './base/news.vue'
- import newVideo from './base/newVideo.vue'
- import Exchange from './base/Exchange.vue'
- import labelItem from './base/labelItem.vue'
- import {carouselList} from '@/http/api/common.js'
- export default {
- components: {
- iHead,
- Market,
- shoppingMalls,
- news,
- newVideo,
- Exchange,
- labelItem
- },
- data() {
- return {
-
- }
- },
- async onLoad() {
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- overflow-y: hidden;
- }
- .margintop20{
- margin-top: 40rpx;
- }
-
- </style>
|