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.
48 lines
1.4 KiB
48 lines
1.4 KiB
<!--pages/balance/detail/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">{{type == 0 ? '收入详细' : '支出详细'}}</view>
|
|
</cu-custom>
|
|
|
|
<view wx:if="{{dataDetails}}" style="margin-top:24rpx">
|
|
<view class="cu-form-group">
|
|
<view class="content">
|
|
<text class="text-black ">流水号</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{dataDetails.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">{{dataDetails.operTypeStr}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="content">
|
|
<text class="text-black ">{{type == 0 ? '收入' : '支出'}}</text>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">{{formate.formateMoney(dataDetails.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">{{dataDetails.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(dataDetails.remainMoney)}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|