micro fixs, update database SQL file

This commit is contained in:
RockYang
2024-12-27 17:02:27 +08:00
parent 2ba3c52e6e
commit 488169683f
25 changed files with 1190 additions and 329 deletions

View File

@@ -54,8 +54,6 @@ import Captcha from "@/components/Captcha.vue";
const router = useRouter();
const title = ref("Geek-AI");
const username = ref(process.env.VUE_APP_USER);
const password = ref(process.env.VUE_APP_PASS);
const logo = ref("");
const licenseConfig = ref({});
@@ -132,8 +130,8 @@ const login = async function () {
const store = useSharedStore();
const doLogin = (verifyData) => {
httpPost("/api/user/login", {
username: username.value,
password: password.value,
username: ruleForm.username,
password: ruleForm.password,
key: verifyData.key,
dots: verifyData.dots,
x: verifyData.x,