You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
445 B
25 lines
445 B
import { Result } from '../utils'; |
|
|
|
const fakeUserInfo = { |
|
userId: '1', |
|
username: 'Jeecg', |
|
realname: 'Jeecg Admin', |
|
desc: 'manager', |
|
password: '123456', |
|
token: 'fakeToken1', |
|
roles: [ |
|
{ |
|
roleName: 'Super Admin', |
|
value: 'super', |
|
}, |
|
], |
|
}; |
|
export default class UserService { |
|
async login() { |
|
return Result.success(fakeUserInfo); |
|
} |
|
|
|
async getUserInfoById() { |
|
return Result.success(fakeUserInfo); |
|
} |
|
}
|
|
|