collection.wxml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!-- 若是没有登录就显示登录界面 -->
  2. <block wx:if="{{login}}">
  3. <!-- logo -->
  4. <view class="hmly-logo" hover-class="none" hover-stop-propagation="false">
  5. <image class="hmly-logo-img" src="/image/logo.png" mode="widthFix" lazy-load="false"></image>
  6. </view>
  7. <!-- 登录按钮 -->
  8. <view class="hmly-login-button" hover-class="none" hover-stop-propagation="false">
  9. <view class="hmly-wechat-login">
  10. <button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">
  11. <text class="icon-message"></text> 微信登录
  12. </button>
  13. </view>
  14. <view class="hmly-phone-login">
  15. <button>手机号登录</button>
  16. </view>
  17. </view>
  18. </block>
  19. <block wx:else>
  20. <!-- 搜索框 -->
  21. <search></search>
  22. <!-- 功能栏 -->
  23. <view class="hmly-title-bar">
  24. <view class="hmly-item-title {{index == currentIndex ? 'hmly-active' : ' '}}" data-index="{{index}}"
  25. bindtap="checkItem" wx:for="{{content}}" wx:key="index">
  26. {{item.text}}
  27. </view>
  28. </view>
  29. <swiper class="hmly-swiper-box" style="min-height:{{height}}px" duration="300" current="{{currentIndex}}"
  30. bindchange="changeTab">
  31. <swiper-item class="hmly-swiper-box-item">
  32. <block>
  33. <view class="hmly-no-content">
  34. <text class="icon-empty text-gray" style="font-size:400rpx"></text>
  35. <!-- <image src="/image/noContent.png"></image> -->
  36. <view class="hmly-but-box">
  37. <text style="font-size:30rpx" class="text-gray">没有内容</text>
  38. <button class="hmly-but">看看推荐</button>
  39. </view>
  40. </view>
  41. </block>
  42. </swiper-item>
  43. <swiper-item>
  44. <block>
  45. <view class="hmly-no-content">
  46. <text class="icon-empty text-gray" style="font-size:400rpx"></text>
  47. <view class="hmly-but-box">
  48. <text style="font-size:30rpx" class="text-gray">没有内容</text>
  49. <button class="hmly-but">看看推荐</button>
  50. </view>
  51. </view>
  52. </block>
  53. </swiper-item>
  54. <swiper-item>
  55. <block>
  56. <view class="hmly-no-content">
  57. <text class="icon-empty text-gray" style="font-size:400rpx"></text>
  58. <view class="hmly-but-box">
  59. <text style="font-size:30rpx" class="text-gray">没有内容</text>
  60. <button class="hmly-but">看看推荐</button>
  61. </view>
  62. </view>
  63. </block>
  64. </swiper-item>
  65. <swiper-item>
  66. <block>
  67. <view class="hmly-no-content">
  68. <text class="icon-empty text-gray" style="font-size:400rpx"></text>
  69. <view class="hmly-but-box">
  70. <text style="font-size:30rpx" class="text-gray">没有内容</text>
  71. <button class="hmly-but">更多礼包</button>
  72. </view>
  73. </view>
  74. </block>
  75. </swiper-item>
  76. </swiper>
  77. </block>