48 lines
1.2 KiB
Vue
48 lines
1.2 KiB
Vue
<template>
|
|
<div class="message">{{ message }}</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, watch, onMounted } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
import { authOtherLogin, authOtherBind } from "@/apis/auth.js";
|
|
|
|
const route = useRoute();
|
|
|
|
const code = ref(route.query.code);
|
|
const type = ref(route.query.state);
|
|
|
|
const message = ref("");
|
|
watch(
|
|
() => code.value,
|
|
async (val) => {
|
|
if (val) {
|
|
// 使用正则表达式提取路由参数
|
|
const regex = /\/auth\/([\w-]+)[?]?/;
|
|
const result = regex.exec(route.fullPath);
|
|
const authParam = result != null ? result[1].toUpperCase() : null;
|
|
if (type.value === 0) {
|
|
const res = await authOtherLogin({ code: val }, authParam);
|
|
console.log(res, "type.value === 0");
|
|
} else if (type.value === 1) {
|
|
const res = await authOtherBind({ code: val }, authParam);
|
|
console.log(res, "type.value === 1");
|
|
}
|
|
message.value = "授权成功";
|
|
// window.close();
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.message {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: 20px;
|
|
}
|
|
</style>
|