index.wxml 1002 B

123456789101112131415161718
  1. <view class="aDet" style="background-color: {{banner.bgColor}};">
  2. <image src="{{banner.icon}}" class="headImg" />
  3. <view class="body">
  4. <view class="template" style="background-image:url({{item.bgImg}}) ;" wx:for="{{cardActivityList}}" wx:key="id">
  5. <image src="{{item.templateTypeList[item.currentIndex].bgImg}}" class="content" />
  6. <view class="btns">
  7. <image src="http://reader-wx.ai160.com/images/reader/card/change.png" class="changeBtn"
  8. data-index='{{index}}' data-item='{{item}}' bindtap="changeTemplate" />
  9. <image src="http://reader-wx.ai160.com/images/reader/card/record_blessings2.png" class="recording"
  10. data-index='{{index}}' bindtap="toRecording" />
  11. </view>
  12. </view>
  13. </view>
  14. <view class="footerBox">
  15. <image src="http://reader-wx.ai160.com/images/reader/card/my_card.png" class="goGreeting"
  16. bindtap="jumpMyGreeing" />
  17. </view>
  18. </view>