C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
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>