状态更改
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
|
||||
<a-form-item field="idCard" label="提现状态:" >
|
||||
|
||||
<div v-if="modalForm.examine_status!=3 && modalForm.payment_status==0">待结算</div>
|
||||
<div v-if="modalForm.examine_status==1 && modalForm.payment_status==0">待结算</div>
|
||||
<div v-else-if="modalForm.examine_status==2 && modalForm.payment_status==0">结算中</div>
|
||||
<div v-else-if="modalForm.examine_status==2 && modalForm.payment_status==1">结算成功</div>
|
||||
<div v-else-if="modalForm.examine_status==3 ">结算失败</div>
|
||||
@@ -64,6 +64,15 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="idCard" label="拒绝理由:" >
|
||||
<span v-if="modalForm.doctor_withdrawal_bank">{{modalForm.doctor_withdrawal_bank.province}}{{modalForm.doctor_withdrawal_bank.city}}{{modalForm.doctor_withdrawal_bank.county}}</span>
|
||||
<span v-else>-</span>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
</a-row>
|
||||
<a-divider />
|
||||
<div class="titlebox">
|
||||
<div class="bar"></div>
|
||||
@@ -205,7 +214,7 @@
|
||||
></numberModal>
|
||||
|
||||
<a-modal v-model:visible="rejectVisible" :modal-style="{width:'420px'}" @ok="handleConfirmReject"
|
||||
@cancel="()=>rejectVisible=false" >
|
||||
@cancel="closeReject" >
|
||||
<template #title>
|
||||
提示
|
||||
</template>
|
||||
@@ -215,7 +224,7 @@
|
||||
</a-form-item>
|
||||
</a-form>
|
||||
<template #footer>
|
||||
<a-button @click="()=>rejectVisible=false"><template #icon><icon-close /></template>取消</a-button>
|
||||
<a-button @click="closeReject"><template #icon><icon-close /></template>取消</a-button>
|
||||
<a-button type="primary" @click="handleConfirmReject"><template #icon><icon-check /></template>确认</a-button>
|
||||
</template>
|
||||
|
||||
@@ -389,6 +398,10 @@ const handleConfirmReject=()=>{
|
||||
}
|
||||
})
|
||||
};
|
||||
const closeReject=()=>{
|
||||
rejectVisible.value=false;
|
||||
proxy.$refs.rejectFormRef.resetFields();
|
||||
}
|
||||
const handleConfirmPay=async()=>{
|
||||
const {data,code}=await confirmPay(withdrawal_order_id.value);
|
||||
if(code==200){
|
||||
|
||||
Reference in New Issue
Block a user