修复域名详情页查看认证信息和上传实名信息点击无效的问题
This commit is contained in:
parent
b8ae5c7b3d
commit
74043ba5e1
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<Dialog v-bind="$attrs" :options="{ title: '实名认证信息', size: '3xl' }">
|
<Dialog v-bind="$attrs" :options="{ title: '实名认证信息', size: '3xl' }" v-model="show">
|
||||||
<template #body>
|
<template #body>
|
||||||
<div v-if="loading" class="flex justify-center items-center py-12">
|
<div v-if="loading" class="flex justify-center items-center py-12">
|
||||||
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-600"></div>
|
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-600"></div>
|
||||||
@ -215,6 +215,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
show: true,
|
||||||
loading: false,
|
loading: false,
|
||||||
error: null,
|
error: null,
|
||||||
realNameData: null
|
realNameData: null
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<Dialog v-bind="$attrs" :options="{ title: '上传实名资料', size: '2xl' }">
|
<Dialog v-bind="$attrs" :options="{ title: '上传实名资料', size: '2xl' }" v-model="show">
|
||||||
<template #body>
|
<template #body>
|
||||||
<div class="space-y-6">
|
<div class="space-y-6">
|
||||||
<!-- 步骤指示器 -->
|
<!-- 步骤指示器 -->
|
||||||
@ -322,6 +322,7 @@ export default {
|
|||||||
emits: ['success', 'close'],
|
emits: ['success', 'close'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
show: true,
|
||||||
loading: false,
|
loading: false,
|
||||||
formData: {
|
formData: {
|
||||||
certType: 'personal',
|
certType: 'personal',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user