12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!-- 若是没有登录就显示登录界面 -->
- <block wx:if="{{!login}}">
- <!-- logo -->
- <view class="hmly-logo" hover-class="none" hover-stop-propagation="false">
- <image class="hmly-logo-img" src="/image/logo.png" mode="widthFix" lazy-load="false"></image>
- </view>
- <!-- 登录按钮 -->
- <view class="hmly-login-button" hover-class="none" hover-stop-propagation="false">
- <view class="hmly-wechat-login">
- <button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">
- <text class="icon-message"></text> 微信登录
- </button>
- </view>
- <view class="hmly-phone-login">
- <button>手机号登录</button>
- </view>
- </view>
- </block>
- <block wx:else>
- <!-- 搜索框 -->
- <search></search>
- <!-- 功能栏 -->
- <view class="hmly-title-bar">
- <view class="hmly-item-title {{index == currentIndex ? 'hmly-active' : ' '}}" data-index="{{index}}"
- bindtap="checkItem" wx:for="{{content}}" wx:key="index">
- {{item.text}}
- </view>
- </view>
- <swiper class="hmly-swiper-box" style="min-height:{{height}}px" duration="300" current="{{currentIndex}}"
- bindchange="changeTab">
- <swiper-item>
- <block>
- <view class="hmly-no-content">
- <text class="icon-empty text-gray" style="font-size:400rpx"></text>
- <view class="hmly-but-box">
- <text style="font-size:30rpx" class="text-gray">没有内容</text>
- <button class="hmly-but">看看推荐</button>
- </view>
- </view>
- </block>
- </swiper-item>
- <swiper-item>
- <block>
- <view class="hmly-no-content">
- <text class="icon-empty text-gray" style="font-size:400rpx"></text>
- <view class="hmly-but-box">
- <text style="font-size:30rpx" class="text-gray">没有内容</text>
- <button class="hmly-but">看看推荐</button>
- </view>
- </view>
- </block>
- </swiper-item>
- <swiper-item>
- <block>
- <view class="hmly-no-content">
- <text class="icon-empty text-gray" style="font-size:400rpx"></text>
- <view class="hmly-but-box">
- <text style="font-size:30rpx" class="text-gray">没有内容</text>
- <button class="hmly-but">看看推荐</button>
- </view>
- </view>
- </block>
- </swiper-item>
- <swiper-item>
- <block>
- <view class="hmly-no-content">
- <text class="icon-empty text-gray" style="font-size:400rpx"></text>
- <view class="hmly-but-box">
- <text style="font-size:30rpx" class="text-gray">没有内容</text>
- <button class="hmly-but">更多礼包</button>
- </view>
- </view>
- </block>
- </swiper-item>
- </swiper>
- </block>
|