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.
26 lines
445 B
26 lines
445 B
12 months ago
|
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);
|
||
|
}
|
||
|
}
|