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
+19 -5
View File
@@ -23,21 +23,27 @@ function sendRequest() {
_data: {},
_header: {'content-type': 'application/json; charset=utf-8'},
_url: '',
_responseType: undefined, // 新增响应类型字段
'send'() {
this._header.token = localStorage.getItem(Constant.STORAGE_KEY.TOKEN)
// 打印请求信息
fly.request(this._url, this._data, {
method: this._method,
headers: this._header
headers: this._header,
responseType: this._responseType
}).then((res) => {
const error = httpHandlerError(res, this._failCallback)
const error = httpHandlerError(res, this._failCallback);
if (error) {
return
}
if (this._sucCallback) {
this._sucCallback(res)
}
}).catch((res) => {
console.log(1111, res)
// 打印失败响应
console.log(res)
httpHandlerError(res, this._failCallback)
})
return this
@@ -75,6 +81,11 @@ function sendRequest() {
},
'async'(flag) {
this.async = flag
},
// 新增类型设置方法
'type'(responseType) {
this._responseType = responseType;
return this;
}
}
}
@@ -84,13 +95,16 @@ function sendRequest() {
* callBack 回调函数
* errTip 自定义错误信息
*/
// 在错误处理函数中添加日志
function httpHandlerError(info, callBack) {
/** 请求成功,退出该函数 可以根据项目需求来判断是否请求成功。这里判断的是status为200的时候是成功 */
let networkError = false
if (info.status === 200) {
if (info.data.code === 'success' || info.data.code === 0) {
if (info.data.code === 'success' || info.data.code === 0 || info.data.code === undefined) {
return networkError
} else if (info.data.code === 401) {
}else if (info.data.code === 401) {
goToPage(Constant.PAGE.LOGIN, true)
return true
} else {