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.
44 lines
2.2 KiB
44 lines
2.2 KiB
<!--pages/message/detail/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
|
|
<view style="height: 337rpx; background-image: linear-gradient(124deg, rgba(0, 122, 255, 0.67) 0%, rgba(13, 100, 227, 0.95) 100%);position: relative;">
|
|
<view style="width: 750rpx; height: 128rpx;position: absolute;padding: 32rpx;"></view>
|
|
<image style="height: 32rpx;width: 100%;position: absolute;bottom: 0rpx;" src="/assets/image/bg-vip.png"></image>
|
|
<view class="midArea" style="top:{{CustomBar + 10}}px">
|
|
<view class="text-xl" style="text-align: center;padding-top:48rpx">企业余额(元)</view>
|
|
<view class="text-xsl text-price" style="text-align: center;padding-top:32rpx">{{formate.numberFormat(accountMoney) || 0.00}}</view>
|
|
<view class="text-xl" style="text-align: center;padding-top:24rpx">提现中的金额:{{formate.numberFormat(frozenMoney)}}</view>
|
|
<view style="padding:32rpx 32rpx 40rpx 32rpx">
|
|
<van-button block type="info" bind:click="withdrawal">提现</van-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view style="padding:320rpx 32rpx 32rpx 32rpx">
|
|
<van-cell-group>
|
|
<van-cell is-link clickable url="/pages/settlement/bank-list/index" custom-class="group-top">
|
|
<view class="flex" slot="title" style="align-items: center">
|
|
<!-- <van-icon name="manager-o" size="18"/> -->
|
|
<text class="text-sg" style="margin-left:12rpx">银行卡</text>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell is-link clickable url="/pages/settlement/bill-list/index" custom-class="group-bottom">
|
|
<view class="flex" slot="title" style="align-items: center">
|
|
<!-- <van-icon name="user-circle-o" size="20"/> -->
|
|
<text class="text-sg" style="margin-left:12rpx">账单记录</text>
|
|
</view>
|
|
</van-cell>
|
|
</van-cell-group>
|
|
</view>
|
|
<view class="cu-custom" style="height:{{CustomBar}}px;z-index: 99;">
|
|
<view class="cu-bar fixed" style="height:{{CustomBar}}px;padding-top:{{StatusBar}}rpx;border-bottom:none">
|
|
<view class="action" bindtap="backspace">
|
|
<text class="weui_goback" style="color:white"></text>
|
|
</view>
|
|
<view class="content" style="top:{{StatusBar}}rpx;color:black;font-size:36rpx">
|
|
<view slot="content" class="text-white">企业钱包</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<notification id="qn-notification"/>
|