From 5fe1a50155d890e868a1258c143eb6b5ac809aea Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期三, 10 四月 2024 11:53:45 +0800 Subject: [PATCH] 查看提取码字体大小、居中调整 --- src/App.vue | 16 +++++++++++++--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 41ffdd4..a124b45 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,15 +5,25 @@ </template> <script setup lang="ts"> +import axios from 'axios'; import useSettingsStore from '@/store/modules/settings' import { handleThemeStyle } from '@/utils/theme' import useAppStore from '@/store/modules/app'; - +import { createUser } from "@/api/system/oss"; +import { setToken } from "@/utils/auth"; +import usePermissionStore from "@/store/modules/permission"; +import { isHttp } from "@/utils/validate"; const appStore = useAppStore(); const size = computed(() => appStore.size as any); -onMounted(() => { - nextTick(() => { + + + + + +onMounted(async () => { + + await nextTick(() => { // 鍒濆鍖栦富棰樻牱寮� handleThemeStyle(useSettingsStore().theme) }) -- Gitblit v1.8.0