34 lines
742 B
JavaScript
34 lines
742 B
JavaScript
const userMap = {
|
|
admin: {
|
|
roles: ['admin'],
|
|
token: 'admin',
|
|
introduction: '我是超级管理员',
|
|
avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif',
|
|
name: 'Super Admin'
|
|
},
|
|
editor: {
|
|
roles: ['editor'],
|
|
token: 'editor',
|
|
introduction: '我是编辑',
|
|
avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif',
|
|
name: 'Normal Editor'
|
|
}
|
|
}
|
|
|
|
export default {
|
|
'/login/login': config => {
|
|
const { username } = config.body
|
|
return userMap[username]
|
|
},
|
|
'/login/logout': 'success',
|
|
'/user/info': config => {
|
|
const { token } = config.query
|
|
if (userMap[token]) {
|
|
return userMap[token]
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|