update 优化 补全缺失的接口 更改更新日志链接

This commit is contained in:
疯狂的狮子li
2022-08-30 20:46:01 +08:00
parent ad8662bb8d
commit ab6b8942e5
3 changed files with 13 additions and 10 deletions

View File

@@ -12,6 +12,18 @@ export function login(username, password, code, uuid) {
})
}
// 注册方法
export function register(data) {
return request({
url: '/auth/register',
headers: {
isToken: false
},
method: 'post',
data: data
})
}
// 刷新方法
export function refreshToken() {
return request({