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.

16 rivejä
608 B

  1. <view wx:if="{{showPage}}" class='notes'>
  2. <view wx:for="{{data}}" wx:key="{{index}}" class='list'>
  3. <view class='record clearfix record1'>
  4. <text class='fl'>{{item.merchantName}}</text>
  5. <text class='fr'>-{{item.deductionAmount/100}}元</text>
  6. </view>
  7. <view class='clearfix record2'>
  8. <text class='fl'>{{item.updateDate}}</text>
  9. <text class='fr'>余 {{item.cardRemainAmount/100}}元</text>
  10. </view>
  11. </view>
  12. <view class="dingdan" wx:if="{{data.length==0}}">
  13. <image src="{{dingdanUrl}}" mode="widthFix"></image>
  14. <text>暂无交易明细</text>
  15. </view>
  16. </view>