fix: 修复在线问题

This commit is contained in:
橙子
2024-01-15 00:25:25 +08:00
parent cf793c198f
commit e64b12097a
6 changed files with 52 additions and 23 deletions

View File

@@ -6,13 +6,14 @@
</el-config-provider>
</template>
<script setup>
import signalR from "@/utils/signalR";
import useAuths from "@/hooks/useAuths";
import useConfigStore from "@/stores/config";
import { ElConfigProvider } from "element-plus";
import { onMounted } from "vue";
import { onMounted,watch } from "vue";
const { tokenValue } = useAuths();
import zhCn from "element-plus/dist/locale/zh-cn.mjs";
const locale = zhCn;
const configStore = useConfigStore();
// 判断是否有loading有的话去掉
@@ -24,6 +25,22 @@ if (loading !== null) {
//加载全局信息
onMounted(async () => {
await configStore.getConfig();
// setInterval(() => {
// console.log("token的值"+tokenValue.value);
// }, 1000); // 1000毫秒即1秒
});
// watch(
// () => tokenValue,
// (val,oldValue) => {
// console.log("token发生改变");
// if (val) {
// signalR.close();
// signalR.init(`main`);
// }
// },
// { deep:true }
// );
</script>
<style scoped></style>