| | |
| | | <a-descriptions-item label="注册ip"> |
| | | {{ currentDetails.regIp ? currentDetails.regIp : '--' }} |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="总资产"> |
| | | {{ moneyData.totalMoney ? moneyData.totalMoney : '--' }} |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="可用余额"> |
| | | {{ moneyData.availableBalance ? moneyData.availableBalance : '--' }} |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="冻结金额"> |
| | | {{ moneyData.freezeMoney ? moneyData.freezeMoney : '--' }} |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="注册地址"> |
| | | {{ currentDetails.regAddress ? currentDetails.regAddress : '--' }} |
| | | </a-descriptions-item> |
| | |
| | | </a-descriptions-item> --> |
| | | |
| | | <a-descriptions-item label="身份证正面"> |
| | | <img :src="currentDetails.img2Key" alt="" style="width: 140px; height: 70px" /> |
| | | <el-image |
| | | style="width: 140px; height: 70px" |
| | | :src="currentDetails.img1Key" |
| | | :preview-src-list="[currentDetails.img1Key]" |
| | | > |
| | | </el-image> |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="身份证背面"> |
| | | <img :src="currentDetails.img1Key" alt="" style="width: 140px; height: 70px" /> |
| | | <el-image |
| | | style="width: 140px; height: 70px" |
| | | :src="currentDetails.img2Key" |
| | | :preview-src-list="[currentDetails.img2Key]" |
| | | > |
| | | </el-image> |
| | | </a-descriptions-item> |
| | | <a-descriptions-item label="手持身份证"> |
| | | <!-- <a-descriptions-item label="手持身份证"> |
| | | <img :src="currentDetails.img3Key" alt="" style="width: 140px; height: 70px" /> |
| | | </a-descriptions-item> |
| | | </a-descriptions-item> --> |
| | | </a-descriptions> |
| | | </a-modal> |
| | | </div> |
| | | </template> |
| | | <script> |
| | | import { getMoney } from '@/api/home' |
| | | |
| | | export default { |
| | | components: {}, |
| | | props: { |
| | |
| | | data() { |
| | | return { |
| | | userDialog: false, |
| | | moneyData: {}, |
| | | } |
| | | }, |
| | | methods: {}, |
| | | watch: { |
| | | userDialog(v) { |
| | | if (v) { |
| | | this.getMoneys() |
| | | } |
| | | }, |
| | | }, |
| | | mounted() { |
| | | // this.getMoneys() |
| | | }, |
| | | activated() { |
| | | // this.getMoneys() |
| | | }, |
| | | methods: { |
| | | getMoneys() { |
| | | getMoney({ userId: this.currentDetails.id }).then((res) => { |
| | | if (res.status == 0) { |
| | | console.log(res) |
| | | let arr = res.data.filter((item) => item.accectType === 'IN') |
| | | this.moneyData = arr[0] || {} |
| | | } |
| | | }) |
| | | }, |
| | | }, |
| | | } |
| | | </script> |