|
@@ -100,14 +100,19 @@
|
|
|
</image>
|
|
|
<text style="margin-left: 5px;font-size: 14px;color: #333;">提现</text>
|
|
|
</view>
|
|
|
+ <view class="dis a-c" v-if="item.transactionType==4">
|
|
|
+ <image src="/static/image/wallet/tuikuan.png" mode="">
|
|
|
+ </image>
|
|
|
+ <text style="margin-left: 5px;font-size: 14px;color: #333;">退款</text>
|
|
|
+ </view>
|
|
|
<text style="font-size: 14px;font-weight: bold;"
|
|
|
:style="{ color: item.transactionType == 3 ? '#333' : '#FF5600' }">{{item.transactionType==3?'-':'+'}}{{item.amount}}</text>
|
|
|
</view>
|
|
|
- <text v-if="item.transactionType !== 3">订单号:{{item.subOrderNo}}</text>
|
|
|
- <text>交易号:{{item.id}}</text>
|
|
|
+ <text v-if="!['3','4'].includes(item.transactionType)">订单号:{{item.subOrderNo}}</text>
|
|
|
+ <text v-if="['3','4'].includes(item.transactionType)">交易号:{{item.auditiingId}}</text>
|
|
|
<view class="dis a-c j-s">
|
|
|
- <text>{{item.signingTime}}</text>
|
|
|
- <text v-if="item.transactionType!=3">车牌号:{{item.licenseNo}}</text>
|
|
|
+ <text>{{item.createTime}}</text>
|
|
|
+ <text v-if="!['3','4'].includes(item.transactionType)">车牌号:{{item.licenseNo}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -222,6 +227,7 @@
|
|
|
break;
|
|
|
case '2':
|
|
|
case '3':
|
|
|
+ case '4':
|
|
|
this.navigate({
|
|
|
url: "/pages/wallet/billInfo?type=" + item.transactionType + '&id=' + item.id +
|
|
|
'&subOrderNo=' + item.subOrderNo + '&amount=' + item.amount,
|
|
@@ -279,6 +285,7 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
},
|
|
|
//查询事件
|
|
|
querysearch() {
|
|
@@ -297,6 +304,11 @@
|
|
|
this.dataList = res.data.data.content;
|
|
|
this.sumAmountSR = res.data.sumAmountSR;
|
|
|
this.sumAmountZC = res.data.sumAmountZC;
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: data.msg,
|
|
|
+ icon: 'none',
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
searchPopup() {
|