Files
mayfly-go/mayfly_go_web/src/App.vue

123 lines
3.5 KiB
Vue
Raw Normal View History

<template>
2023-10-14 16:00:16 +08:00
<div class="h100">
<el-watermark
:zIndex="10000000"
:width="210"
v-if="themeConfig.isWatermark"
:font="{ color: 'rgba(180, 180, 180, 0.5)' }"
:content="themeConfig.watermarkText"
class="h100"
>
<router-view v-show="themeConfig.lockScreenTime !== 0" />
</el-watermark>
<router-view v-if="!themeConfig.isWatermark" v-show="themeConfig.lockScreenTime !== 0" />
<LockScreen v-if="themeConfig.isLockScreen" />
<Setings ref="setingsRef" v-show="themeConfig.lockScreenTime !== 0" />
</div>
</template>
2023-03-15 11:41:03 +08:00
<script setup lang="ts" name="app">
2023-10-14 16:00:16 +08:00
import { ref, onMounted, onUnmounted, nextTick, watch } from 'vue';
import { useRoute } from 'vue-router';
2023-03-15 11:41:03 +08:00
import { storeToRefs } from 'pinia';
import { useThemeConfig } from '@/store/themeConfig';
import { getLocal } from '@/common/utils/storage';
2023-09-26 17:38:52 +08:00
import LockScreen from '@/layout/lockScreen/index.vue';
import Setings from '@/layout/navBars/breadcrumb/setings.vue';
2023-03-15 11:41:03 +08:00
import mittBus from '@/common/utils/mitt';
2023-09-23 22:52:05 +08:00
import { getThemeConfig } from './common/utils/storage';
2023-10-14 16:00:16 +08:00
import { useWatermark } from '@/common/sysconfig';
2023-03-15 11:41:03 +08:00
const setingsRef = ref();
const route = useRoute();
const themeConfigStores = useThemeConfig();
const { themeConfig } = storeToRefs(themeConfigStores);
// 布局配置弹窗打开
const openSetingsDrawer = () => {
setingsRef.value.openDrawer();
};
2023-11-15 12:28:49 +08:00
const prefers = matchMedia('(prefers-color-scheme: dark)');
const switchDarkFollowOS = () => {
// 跟随系统主题
themeConfigStores.switchDark(prefers.matches);
};
2023-03-15 11:41:03 +08:00
// 页面加载时
onMounted(() => {
nextTick(() => {
// 监听布局配置弹窗点击打开
mittBus.on('openSetingsDrawer', () => {
openSetingsDrawer();
});
2023-09-23 22:52:05 +08:00
2023-03-15 11:41:03 +08:00
// 获取缓存中的布局配置
2023-09-23 22:52:05 +08:00
const tc = getThemeConfig();
if (tc) {
themeConfigStores.setThemeConfig({ themeConfig: tc });
2023-03-15 11:41:03 +08:00
document.documentElement.style.cssText = getLocal('themeConfigStyle');
}
2023-11-15 12:28:49 +08:00
switchDarkFollowOS();
2023-10-14 16:00:16 +08:00
// 是否开启水印
useWatermark().then((res) => {
themeConfigStores.setWatermarkConfig(res);
});
2023-03-15 11:41:03 +08:00
});
});
2023-10-14 00:38:51 +08:00
// 监听 themeConfig isWartermark配置文件的变化
watch(
2023-10-14 16:00:16 +08:00
() => themeConfig.value.isWatermark,
2023-10-14 00:38:51 +08:00
(val) => {
if (val) {
setTimeout(() => {
setWatermarkContent();
refreshWatermarkTime();
2023-10-14 16:00:16 +08:00
}, 500);
2023-10-14 00:38:51 +08:00
}
}
);
const setWatermarkContent = () => {
2023-10-14 16:00:16 +08:00
themeConfigStores.setWatermarkUser();
themeConfigStores.setWatermarkNowTime();
2023-10-14 00:38:51 +08:00
};
let refreshWatermarkTimeInterval: any = null;
/**
* 刷新水印时间
*/
const refreshWatermarkTime = () => {
if (refreshWatermarkTimeInterval) {
clearInterval(refreshWatermarkTimeInterval);
}
refreshWatermarkTimeInterval = setInterval(() => {
2023-10-14 16:00:16 +08:00
if (themeConfig.value.isWatermark) {
themeConfigStores.setWatermarkNowTime();
2023-10-14 00:38:51 +08:00
} else {
clearInterval(refreshWatermarkTimeInterval);
}
}, 60000);
2023-10-14 00:38:51 +08:00
};
2023-03-15 11:41:03 +08:00
// 页面销毁时,关闭监听布局配置
onUnmounted(() => {
2023-10-14 00:38:51 +08:00
clearInterval(refreshWatermarkTimeInterval);
mittBus.off('openSetingsDrawer', () => {});
});
2023-03-15 11:41:03 +08:00
// 监听路由的变化,设置网站标题
watch(
() => route.path,
() => {
nextTick(() => {
document.title = `${route.meta.title} - ${themeConfig.value.globalTitle}` || themeConfig.value.globalTitle;
});
}
);
</script>