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.
20 lines
895 B
20 lines
895 B
<!--pages/user/cashOut/index.wxml--> |
|
<view class="cashout-page"> |
|
<view class="profit-box"> |
|
<image src="../../../images/profit.png" class="profit-bg"></image> |
|
<view class="profit-info"> |
|
<view>当前可提现积分<text class="s-word">(积分比例为1:1)</text></view> |
|
<view class="fz70">{{userInfo.brokeragePrice || 0}}</view> |
|
</view> |
|
</view> |
|
<view class="tips">注:提现需在每月20-26日进行,其他时间不可提现</view> |
|
<view class="handle-box"> |
|
<view class="tit">提现金额</view> |
|
<view class="inp-box acea-row row-between row-middle"> |
|
<text class="fz50">¥</text> |
|
<input type="text" bindinput="cashChange" value="{{cashNum}}" placeholder="最低提现100积分" /> |
|
<view class="colO" bindtap="allCash">全部提现</view> |
|
</view> |
|
</view> |
|
<view class="submit-btn" bindtap="cashClick">提现</view> |
|
</view>
|
|
|