|
|
@@ -151,7 +151,7 @@ font-weight: 500;">{{ findMyAmountData.withdrawableAmount }}</span> </span>
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button size="small" @click="withdrawalVisible = false">取 消</el-button>
|
|
|
- <el-button size="small" type="danger" :disabled="!is_post" @click="withdrawalRequest">确 定</el-button>
|
|
|
+ <el-button size="small" type="danger" :disabled="!is_post" :loading="withdrawLoading" @click="withdrawalRequest">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
@@ -343,6 +343,7 @@ export default {
|
|
|
this.bankCardInfo = data;
|
|
|
},
|
|
|
withdrawalRequest() {
|
|
|
+ this.withdrawLoading = true
|
|
|
let params = {
|
|
|
amount: this.extract,
|
|
|
fromBankCardId: this.bankCardInfo.bankNumber,
|
|
|
@@ -361,6 +362,7 @@ export default {
|
|
|
message: res.msg,
|
|
|
});
|
|
|
}
|
|
|
+ this.withdrawLoading = false
|
|
|
});
|
|
|
},
|
|
|
instantWithdrawal() {
|