promotion.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <view>
  2. <view class="view-page">
  3. <navbar page-name="活动"></navbar>
  4. <view class="page-content" style='height:calc(100vh - {{navH}}px)'>
  5. <view class="margintopp"></view>
  6. <block wx:for="{{arr}}" wx:key="index">
  7. <block wx:if="{{arr[index].wp_isexpire == 'Y'}}">
  8. <view class="pmBox" bindtap="hrefPm" data-index="{{arr[index].wp_href}}">
  9. <view class="pmimgdiv">
  10. <image class="imagepic" src="{{arr[index].wp_url}}" bindload="finish"></image>
  11. </view>
  12. <view class="pmtextdiv">
  13. <view class="pmtext_left">
  14. <view class="pmdescription">二级标题</view>
  15. <view class="pmddate">注释文字</view>
  16. </view>
  17. <view class="pmtext_right">
  18. <view class="button_right">按钮文字</view>
  19. </view>
  20. </view>
  21. </view>
  22. </block>
  23. <block wx:if="{{arr[index].wp_isexpire == 'N'}}">
  24. <view class="pmBoxEnd" data-index="{{arr[index].wp_href}}">
  25. <view class="pmimgdiv">
  26. <image class="imagepic" src="{{arr[index].wp_url}}" bindload="finish"></image>
  27. </view>
  28. <view class="pmtextdiv">
  29. <view class="pmtext_left">
  30. <view class="pmdescription">{{arr[index].wp_desc}}</view>
  31. <view class="pmddate">{{arr[index].wp_startdate}} -- {{arr[index].wp_enddate}}</view>
  32. </view>
  33. <view class="pmtext_right">
  34. <view class="button_overdue">活动结束</view>
  35. </view>
  36. </view>
  37. </view>
  38. </block>
  39. </block>
  40. <div class="endbottom"> </div>
  41. </view>
  42. <tabbar _tabBarInd="{{3}}"></tabbar>
  43. </view>
  44. </view>