feat: 基础逻辑拼接

This commit is contained in:
手瓜一十雪
2024-11-15 11:32:30 +08:00
parent 5ee0afb604
commit 6708903c65
7 changed files with 140 additions and 128 deletions

View File

@@ -1,9 +1,9 @@
<template>
<div class="login-container">
<h2>Login</h2>
<h2 class="sotheby-font">QQ Login</h2>
<div class="login-methods">
<t-button id="quick-login" class="login-method active" @click="showQuickLogin">Quick Login</t-button>
<t-button id="qrcode-login" class="login-method" @click="showQrCodeLogin">QR Code</t-button>
<t-button id="quick-login" class="login-method" :class="{ active: isQuickLoginVisible }" @click="showQuickLogin">Quick Login</t-button>
<t-button id="qrcode-login" class="login-method" :class="{ active: isQrCodeVisible }" @click="showQrCodeLogin">QR Code</t-button>
</div>
<div id="quick-login-dropdown" class="login-form" v-show="isQuickLoginVisible">
<t-select id="quick-login-select" v-model="selectedAccount" @change="selectAccount">
@@ -15,98 +15,81 @@
</div>
<p id="message">{{ message }}</p>
</div>
<div class="footer">
Power By NapCat.WebUi
</div>
</template>
<script>
<script setup>
import { ref, onMounted } from 'vue';
import { Button as TButton, Select as TSelect, Option as TOption } from 'tdesign-vue-next';
import { Button as TButton, Select as TSelect, Option as TOption, MessagePlugin } from 'tdesign-vue-next';
import QRCode from 'qrcode';
import { MessagePlugin } from 'tdesign-vue-next';
import { useRouter, useRoute } from 'vue-router';
export default {
components: {
TButton,
TSelect,
TOption,
},
setup() {
const isQuickLoginVisible = ref(true);
const isQrCodeVisible = ref(false);
const quickLoginList = ref([]);
const selectedAccount = ref('');
const message = ref('');
const router = useRouter();
const route = useRoute();
const isQuickLoginVisible = ref(true);
const isQrCodeVisible = ref(false);
const quickLoginList = ref([]);
const selectedAccount = ref('');
const message = ref('');
const showQuickLogin = () => {
isQuickLoginVisible.value = true;
isQrCodeVisible.value = false;
};
const showQrCodeLogin = () => {
isQuickLoginVisible.value = false;
isQrCodeVisible.value = true;
};
const selectAccount = async (accountName) => {
//const { result, errMsg } = await SetQuickLogin(accountName, localStorage.getItem('auth'));
if (true) {
MessagePlugin.success("登录成功即将跳转");
} else {
MessagePlugin.error("登录失败," + errMsg);
}
};
const generateQrCode = (data, canvas) => {
QRCode.toCanvas(canvas, data, function (error) {
if (error) console.log(error);
console.log('QR Code generated!');
});
};
const InitPages = async () => {
// let QuickLists = await GetQQQucickLoginList(localStorage.getItem('auth'));
quickLoginList.value = ['example1', 'example2', 'example3'];
// generateQrCode(await GetQQLoginQrcode(localStorage.getItem('auth')), document.querySelector('#qrcode-canvas'));
generateQrCode('test', document.querySelector('#qrcode-canvas'));
setInterval(HeartBeat, 3000);
};
onMounted(() => {
InitPages();
});
return {
isQuickLoginVisible,
isQrCodeVisible,
quickLoginList,
selectedAccount,
message,
showQuickLogin,
showQrCodeLogin,
selectAccount,
};
},
const showQuickLogin = () => {
isQuickLoginVisible.value = true;
isQrCodeVisible.value = false;
};
const showQrCodeLogin = () => {
isQuickLoginVisible.value = false;
isQrCodeVisible.value = true;
};
const selectAccount = async (accountName) => {
//const { result, errMsg } = await SetQuickLogin(accountName, localStorage.getItem('auth'));
if (true) {
MessagePlugin.success("登录成功即将跳转");
await router.push({ path: '/dashboard' });
} else {
MessagePlugin.error("登录失败," + errMsg);
}
};
const generateQrCode = (data, canvas) => {
QRCode.toCanvas(canvas, data, function (error) {
if (error) console.log(error);
console.log('QR Code generated!');
});
};
const InitPages = async () => {
// let QuickLists = await GetQQQucickLoginList(localStorage.getItem('auth'));
quickLoginList.value = ['example1', 'example2', 'example3'];
// generateQrCode(await GetQQLoginQrcode(localStorage.getItem('auth')), document.querySelector('#qrcode-canvas'));
generateQrCode('test', document.querySelector('#qrcode-canvas'));
setInterval(HeartBeat, 3000);
};
onMounted(() => {
InitPages();
});
</script>
<style scoped>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f2f5;
}
.login-container {
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: white;
max-width: 400px;
min-width: 300px;
position: relative;
margin: 0 auto;
}
@media (max-width: 600px) {
.login-container {
width: 90%;
min-width: unset;
}
}
.login-methods {
@@ -142,26 +125,23 @@ body {
text-align: center;
}
button {
.sotheby-font {
font-family: Sotheby, Helvetica, monospace;
font-size: 3.125rem;
line-height: 1.2;
text-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
.footer {
text-align: center;
margin: 0;
font-size: 0.875rem;
color: #888;
position: fixed;
bottom: 20px;
left: 0;
right: 0;
width: 100%;
padding: 10px;
background-color: #007BFF;
color: white;
border: none;
cursor: pointer;
transition: all 0.3s;
}
button:hover {
background-color: #0056b3;
}
.hidden {
display: none;
}
#qrcode-canvas {
width: 200px;
height: 200px;
background-color: white;
}
</style>