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.
40 lines
1.1 KiB
40 lines
1.1 KiB
<!--pages/bank/bill-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 wx:if="{{billInfo}}" 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">{{billInfo.id}}</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">{{billInfo.type}}</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">{{billInfo.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(billInfo.remainMoney)}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|