collection.wxml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!-- 若是没有登录就显示登录界面 -->
  2. <block wx:if="{{login}}">
  3. <!-- logo -->
  4. <view class="logo" hover-class="none" hover-stop-propagation="false">
  5. <image class="logoImg" src="/image/logo.png" mode="widthFix" lazy-load="false"></image>
  6. </view>
  7. <!-- 登录按钮 -->
  8. <view class="loginButton" hover-class="none" hover-stop-propagation="false">
  9. <view class="wechatLogin">
  10. <button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">
  11. <text class="icon-message"></text> 微信登录
  12. </button>
  13. </view>
  14. <view class="phoneLogin">
  15. <button>手机号登录</button>
  16. </view>
  17. </view>
  18. </block>
  19. <block wx:else>
  20. <!-- 搜索框 -->
  21. <search></search>
  22. <!-- 功能栏 -->
  23. <view class="titleBar">
  24. <view class="itemTitle {{index == currentIndex ? 'active' : ' '}}"
  25. data-index="{{index}}" bindtap="checkItem" wx:for="{{content}}" wx:key="index">
  26. {{item.text}}
  27. </view>
  28. </view>
  29. <!-- 这里就放一些静态数据 -->
  30. <view class="collectionContent">
  31. <block>
  32. <view class="content" bindtap="gotoDetails" data-coverImg="{{item.albumCoverUrl290}}" data-title="{{item.title}}">
  33. <view class="contentImg">
  34. <image src="http://imagev2.xmcdn.com/group71/M04/4C/11/wKgOz14Esw2SM9gQAAGQsBR1YeE034.jpg!op_type=5&upload_type=album&device_type=ios&name=medium&magick=png" mode="widthFix"></image>
  35. </view>
  36. <view class="content-right">
  37. <view class="content-title">
  38. <view class="titleText">郭德纲相声专场</view>
  39. <view class="introduction">每天听个郭德纲,快乐永驻你身旁。相声专场在银川,喜马来把笑声传。 著名相声演...</view>
  40. </view>
  41. <view class="count">
  42. <view class="playcount">
  43. <!-- <text class="icon-"></text> -->
  44. 126亿
  45. </view>
  46. <view class="jicount">70集</view>
  47. </view>
  48. </view>
  49. </view>
  50. </block>
  51. </view>
  52. </block>