47 lines
1.1 KiB
Vue
47 lines
1.1 KiB
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<el-config-provider :locale="locale">
|
|
<RouterView />
|
|
</el-config-provider>
|
|
</template>
|
|
<script setup>
|
|
import signalR from "@/utils/signalR";
|
|
import noticeSignalR from "@/utils/noticeSignalR";
|
|
import useConfigStore from "@/stores/config";
|
|
import { ElConfigProvider } from "element-plus";
|
|
import useUserStore from "@/stores/user.js";
|
|
import { onMounted,watch,computed } from "vue";
|
|
const userStore = useUserStore();
|
|
import zhCn from "element-plus/dist/locale/zh-cn.mjs";
|
|
const locale = zhCn;
|
|
const configStore = useConfigStore();
|
|
const token = computed(() => useUserStore().token);
|
|
// 判断是否有loading有的话去掉
|
|
const loading = document.getElementById("Loading");
|
|
if (loading !== null) {
|
|
document.body.removeChild(Loading);
|
|
}
|
|
|
|
//加载全局信息
|
|
onMounted(async () => {
|
|
await configStore.getConfig();
|
|
noticeSignalR.close();
|
|
noticeSignalR.init(`notice`);
|
|
});
|
|
|
|
|
|
watch(
|
|
() => token,
|
|
(val,oldValue) => {
|
|
//console.log("token发生改变");
|
|
if (val) {
|
|
signalR.close();
|
|
signalR.init(`main`);
|
|
}
|
|
},
|
|
{immediate:true,deep:true}
|
|
);
|
|
</script>
|
|
<style scoped></style>
|