Commit 82729147 authored by zhangsan's avatar zhangsan

1

parent de634f20
...@@ -186,7 +186,6 @@ getBankList() ...@@ -186,7 +186,6 @@ getBankList()
<div style="display: flex;align-items: center;"> <div style="display: flex;align-items: center;">
<input <input
v-model="formData.bankNum" :disabled="isEdit" type="text" autoComplete="off" placeholder="请填写您的银行卡号" maxlength="23" v-model="formData.bankNum" :disabled="isEdit" type="text" autoComplete="off" placeholder="请填写您的银行卡号" maxlength="23"
@input="handleCardInput"
> >
</div> </div>
</div> </div>
......
...@@ -50,10 +50,10 @@ const handleWithdraw = async () => { ...@@ -50,10 +50,10 @@ const handleWithdraw = async () => {
let data = {} let data = {}
if(type.value != 1){ if(type.value != 1){
data = { data = {
amount: amount.value, withdrawAmount: amount.value,
bankId: bankId.value, bankId: bankId.value,
password: password.value, password: password.value,
type: type.value withdrawType: type.value
} }
}else{ }else{
data = { data = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment