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
1.4 KiB
46 lines
1.4 KiB
<!--pages/withdrawal/detail/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">记录详情</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-form-group" style="margin-top:24rpx">
|
|
<view class="content">
|
|
<text class="text-black ">流水号</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{orderDetails.tradeSn}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="content">
|
|
<text class="text-black ">状态</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{orderDetails.status==0?'正在处理':(orderDetails.status==1?'提现成功':'提现失败')}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="content">
|
|
<text class="text-black ">支出</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{formate.formateMoney(orderDetails.money)}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="content">
|
|
<text class="text-black ">时间</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{orderDetails.createTime}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="content">
|
|
<text class="text-black ">余额</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{formate.formateMoney(orderDetails.remainMoney)}}元</text>
|
|
</view>
|
|
</view>
|