feat: 注册页面和管理员登录时新用户审核提醒

This commit is contained in:
2025-02-20 19:29:29 +08:00
parent 859aba64a8
commit 6586872327
5 changed files with 262 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
<script lang="ts" setup>
const route = useRoute()
const toast = useToast()
const dayjs = useDayjs()
const loginState = useLoginState()
@@ -125,6 +126,12 @@ const dhPageCount = ref(10)
watch(dhPageCount, () => (dhPage.value = 1))
onMounted(() => {
if (!!route.query?.unverified) {
state_filter.value = 'unverified'
}
})
const {
data: digitalHumansData,
refresh: refreshDigitalHumansData,