Manager code login (#276)

* update:增加前端设计图

* 前端代码优化

* update:底部信息纠正

* 增加:flyio

* update:去除org.quartz

* update:登陆功能

* aliyunTTS常联token

* 新增aliyunTTS长期Token方式

* 超时错误处理

* 本地编译文件

* 验证码获取

* 验证码获取测试

* 验证码展示

* 登录成功

* delete 测试代码

* 注册页面

* Register 风格统一

* web验证码登录注册

* 登录注册功能

* update:登陆注册api结果优化

* delete:删除未用到的代码

---------

Co-authored-by: hrz <1710360675@qq.com>
Co-authored-by: CGD <3030332422@qq.com>
Co-authored-by: 欣南科技 <huangrongzhuang@xin-nan.com>
This commit is contained in:
lucky_feng
2025-03-12 13:38:44 +08:00
committed by GitHub
co-authored by hrz CGD 欣南科技
parent a8c6c7cb36
commit 0a26ad8925
12 changed files with 429 additions and 407 deletions
+14
View File
@@ -0,0 +1,14 @@
const { defineConfig } = require('@vue/cli-service');
const dotenv = require('dotenv');
dotenv.config();
module.exports = defineConfig({
devServer: {
// Bug 修复:将代理配置为环境变量中定义的 API 基础 URL
proxy: process.env.VUE_APP_API_BASE_URL,
client: {
overlay: false,
},
}
})