This commit is contained in:
LiuHao
2023-07-10 22:56:42 +08:00
23 changed files with 828 additions and 134 deletions

View File

@ -80,7 +80,7 @@ const unlockAuth = (row: any) => {
const authUrl = (source: string) => {
authBinding(source).then((res: any) => {
if (res.code === 200) {
window.location.href = res.msg;
window.location.href = res.data;
} else {
ElMessage.error(res.msg);
}