main #2

Merged
jingrow merged 250 commits from main into v1 2026-01-13 22:45:50 +08:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 74043ba5e1 - Show all commits

View File

@ -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

View File

@ -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',