|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
<div class="withdraw-cash-container">
|
|
|
<div class="w-343">
|
|
|
- <p class="btn-rule">
|
|
|
+ <p class="btn-rule"
|
|
|
+ @click="booRule = true">
|
|
|
<a href="javascript:;">提现规则</a>
|
|
|
</p>
|
|
|
<h2>提现</h2>
|
|
@@ -16,8 +17,9 @@
|
|
|
</van-field>
|
|
|
<p class="help">
|
|
|
<span>可提现金额 ¥{{ userinfo.user_balance | fen2Yuan }}元</span>
|
|
|
- <a href="javascript:;"
|
|
|
- @click="allWithdrawCash">全部提现></a>
|
|
|
+ <a :class="{active: userinfo.user_balance > 0}"
|
|
|
+ href="javascript:;"
|
|
|
+ @click="allWithdrawCash">全部提现</a>
|
|
|
</p>
|
|
|
<van-button
|
|
|
class="btn-withdraw-cash"
|
|
@@ -26,11 +28,15 @@
|
|
|
@click="withdrawCash">提现
|
|
|
</van-button>
|
|
|
</div>
|
|
|
+ <van-popup
|
|
|
+ closeable
|
|
|
+ v-model="booRule">内容
|
|
|
+ </van-popup>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { Field, Button, Toast } from 'vant'
|
|
|
+import { Field, Button, Toast, Popup } from 'vant'
|
|
|
import { apiUserCash } from './api/api'
|
|
|
import { fen2Yuan, yuan2Fen } from '@/utils'
|
|
|
|
|
@@ -38,12 +44,14 @@ export default {
|
|
|
name: 'index',
|
|
|
components: {
|
|
|
'van-field': Field,
|
|
|
- 'van-button': Button
|
|
|
+ 'van-button': Button,
|
|
|
+ 'van-popup': Popup
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
amount: '',
|
|
|
- booLock: false
|
|
|
+ booLock: false,
|
|
|
+ booRule: false
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -56,6 +64,7 @@ export default {
|
|
|
allWithdrawCash () {
|
|
|
const amount = this.userinfo.user_balance
|
|
|
if (amount <= 0) {
|
|
|
+ Toast('暂无可提现金额')
|
|
|
return
|
|
|
}
|
|
|
this.amount = fen2Yuan(amount)
|
|
@@ -148,11 +157,12 @@ h2 {
|
|
|
}
|
|
|
|
|
|
::v-deep .van-cell__value {
|
|
|
- padding: 11px 0;
|
|
|
+ padding: 8px 0;
|
|
|
|
|
|
input {
|
|
|
- height: 20px;
|
|
|
- font-size: 14px;
|
|
|
+ height: 26px;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
color: #333;
|
|
|
-webkit-text-fill-color: #333;
|
|
|
opacity: 1;
|
|
@@ -184,8 +194,12 @@ h2 {
|
|
|
font-size: 14px;
|
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
|
font-weight: 500;
|
|
|
- color: #007AFF;
|
|
|
line-height: 20px;
|
|
|
+ color: #ccc;
|
|
|
+
|
|
|
+ &.active {
|
|
|
+ color: #007AFF;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|