-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(projects): refactor app init loading [重构系统初始化的加载]
- Loading branch information
1 parent
fcc65c3
commit 57bfe27
Showing
5 changed files
with
49 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<template> | ||
<div class="fixed-center flex-col"> | ||
<system-logo class="text-128px text-primary" /> | ||
<div class="w-56px h-56px my-36px"> | ||
<div class="relative h-full animate-spin"> | ||
<div | ||
v-for="(item, index) in lodingClasses" | ||
:key="index" | ||
class="absolute w-16px h-16px bg-primary rounded-8px animate-pulse" | ||
:class="item" | ||
></div> | ||
</div> | ||
</div> | ||
<h2 class="text-28px font-500 text-#646464">{{ title }}</h2> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { EnumStorageKey } from '@/enum'; | ||
import { useAppInfo } from '@/composables'; | ||
import { getLocal } from '@/utils'; | ||
const { title } = useAppInfo(); | ||
const lodingClasses = [ | ||
'left-0 top-0', | ||
'left-0 bottom-0 animate-delay-500', | ||
'right-0 top-0 animate-delay-1000', | ||
'right-0 bottom-0 animate-delay-1500' | ||
]; | ||
function addThemeColorCssVars() { | ||
const defaultColor = '#1890ff'; | ||
const themeColor = getLocal(EnumStorageKey['theme-color']) || defaultColor; | ||
const cssVars = `--primary-color: ${themeColor}`; | ||
document.documentElement.style.cssText = cssVars; | ||
} | ||
addThemeColorCssVars(); | ||
</script> | ||
|
||
<style scoped></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters