|
|
@ -8,7 +8,8 @@ |
|
|
|
<!-- <image src="@/static/home/menu.png" mode="aspectFit"></image> --> |
|
|
|
</view> |
|
|
|
<view class="logo"> |
|
|
|
TikTok Shop |
|
|
|
<!-- TikTok Shop --> |
|
|
|
olx Shop |
|
|
|
</view> |
|
|
|
<view class="sign"> |
|
|
|
<image @click="showLanguage = true" src="../../static/home/language.png" mode="widthFix"></image> |
|
|
@ -34,9 +35,11 @@ |
|
|
|
<view>{{ $t('page.home.aboutUs') }}</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="about-us"> |
|
|
|
<view class="about-us" |
|
|
|
:style="{'background-image' : `url(${aboutImage})`}"> |
|
|
|
<view class="about-content"> |
|
|
|
<view class="title">{{ $t('page.home.tiktokShop') }}</view> |
|
|
|
<view class="title">olx Shop</view> |
|
|
|
<!-- <view class="title">{{ $t('page.home.tiktokShop') }}</view> --> |
|
|
|
<view class="desc">{{ $t('page.home.company') }}</view> |
|
|
|
<view class="click">{{ $t('page.home.introduction') }}</view> |
|
|
|
</view> |
|
|
@ -83,6 +86,7 @@ |
|
|
|
swiperDotIndex: 0, //当前轮播图index |
|
|
|
shopList : [], //商品列表 |
|
|
|
scrollList : [], //提现滚动列表 |
|
|
|
aboutImage : '', |
|
|
|
} |
|
|
|
}, |
|
|
|
onShow() { |
|
|
@ -101,6 +105,9 @@ |
|
|
|
this.request('shopPage').then(res => { |
|
|
|
this.shopList = res.result.records |
|
|
|
}) |
|
|
|
this.request('getImageIndex').then(res => { |
|
|
|
this.aboutImage = res.result.title |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
//获取首页提现滚动 |
|
|
|