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.
|
- <view class='head'>
- <view class="tab" bindtap="changeTabs">
- <view class="{{tabIndex == 0 ? 'tabItem active' : 'tabItem'}}" id="0">收款</view>
- <view class="{{tabIndex == 1 ? 'tabItem active' : 'tabItem'}}" id="1">退款</view>
- </view>
- <view class='title1'>{{tabIndex == 1 ? '今日退款总额(元)' : '今日收款总额(元)'}}</view>
- <text class='title2'>{{(sum_real_payment2+sum_real_payment3+sum_real_payment1)/100}}</text>
- <text class='title3'>{{length}} 笔</text>
- <!-- <view class='acount'>
- <view>
- <text>已到账(元)</text>
- <text style='color:#fff;font-weight:bold;'>{{(sum_real_payment2+sum_real_payment3)/100}}</text>
- </view>
- <view>
- <text>未到账(元)</text>
- <text style='color:#fff;font-weight:bold;'>{{sum_real_payment1/100}}</text>
- </view>
- </view> -->
- </view>
- <view class="time clearfix">
- <text class='fl'>{{todayDate}}</text>
- <text class='fr' bindtap='gotoDate'>按日期查询</text>
- </view>
- <view class="contents">
- <view class='content clearfix' wx:for="{{list}}" wx:key="index">
- <view class='le'>
- <text>{{item.onickName ||'-'}}</text>
- <view style="color:#666; font-size: 25rpx;margin-top: 10rpx;">卡号:{{item.cardId}}</view>
- <view style="color:#666; font-size: 25rpx;margin-top: 10rpx;">订单号:{{item.orderId}}</view>
- <text style="font-size: 24rpx;">交易时间:{{item.createDate}}</text>
- </view>
-
- <view class='fr'>
- <!-- <image class="daishou" wx:if="{{item.payStatus==0}}" src='./../../static/images/weidaozhang.png' mode="widthFix"></image> -->
- <view wx:if="{{item.wxCardInfo && item.wxCardInfo.type==1}}" class="card">实体卡</view>
- <view wx:if="{{item.wxCardInfo && item.wxCardInfo.type==0}}" class="Ecard">电子卡</view>
- <text wx:if="{{item.payType != 1 }}">¥{{item.deductionAmount/100}}</text>
- <text wx:if="{{item.payType == 1 }}" style="color: #ff0000;">-¥{{item.deductionAmount/100}}</text>
- <text style="margin-top: 10rpx;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;">{{item.title}}</text>
- </view>
- <view wx:if="{{item.payStatus == 4 && item.payType == 0}}" id="refundMark">退</view>
- </view>
- </view>
- <view class='nocontent' wx:if="{{showNocontent}}">
- 暂无数据
- </view>
|