C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
536 B

  1. <view wx:if="{{showPage}}" class='notes'>
  2. <!-- 券的详情页面 -->
  3. <view>
  4. <view>
  5. <text class="title">交易明细:</text>
  6. </view>
  7. <view wx:for="{{data}}" wx:key="{{index}}">
  8. <view class='record clearfix record1'>
  9. <text>{{item.merchantName}}</text>
  10. <text>-{{item.payment/100}}元</text>
  11. </view>
  12. <view class='record clearfix record2'>
  13. <text>{{item.updateDate}}</text>
  14. <text>余额{{item.cardRemainAmount/100}}元</text>
  15. </view>
  16. </view>
  17. </view>
  18. </view>