|
@@ -63,9 +63,18 @@
|
|
|
<el-descriptions-item label="非惠市宝订单的相关提现金额:">
|
|
|
{{ formData.summaryNotHsbAmount }}
|
|
|
</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="已认证身份姓名">
|
|
|
+ {{ cardData.name }}
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="已认证身份证">
|
|
|
+ {{ cardData.idCard }}
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="已认证电话号码">
|
|
|
+ {{ cardData.phone}}
|
|
|
+ </el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
</div>
|
|
|
- <div style="color: red;font-size: 16px;text-align: center;">* 请确认您已转账成功,再点击确认。说明:分账金额代表已打款,T+1到账</div>
|
|
|
+ <div style="color: red;font-size: 16px;text-align: center; margin-top:20px;">* 请确认您已转账成功,再点击确认。说明:分账金额代表已打款,T+1到账</div>
|
|
|
<el-input v-show="formData.state == 3" v-model="formData.cause" type="textarea" autosize placeholder="请输入拒绝打款理由">
|
|
|
</el-input>
|
|
|
<div v-show="formData.state == 2" style="margin-top: 30px;">
|
|
@@ -86,7 +95,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { withdrawalGetById, withdrawalHandle } from '@/api/withdrawal'
|
|
|
+import { withdrawalGetById, withdrawalHandle,getWithdrawalAccount } from '@/api/withdrawal'
|
|
|
|
|
|
export default {
|
|
|
name: 'WithdrawalProcessing',
|
|
@@ -120,7 +129,9 @@ export default {
|
|
|
summaryNotHsbAmount: ''
|
|
|
},
|
|
|
formRules: {
|
|
|
- }
|
|
|
+ },
|
|
|
+ // 身份证信息
|
|
|
+ cardData:{}
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -136,6 +147,7 @@ export default {
|
|
|
this.initList()
|
|
|
if (params.withdrawalId) {
|
|
|
this.getInfo(params.withdrawalId)
|
|
|
+ this.getWithdrawalInfo(params.shopId)
|
|
|
} else {
|
|
|
this.$refs.formData && this.$refs.formData.resetFields()
|
|
|
}
|
|
@@ -170,6 +182,11 @@ export default {
|
|
|
loading.close()
|
|
|
}
|
|
|
},
|
|
|
+ // 单独用来请求提现的身份证以及手机号姓名等
|
|
|
+ async getWithdrawalInfo(id){
|
|
|
+ let {data} = await getWithdrawalAccount({ shopIds: id })
|
|
|
+ this.cardData = data[0]
|
|
|
+ },
|
|
|
// 拒绝打款
|
|
|
async handleRefuse() {
|
|
|
if (this.formData.state == 3) {
|