123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <view class="content">
- <!-- 首页信息 -->
- <iHead></iHead>
- <!-- 行情信息 -->
- <Market class="margintop20"></Market>
- <!-- 商场分类 -->
- <shoppingMalls class="margintop20"></shoppingMalls>
- <!-- 图片展示 -->
- <showPictures class="margintop20"></showPictures>
- <!-- 页签跳转 -->
- <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 showPictures from './base/showPictures.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,
- showPictures,
- 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>
|