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.

46 lines
2.2 KiB

  1. <view class='head'>
  2. <view class="tab" bindtap="changeTabs">
  3. <view class="{{tabIndex == 0 ? 'tabItem active' : 'tabItem'}}" id="0">收款</view>
  4. <view class="{{tabIndex == 1 ? 'tabItem active' : 'tabItem'}}" id="1">退款</view>
  5. </view>
  6. <view class='title1'>{{tabIndex == 1 ? '今日退款总额(元)' : '今日收款总额(元)'}}</view>
  7. <text class='title2'>{{(sum_real_payment2+sum_real_payment3+sum_real_payment1)/100}}</text>
  8. <text class='title3'>{{length}} 笔</text>
  9. <!-- <view class='acount'>
  10. <view>
  11. <text>已到账(元)</text>
  12. <text style='color:#fff;font-weight:bold;'>{{(sum_real_payment2+sum_real_payment3)/100}}</text>
  13. </view>
  14. <view>
  15. <text>未到账(元)</text>
  16. <text style='color:#fff;font-weight:bold;'>{{sum_real_payment1/100}}</text>
  17. </view>
  18. </view> -->
  19. </view>
  20. <view class="time clearfix">
  21. <text class='fl'>{{todayDate}}</text>
  22. <text class='fr' bindtap='gotoDate'>按日期查询</text>
  23. </view>
  24. <view class="contents">
  25. <view class='content clearfix' wx:for="{{list}}" wx:key="index">
  26. <view class='le'>
  27. <text>{{item.onickName ||'-'}}</text>
  28. <view style="color:#666; font-size: 25rpx;margin-top: 10rpx;">卡号:{{item.cardId}}</view>
  29. <view style="color:#666; font-size: 25rpx;margin-top: 10rpx;">订单号:{{item.orderId}}</view>
  30. <text style="font-size: 24rpx;">交易时间:{{item.createDate}}</text>
  31. </view>
  32. <view class='fr'>
  33. <!-- <image class="daishou" wx:if="{{item.payStatus==0}}" src='./../../static/images/weidaozhang.png' mode="widthFix"></image> -->
  34. <view wx:if="{{item.wxCardInfo && item.wxCardInfo.type==1}}" class="card">实体卡</view>
  35. <view wx:if="{{item.wxCardInfo && item.wxCardInfo.type==0}}" class="Ecard">电子卡</view>
  36. <text wx:if="{{item.payType != 1 }}">¥{{item.deductionAmount/100}}</text>
  37. <text wx:if="{{item.payType == 1 }}" style="color: #ff0000;">-¥{{item.deductionAmount/100}}</text>
  38. <text style="margin-top: 10rpx;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;">{{item.title}}</text>
  39. </view>
  40. <view wx:if="{{item.payStatus == 4 && item.payType == 0}}" id="refundMark">退</view>
  41. </view>
  42. </view>
  43. <view class='nocontent' wx:if="{{showNocontent}}">
  44. 暂无数据
  45. </view>