|
|
@@ -55,7 +55,7 @@
|
|
|
</view>
|
|
|
<view class="dflex money pd50">
|
|
|
<text>¥</text>
|
|
|
- <input adjust-position="false" placeholder="输入提现金额" placeholder-class="placeholder" type="number" :value="allmoney" @input="getwithdrawal" />
|
|
|
+ <input adjust-position="false" placeholder="输入提现金额" placeholder-class="placeholder" type="digit" :value="allmoney" @input="getwithdrawal" />
|
|
|
</view>
|
|
|
<view class="dflex tx mt20">
|
|
|
<text class="mcolor">可提现金额 {{ countMoney }}元</text>
|
|
|
@@ -153,7 +153,7 @@ export default {
|
|
|
getStateText() {
|
|
|
var text = '待审核';
|
|
|
//银行卡状态 - 0、待审核 1、审核通过 2、审核失败
|
|
|
- if (this.settlementInfo.status == 0) {
|
|
|
+ if (this.settlementInfo.status == 0 || this.settlementInfo.status == 3) {
|
|
|
text = '待审核';
|
|
|
} else if (this.settlementInfo.status == 1) {
|
|
|
if(this.cardType==1) text = '已绑定';
|