1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <hc-app-config>
- <router-view />
- </hc-app-config>
- </template>
- <script setup>
- import { nextTick, ref, watch } from 'vue'
- import { useAppStore } from '~src/store'
- import { detectionBrowser, getAppVersion, useOsTheme } from 'hc-vue3-ui'
- import { getObjValue, setElementMainColor } from 'js-fast-way'
- //初始变量
- const appStore = useAppStore()
- const UserTheme = ref(appStore.getTheme)
- //监听
- watch(() => [
- appStore.getTheme,
- appStore.getThemeVal,
- appStore.getColor,
- ], ([Theme, ThemeVal, ColorVal]) => {
- UserTheme.value = Theme
- setUserTheme(ThemeVal, ColorVal)
- })
- nextTick(() => {
- setUserTheme(appStore.getThemeVal, appStore.getColor)
- //生产环境下,检测更新
- if (import.meta.env.PROD && appStore.isSource !== 'app') {
- detectionBrowser()
- getAppVersion()
- }
- //获取屏幕宽高
- const dom = document.body
- console.log('高:' + dom.clientHeight, '宽:' + dom.clientWidth)
- })
- //设置主题
- const setUserTheme = (theme, appColor) => {
- const colorVal = getObjValue(appColor)
- //设置主色调
- setElementMainColor(colorVal?.color)
- const colorName = colorVal?.name || 'green'
- //设置主题
- let val = UserTheme.value
- if (val === 'auto') {
- theme = useOsTheme()
- }
- if (theme === '') {
- theme = val
- }
- //挂载相关样式
- document.documentElement.setAttribute('class', `${theme} color-${colorName}`)
- }
- </script>
|