C端小程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 wiersze
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>