1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view class="swiper-cont container-fill">
- <!-- <view class="scroll-fullpage" bindtouchstart="scrollTouchstart" bindtouchend="scrollTouchend" style="transform:translateY(-{{scrollindex*100}}%);margin-top: {{margintop}}px">
- <view class="section section01 {{scrollindex==0?'active':''}}" style='background:red'>
- <view class='cont'>
- <image src="../../images/active_bar1.png" class='cont-body'></image>
- </view>
- </view>
- <view class="section section02 {{scrollindex==1?'active':''}}" style='background:pink'>
- <view class='cont'>
- <view class='cont-body'>
- <view>two</view>
- </view>
- </view>
- </view>
- <view class="section section03 {{scrollindex==2?'active':''}}" style='background:blue'>
- <view class='cont'>
- <view class='cont-body'>
- <view>three</view>
- </view>
- </view>
- </view>
- <view class="section section04 {{scrollindex==3?'active':''}}" style='background:green'>
- <view class='cont'>
- <view class='cont-body'>
- <view>foure</view>
- </view>
- </view>
- </view>
- </view> -->
- <view class="tabbar">
- <view class="tab1" bindtap="goIndex">
- <image src="../../images/active_bar1.png" style="width:40rpx;height:40rpx;padding-top:10rpx"></image>
- <view style="color:#a342ff">首页</view>
- </view>
- <view class="tab1">
- <image src="../../images/active_bar1.png" style="width:40rpx;height:40rpx;padding-top:10rpx"></image>
- <button id="red" type="primary" session-from="nickName={{userInfo.nickName}}|avatarUrl={{userInfo.avatarUrl}}" open-type="contact">红娘</button>
- </view>
- <view class="tab1" bindtap="goMy">
- <image src="../../images/active_bar1.png" style="width:40rpx;height:40rpx;padding-top:10rpx"></image>
- <view>我的</view>
- </view>
- </view>
- </view>
|