后台:权限
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import { Controller } from 'egg';
|
||||
import { STATUS } from '@consts';
|
||||
|
||||
export default class LoginController extends Controller {
|
||||
|
||||
@@ -19,26 +18,4 @@ export default class LoginController extends Controller {
|
||||
const {uid, password} = ctx.request.body;
|
||||
ctx.body = await ctx.service.gmUser.changeMyPass(uid, password);
|
||||
}
|
||||
|
||||
public async getMenu() {
|
||||
const { ctx } = this;
|
||||
ctx.body = ctx.service.utils.resResult(STATUS.SUCCESS, {
|
||||
"list": [
|
||||
{
|
||||
path: '/test',
|
||||
authority: ['admin'],
|
||||
routes: [
|
||||
{
|
||||
path: '/test/create-role',
|
||||
authority: ['admin'],
|
||||
},
|
||||
{
|
||||
path: '/test/create-data',
|
||||
authority: ['admin'],
|
||||
}
|
||||
],
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user