|
@@ -45,28 +45,28 @@
|
|
|
<span>红旗资产</span>
|
|
|
<button class="profit-btn button-click-effect" @click="handleRedFlagWithdraw">提现</button>
|
|
|
</div>
|
|
|
- <div class="profit-amount">¥{{ userInfo.dayred }}</div>
|
|
|
+ <div class="profit-amount">¥{{ userInfo.coins }}</div>
|
|
|
</div>
|
|
|
<div class="profit-right">
|
|
|
<div class="profit-header">
|
|
|
<span>退休补贴</span>
|
|
|
<button class="profit-btn button-click-effect" @click="handleRetirementWithdraw">提现</button>
|
|
|
</div>
|
|
|
- <div class="profit-amount">¥{{ userInfo.guquan }}</div>
|
|
|
+ <div class="profit-amount">¥{{ userInfo.txbt }}</div>
|
|
|
</div>
|
|
|
<div class="profit-left">
|
|
|
<div class="profit-header">
|
|
|
<span>党员薪资</span>
|
|
|
<button class="profit-btn button-click-effect" @click="handlePartySalaryWithdraw">提现</button>
|
|
|
</div>
|
|
|
- <div class="profit-amount">¥{{ userInfo.coins }}</div>
|
|
|
+ <div class="profit-amount">¥{{ userInfo.dyxz }}</div>
|
|
|
</div>
|
|
|
<div class="profit-right">
|
|
|
<div class="profit-header">
|
|
|
<span>每日现金</span>
|
|
|
<button class="profit-btn button-click-effect" @click="handleDailyCashWithdraw">提现</button>
|
|
|
</div>
|
|
|
- <div class="profit-amount">¥{{ userInfo.xianjin }}</div>
|
|
|
+ <div class="profit-amount">¥{{ userInfo.dayred }}</div>
|
|
|
</div>
|
|
|
<div class="profit-left">
|
|
|
<div class="profit-header">
|
|
@@ -80,7 +80,7 @@
|
|
|
<span>原始股权</span>
|
|
|
<button class="profit-btn button-click-effect" @click="handleOriginalSharesWithdraw">提现</button>
|
|
|
</div>
|
|
|
- <div class="profit-amount">¥{{ userInfo.score }}</div>
|
|
|
+ <div class="profit-amount">¥{{ userInfo.guquan }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -228,7 +228,7 @@ export default {
|
|
|
// 党员薪资提现
|
|
|
handlePartySalaryWithdraw() {
|
|
|
const minAmount = 60000; // 6万起提
|
|
|
- if (parseFloat(this.userInfo.coins) < minAmount) {
|
|
|
+ if (parseFloat(this.userInfo.dyxz) < minAmount) {
|
|
|
alert('余额不足,最低提现金额为6万元');
|
|
|
return;
|
|
|
}
|
|
@@ -237,7 +237,7 @@ export default {
|
|
|
// 每日现金提现
|
|
|
handleDailyCashWithdraw() {
|
|
|
const minAmount = 20; // 20元起提
|
|
|
- if (parseFloat(this.userInfo.xianjin) < minAmount) {
|
|
|
+ if (parseFloat(this.userInfo.dayred) < minAmount) {
|
|
|
alert('余额不足,满20元可提现');
|
|
|
return;
|
|
|
}
|