add password recovery
parent
6f5bd3f05e
commit
473ac605c1
@ -0,0 +1,22 @@
|
||||
@import "../../assets/variables.sass";
|
||||
// 水平居中 + 垂直居中
|
||||
.ResetForm
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 25rem;
|
||||
margin-left: -12.5rem;
|
||||
margin-top: -135px;
|
||||
border: 1px solid #E6E6E6;
|
||||
border-radius: .5rem;
|
||||
.header
|
||||
padding: 1.5rem 3rem;
|
||||
border-bottom: 1px solid $border;
|
||||
.title
|
||||
font-size: 2rem;
|
||||
.body
|
||||
padding: 1.5rem 3rem;
|
||||
.footer
|
||||
padding: 1.5rem 3rem;
|
||||
border-top: 1px solid $border;
|
||||
|
@ -1,74 +1,115 @@
|
||||
import { CREDENTIALS, serve, HEADERS } from './constant'
|
||||
import {
|
||||
CREDENTIALS,
|
||||
serve,
|
||||
HEADERS
|
||||
} from './constant'
|
||||
|
||||
export default {
|
||||
// 获取登陆信息
|
||||
fetchLoginInfo () {
|
||||
return fetch(`${serve}/account/info`, { ...CREDENTIALS })
|
||||
fetchLoginInfo() {
|
||||
return fetch(`${serve}/account/info`, { ...CREDENTIALS
|
||||
})
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
|
||||
// 注册用户
|
||||
addUser (user) {
|
||||
addUser(user) {
|
||||
return fetch(`${serve}/account/register`, {
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify(user),
|
||||
headers: { 'Content-Type': 'application/json' }
|
||||
})
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify(user),
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 重置用户
|
||||
resetUser(email, password) {
|
||||
return fetch(`${serve}/account/reset`, {
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify({
|
||||
email, password,
|
||||
}),
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 修改密码
|
||||
updateUser (user) {
|
||||
updateUser(user) {
|
||||
return fetch(`${serve}/account/update`, {
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify(user),
|
||||
headers: HEADERS.JSON
|
||||
})
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify(user),
|
||||
headers: HEADERS.JSON
|
||||
})
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 用户登陆
|
||||
login ({ email, password, captcha }) {
|
||||
login({
|
||||
email,
|
||||
password,
|
||||
captcha
|
||||
}) {
|
||||
return fetch(`${serve}/account/login`, {
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify({ email, password, captcha }),
|
||||
headers: { 'Content-Type': 'application/json' }
|
||||
})
|
||||
...CREDENTIALS,
|
||||
method: 'POST',
|
||||
body: JSON.stringify({
|
||||
email,
|
||||
password,
|
||||
captcha
|
||||
}),
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 用户退出
|
||||
logout () {
|
||||
return fetch(`${serve}/account/logout`, { ...CREDENTIALS })
|
||||
logout() {
|
||||
return fetch(`${serve}/account/logout`, { ...CREDENTIALS
|
||||
})
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 获取用户总数
|
||||
fetchUserCount () {
|
||||
fetchUserCount() {
|
||||
return fetch(`${serve}/account/count`)
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 获取用户列表
|
||||
fetchUserList ({ name = '', cursor = 1, limit = 100 } = {}) {
|
||||
fetchUserList({
|
||||
name = '',
|
||||
cursor = 1,
|
||||
limit = 100
|
||||
} = {}) {
|
||||
return fetch(`${serve}/account/list?name=${name}&cursor=${cursor}&limit=${limit}`)
|
||||
.then(res => res.json())
|
||||
// .then(json => json.data)
|
||||
// .then(json => json.data)
|
||||
},
|
||||
// 根据 id 删除指定用户
|
||||
deleteUser (id) {
|
||||
deleteUser(id) {
|
||||
return fetch(`${serve}/account/remove?id=${id}`)
|
||||
.then(res => res.json())
|
||||
.then(json => json.data)
|
||||
},
|
||||
// 获取用户列表
|
||||
fetchLogList ({ cursor = 1, limit = 100 } = {}) {
|
||||
return fetch(`${serve}/account/logger?cursor=${cursor}&limit=${limit}`, { ...CREDENTIALS })
|
||||
fetchLogList({
|
||||
cursor = 1,
|
||||
limit = 100
|
||||
} = {}) {
|
||||
return fetch(`${serve}/account/logger?cursor=${cursor}&limit=${limit}`, { ...CREDENTIALS
|
||||
})
|
||||
.then(res => res.json())
|
||||
// .then(json => json.data)
|
||||
// .then(json => json.data)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue