|
|
|
@ -66,7 +66,7 @@ |
|
|
|
|
<scroll-view class="scrollBox" scroll-x="true" @scroll="scroll1" scroll-left="0"> |
|
|
|
|
<view class="picBox" v-for="(item,index) in album_list" :key="index" @click="viewAlbum(item.id)"> |
|
|
|
|
<view class="pic"> |
|
|
|
|
<image :src="item.face" mode="widthFix"></image> |
|
|
|
|
<image :src="item.face" mode="scaleToFill"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="pic_title">{{item.title}}</view> |
|
|
|
|
</view> |
|
|
|
@ -78,11 +78,11 @@ |
|
|
|
|
<image src="/static/img/index/title_kt.png" mode="widthFix"></image> |
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
<view class="picList"> |
|
|
|
|
<view class="picList" style="margin-bottom: 80rpx;"> |
|
|
|
|
<scroll-view class="scrollBox" scroll-x="true" @scroll="scroll2" scroll-left="0"> |
|
|
|
|
<view class="picBox" v-for="(item,index) in cartoon_list" :key="index" @click="viewCartoon(item.id)"> |
|
|
|
|
<view class="pic"> |
|
|
|
|
<image :src="item.face" mode="widthFix"></image> |
|
|
|
|
<image :src="item.face" mode="scaleToFill"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="pic_title">{{item.title}}</view> |
|
|
|
|
</view> |
|
|
|
@ -92,7 +92,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
|
<view class="spaceBox"></view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<u-popup :show="tips_show" :round="10" mode="center" bgColor="transparent" @close="close('tips_show')" @open="open('tips_show')"> |
|
|
|
|
<view class="popupBox"> |
|
|
|
@ -166,12 +166,7 @@ |
|
|
|
|
}, |
|
|
|
|
onLoad() { |
|
|
|
|
var _this = this; |
|
|
|
|
//banner信息 |
|
|
|
|
_this.getBannerList(); |
|
|
|
|
//场景 |
|
|
|
|
_this.getSceneMenu(); |
|
|
|
|
//热门 |
|
|
|
|
_this.getHotList(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var show_agreement = _this.$user.session('show_agreement'); |
|
|
|
|
console.log('show_agreement',show_agreement); |
|
|
|
@ -180,12 +175,18 @@ |
|
|
|
|
_this.agreement(); |
|
|
|
|
_this.tips_show = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//延时1秒请求,保证成功 |
|
|
|
|
setTimeout(function(res){ |
|
|
|
|
_this.getUploadConfig(); |
|
|
|
|
//banner信息 |
|
|
|
|
_this.getBannerList(); |
|
|
|
|
//场景 |
|
|
|
|
_this.getSceneMenu(); |
|
|
|
|
//热门 |
|
|
|
|
_this.getHotList(); |
|
|
|
|
},1000); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
onShareAppMessage() { |
|
|
|
@ -464,12 +465,12 @@ |
|
|
|
|
.topRight .distance image{ width: 32rpx; height: 32rpx; margin-right: 24rpx;} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.picList{ width: 100%; height: 360rpx; } |
|
|
|
|
.picList{ width: 100%; height: auto; } |
|
|
|
|
|
|
|
|
|
.scrollBox { |
|
|
|
|
margin-top: 20rpx; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 360rpx; |
|
|
|
|
height: 390rpx; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -477,7 +478,7 @@ |
|
|
|
|
.picBox { |
|
|
|
|
display: inline-block; |
|
|
|
|
width:260rpx; |
|
|
|
|
height: 360rpx; |
|
|
|
|
height: 390rpx; |
|
|
|
|
text-align: center; |
|
|
|
|
position: relative; |
|
|
|
|
margin-left: 20rpx; |
|
|
|
@ -486,13 +487,13 @@ |
|
|
|
|
.picBox .pic{ |
|
|
|
|
position: absolute; |
|
|
|
|
width:100%; |
|
|
|
|
height: 360rpx; |
|
|
|
|
height: 390rpx; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
.picBox .pic image{ |
|
|
|
|
width:260rpx; |
|
|
|
|
height: 360rpx; |
|
|
|
|
width:100%; |
|
|
|
|
height: 390rpx; |
|
|
|
|
border-radius:24rpx; |
|
|
|
|
} |
|
|
|
|
.picBox .pic_title{ |
|
|
|
|