badges.wxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!--pages/badges/badges.wxml-->
  2. <view style="{{tabItem==1?'background-color: #6171A6':'background-color: #5790AE'}}">
  3. <view class="head">
  4. <image src="/static/img/back.png" bindtap="backPge"></image>
  5. <image src="/static/logo.png"></image>
  6. <text>TOKER精酿</text>
  7. </view>
  8. <view class="badges-tab">
  9. <view class="tab-item" bindtap="swicthTab" data-tab="1">
  10. <text style="{{tabItem==1?'background-color: #FF5700':''}}"></text>
  11. <text style="{{tabItem==1?'color: #FF5700':''}}">成就徽章</text>
  12. </view>
  13. <view class="tab-item" bindtap="swicthTab" data-tab="2">
  14. <text style="{{tabItem==2?'background-color: #FF5700':''}}"></text>
  15. <text style="{{tabItem==2?'color: #FF5700':''}}">精酿徽章</text>
  16. </view>
  17. </view>
  18. <view class="badges-box">
  19. <view class="badges-head">
  20. <text>{{tabItem==1?'成就':'酒单'}}徽章 <text style="color: #FF5700;">04</text>/20</text>
  21. <text bindtap="rulesShow">徽章规则</text>
  22. <image bindtap="rulesShow" src="/static/img/arrow.png"></image>
  23. </view>
  24. <view class="badges-list">
  25. <view class="badges-items" wx:for="{{7}}" wx:key="index">
  26. <image src="/static/origin.png" style="opacity: 0.3;"></image>
  27. <text>点评大师</text>
  28. <view class="badges-lock">
  29. <image src="/static/img/lockBadges.png"></image>
  30. <text>未获得</text>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <view hidden="{{rulesStatus}}" class="rules-box">
  37. <view catchtap="rulesShow" class="rules-bg"></view>
  38. <view class="rules-view">
  39. <view class="rules-title">
  40. <text>徽章规则</text>
  41. <image src="/static/img/close3.png" catchtap="rulesShow"></image>
  42. </view>
  43. <view class="rules-item">
  44. 1. 完成20条以上评论,即可获得“点评大师”称号;连续签到30天,即可点亮“签到达人”徽章;在本平台品过16款以上精酿,即可点亮“品酒大师”称号。
  45. </view>
  46. <view class="rules-item">
  47. 2. 完成20条以上评论,即可获得“点评大师”称号;连续签到30天,即可点亮“签到达人”徽章;
  48. </view>
  49. <view class="rules-item">
  50. 3. 在本平台品过16款以上精酿,即可点亮“品酒大师”称号。
  51. </view>
  52. <view class="rules-item">
  53. 4. 完成20条以上评论,即可获得“点评大师”称号;连续签到30天,即可点亮“签到达人”徽章。
  54. </view>
  55. </view>
  56. </view>