This commit is contained in:
parent
39c469c7c7
commit
3c28d9cb54
16
src/main.js
16
src/main.js
|
@ -11,14 +11,14 @@ import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
|||
// 引入 vConsole
|
||||
import VConsole from 'vconsole';
|
||||
// 初始化 vConsole
|
||||
// const vConsole = new VConsole();
|
||||
const vConsole = new VConsole({
|
||||
defaultPlugins: {
|
||||
// 是否默认开启 console 插件
|
||||
'console': true,
|
||||
// 其他插件配置...
|
||||
}
|
||||
});
|
||||
const vConsole = new VConsole();
|
||||
// const vConsole = new VConsole({
|
||||
// defaultPlugins: {
|
||||
// // 是否默认开启 console 插件
|
||||
// 'console': true,
|
||||
// // 其他插件配置...
|
||||
// }
|
||||
// });
|
||||
|
||||
createApp(App).use(router).use(ElementPlus,{
|
||||
locale: zhCn,
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
</div>
|
||||
<div class="tabGif" v-if="tabData.tabNum == index"></div>
|
||||
<div :class="tabData.tabNum == index ? 'fiCenC' : 'fiCen'"></div>
|
||||
<div class="fiText">{{ item.name }}</div>
|
||||
<div class="fiText">{{ item.name }}{{ a1 }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -85,6 +85,7 @@ const router = useRouter();
|
|||
const routers = useRoute();
|
||||
|
||||
const draggable = ref(null);
|
||||
const a1 = ref(null);
|
||||
const transTime = ref(0); // 参考系动画时长
|
||||
const rotateY = ref(0); // 参考系偏转角度,动态赋值
|
||||
const rotateX = ref(0);
|
||||
|
@ -138,42 +139,43 @@ const getCookie = (cname) => {
|
|||
const login = () => {
|
||||
dd.getAuthCode()
|
||||
.then((res) => {
|
||||
// let auth__code = env == "pc" ? res.auth_code : res.code;
|
||||
// console.log( 555,res, auth__code);
|
||||
if (res.auth_code) {
|
||||
http
|
||||
.post(`/api/ggfwyth/ding/one_click_login?authCode=${res.auth_code}`)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
console.log('response', response);
|
||||
tools.data.set("token", response.data.token);
|
||||
tools.data.set("type", 1);
|
||||
} else {
|
||||
// 跳转未绑定页面
|
||||
router.push({
|
||||
path: `/error/noPermission`,
|
||||
});
|
||||
}
|
||||
// let auth__code = env == "pc" ? res.auth_code : res.code;
|
||||
// console.log( 555,res, auth__code);
|
||||
a1.value = res.auth_code
|
||||
if (res.auth_code) {
|
||||
http
|
||||
.post(`/api/ggfwyth/ding/one_click_login?authCode=${res.auth_code}`)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
console.log("response", response);
|
||||
tools.data.set("token", response.data.token);
|
||||
tools.data.set("type", 1);
|
||||
} else {
|
||||
// 跳转未绑定页面
|
||||
router.push({
|
||||
path: `/error/noPermission`,
|
||||
});
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
var token = getCookie("lytoken");
|
||||
// var token = "6b0e380b4a8f46baae4923f83faf670d";
|
||||
// router.push({
|
||||
// path: `/error/404`,
|
||||
// });
|
||||
// console.log('token', token)
|
||||
if (!token) {
|
||||
window.location.href =
|
||||
"http://220.191.238.50:996/api/login?returnURL=" +
|
||||
window.location.href;
|
||||
} else {
|
||||
tools.data.set("token", token);
|
||||
tools.data.set("type", 2);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
var token = getCookie("lytoken");
|
||||
// var token = "6b0e380b4a8f46baae4923f83faf670d";
|
||||
// router.push({
|
||||
// path: `/error/404`,
|
||||
// });
|
||||
// console.log('token', token)
|
||||
if (!token) {
|
||||
window.location.href =
|
||||
"http://220.191.238.50:996/api/login?returnURL=" +
|
||||
window.location.href;
|
||||
} else {
|
||||
tools.data.set("token", token);
|
||||
tools.data.set("type", 2);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
onUnmounted(() => {
|
||||
|
@ -201,7 +203,8 @@ const reset_font = () => {
|
|||
onMounted(() => {
|
||||
// 调用函数清空所有 cookie
|
||||
// clearCookies();
|
||||
console.log('页面初始化');
|
||||
console.log("页面初始化");
|
||||
|
||||
login();
|
||||
reset_font();
|
||||
reset_font();
|
||||
|
|
Loading…
Reference in New Issue