Browse Source

提现优化

xhj 2 years ago
parent
commit
e2ce0c6995

+ 1 - 1
promote/withdrawal/bindCard/bindCard.vue

@@ -209,7 +209,7 @@ export default {
 				this.rValidDate = res.legalCertIdExpires;
 				if(this.rValidDate=='2099-12-31') this.isLong=true
 				this.bankAcctPhone = res.legalMp;
-				if(res.status==0) this.isEdit = false
+				if(res.status==0 || res.status==3) this.isEdit = false
 				else{
 					this.isEdit = true
 				}

+ 1 - 1
promote/withdrawal/cardList/cardList.vue

@@ -124,7 +124,7 @@
 			getStateText(item) {
 				var text = '待审核';
 				//银行卡状态 - 0、待审核 1、审核通过 2、审核失败
-				if (item.status == 0) {
+				if (item.status == 0 || item.status == 3) {
 					text = '待审核';
 				} else if (item.status == 1) {
 					if(this.cardType==1) text = '已绑定';

+ 2 - 2
promote/withdrawal/index/index.vue

@@ -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 = '已绑定';

+ 1 - 1
promote/withdrawal/myCard/myCard.vue

@@ -130,7 +130,7 @@
 			getStateText(item) {
 				var text = '待审核';
 				//银行卡状态 - 0、待审核 1、审核通过 2、审核失败
-				if (item.status == 0) {
+				if (item.status == 0 || item.status == 3) {
 					text = '待审核';
 				} else if (item.status == 1) {
 					text = '审核通过';