@@ -76,7 +77,9 @@
item.balance?.toFixed(2) }}
-
+
{{ item.nums > 0 ? "增加:+" : "减少:"
}}{{ (item.nums).toFixed(2) }}
@@ -156,7 +159,8 @@ export default {
loading: false,
showTerm: false,
list: [],
- isVIP: ''
+ isVIP: '',
+ hide: true,
}
},
methods: {
diff --git a/src/views/User/Wallet/Cashout/Cashout.vue b/src/views/User/Wallet/Cashout/Cashout.vue
index 67dcdc7..7f1f80e 100644
--- a/src/views/User/Wallet/Cashout/Cashout.vue
+++ b/src/views/User/Wallet/Cashout/Cashout.vue
@@ -9,7 +9,8 @@
![]()
- {{ card.realname }}({{ card.bankcardnumber }})
+ {{ card.realname }}({{ card.bankcardnumber
+ }})
请选择到账账户
@@ -46,7 +47,8 @@
![]()
- {{ item.realname }}({{ item.bankcardnumber }})
+ {{ item.realname }}({{ item.bankcardnumber
+ }})
@@ -86,12 +88,12 @@ export default {
Promise.all([
this.$get('/v1/client/DUsersClient').then(data => {
this.wallet.Balance = data.data.zijin;
- if (data.data.userlevelname === '会员') {
- this.$showFailToast('您还未购买礼包产品成为VIP,暂不能提现!')
- setTimeout(() => {
- this.$navigate('/My')
- }, 1500);
- }
+ // if (data.data.userlevelname === '会员') {
+ // this.$showFailToast('您还未购买礼包产品成为VIP,暂不能提现!')
+ // setTimeout(() => {
+ // this.$navigate('/My')
+ // }, 1500);
+ // }
}).catch(err => {
this.$showFailToast(err.message);
}),
|