C端小程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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