|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <el-dialog :visible.sync="visible" v-bind="modalOptions">
|
|
|
+ <el-dialog :visible.sync="visible" v-bind="modalOptions" @close="cardData = {}">
|
|
|
<div>
|
|
|
<el-descriptions title="" :column="2" border>
|
|
|
<el-descriptions-item label="店铺名称:">
|
|
@@ -60,6 +60,15 @@
|
|
|
<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>
|
|
|
|
|
@@ -141,7 +150,7 @@
|
|
|
<script>
|
|
|
import RelatedOrders from './RelatedOrders'
|
|
|
import LedgerInformation from './LedgerInformation'
|
|
|
-import { withdrawalGetById, withdrawalGetById2 } from '@/api/withdrawal'
|
|
|
+import { withdrawalGetById, withdrawalGetById2,getWithdrawalAccount } from '@/api/withdrawal'
|
|
|
|
|
|
export default {
|
|
|
name: 'DetailModal',
|
|
@@ -180,7 +189,9 @@ export default {
|
|
|
summaryHsbSplitedAmount: '',
|
|
|
summaryHsbSplitRemainAmount: '',
|
|
|
summaryNotHsbAmount: ''
|
|
|
- }
|
|
|
+ },
|
|
|
+ // 身份证信息
|
|
|
+ cardData:{}
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -191,6 +202,7 @@ export default {
|
|
|
this.formData = Object.assign(this.$options.data().formData, params)
|
|
|
if (params.withdrawalId) {
|
|
|
this.getInfo(params.withdrawalId)
|
|
|
+ this.getWithdrawalInfo(params.shopId)
|
|
|
}
|
|
|
this.visible = true
|
|
|
},
|
|
@@ -234,6 +246,11 @@ export default {
|
|
|
} finally {
|
|
|
loading.close()
|
|
|
}
|
|
|
+ },
|
|
|
+ // 单独用来请求提现的身份证以及手机号姓名等
|
|
|
+ async getWithdrawalInfo(id){
|
|
|
+ let {data} = await getWithdrawalAccount({ shopIds: id })
|
|
|
+ this.cardData = data[0]
|
|
|
}
|
|
|
}
|
|
|
}
|