| | |
| | | <template> |
| | | <div> |
| | | <a-modal title="用户详情" :width="1000" :visible="userDialog" :footer="false" @cancel="userDialog = false"> |
| | | <a-descriptions bordered :title="currentDetails.realName ? currentDetails.realName : '未认证'" :column="{ xxl: 3, xl: 3, lg: 3, md: 3, sm: 2, xs: 1 }"> |
| | | <a-descriptions |
| | | bordered |
| | | :title="currentDetails.realName ? currentDetails.realName : '未认证'" |
| | | :column="{ xxl: 3, xl: 3, lg: 3, md: 3, sm: 2, xs: 1 }" |
| | | > |
| | | <a-descriptions-item label="用户ID"> |
| | | {{ currentDetails.id ? currentDetails.id : '--' }} |
| | | </a-descriptions-item> |
| | |
| | | <!-- <a-descriptions-item label="总资金(¥)"> |
| | | {{ Number(currentDetails.userAmt + currentDetails.userIndexAmt).toFixed(2) }} |
| | | </a-descriptions-item> --> |
| | | <a-descriptions-item label="印股总资金(¥)"> |
| | | <!-- <a-descriptions-item label="印股总资金(¥)"> |
| | | {{ currentDetails.userAmt ? currentDetails.userAmt : '0' }} |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="美股总资金(¥)"> |
| | | {{ currentDetails.userIndexAmt ? currentDetails.userIndexAmt : '0' }} |
| | | </a-descriptions-item> |
| | | </a-descriptions-item> --> |
| | | <!-- <a-descriptions-item label="期货总资金(¥)"> |
| | | {{ currentDetails.userFutAmt ? currentDetails.userFutAmt : '0' }} |
| | | </a-descriptions-item> --> |
| | | <a-descriptions-item label="印股可用资金(¥)"> |
| | | <!-- <a-descriptions-item label="印股可用资金(¥)"> |
| | | {{ currentDetails.enableAmt ? currentDetails.enableAmt : '0' }} |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="美股可用资金(¥)"> |
| | | {{ currentDetails.enableIndexAmt ? currentDetails.enableIndexAmt : '0' }} |
| | | </a-descriptions-item> |
| | | </a-descriptions-item> --> |
| | | <!-- <a-descriptions-item label="期货可用资金(¥)"> |
| | | {{ currentDetails.enableFutAmt ? currentDetails.enableFutAmt : '0' }} |
| | | </a-descriptions-item> --> |
| | | |
| | | <a-descriptions-item label="身份证正面"> |
| | | <img :src="currentDetails.img2Key" alt="" style="width:140px;height: 70px;"> |
| | | <img :src="currentDetails.img2Key" alt="" style="width: 140px; height: 70px" /> |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="身份证背面"> |
| | | <img :src="currentDetails.img1Key" alt="" style="width:140px;height: 70px;"> |
| | | <img :src="currentDetails.img1Key" alt="" style="width: 140px; height: 70px" /> |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="手持身份证"> |
| | | <img :src="currentDetails.img3Key" alt="" style="width:140px;height: 70px;"> |
| | | <img :src="currentDetails.img3Key" alt="" style="width: 140px; height: 70px" /> |
| | | </a-descriptions-item> |
| | | </a-descriptions> |
| | | </a-modal> |
| | |
| | | </template> |
| | | <script> |
| | | export default { |
| | | components: {}, |
| | | props: { |
| | | currentDetails: { |
| | | type: Object |
| | | } |
| | | components: {}, |
| | | props: { |
| | | currentDetails: { |
| | | type: Object, |
| | | }, |
| | | data () { |
| | | return { |
| | | userDialog: false |
| | | } |
| | | }, |
| | | methods: { |
| | | |
| | | }, |
| | | data() { |
| | | return { |
| | | userDialog: false, |
| | | } |
| | | }, |
| | | methods: {}, |
| | | } |
| | | </script> |