办学质量监测教学评价系统
shenrongliang
2025-06-13 11d86cc6c26bb4f709e407acadf4805c2024e79f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import type { Router } from 'vue-router'
import { ref } from 'vue';
 
const whiteList = ['/login', '/regist','/resetpassword']; // 不重定向白名单
 
export function setupPageGuard(router: Router) {
  router.beforeEach(async (to, from, next) => {
    // 检查浏览器语言
    // const browserLanguage = navigator.language || navigator.language;
    // const isChineseLanguage = browserLanguage.includes('zh');
    // const isInChina = ref(false);
    // const response = await fetch('http://ip-api.com/json/');
    // const data = await response.json();
    // isInChina.value = data.countryCode === 'CN';
    // console.log("isInChina", isInChina.value,isChineseLanguage)
    // // 中国大陆的国家代码为 "CN"
    // if (isChineseLanguage && isInChina.value) {
    //   alert("该网站不支持大陆ip")
    //   // 如果是中文环境,则重定向到 zh.html
    //   window.location.href = '/index.htm';
    // } else {
    //     next();
    //     console.log("next===")
    // }
        next();
 
  });
}