修复域名详情页查看认证信息和上传实名信息点击无效的问题

This commit is contained in:
jingrow 2025-08-03 15:45:03 +08:00
parent b8ae5c7b3d
commit 74043ba5e1
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<Dialog v-bind="$attrs" :options="{ title: '实名认证信息', size: '3xl' }">
<Dialog v-bind="$attrs" :options="{ title: '实名认证信息', size: '3xl' }" v-model="show">
<template #body>
<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>
@ -215,6 +215,7 @@ export default {
},
data() {
return {
show: true,
loading: false,
error: null,
realNameData: null

View File

@ -1,5 +1,5 @@
<template>
<Dialog v-bind="$attrs" :options="{ title: '上传实名资料', size: '2xl' }">
<Dialog v-bind="$attrs" :options="{ title: '上传实名资料', size: '2xl' }" v-model="show">
<template #body>
<div class="space-y-6">
<!-- 步骤指示器 -->
@ -322,6 +322,7 @@ export default {
emits: ['success', 'close'],
data() {
return {
show: true,
loading: false,
formData: {
certType: 'personal',