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.
34 lines
910 B
34 lines
910 B
/* eslint-disable */
|
|
import adminMenu from './geographic/admin-menu.json';
|
|
import adminMenuAll from './geographic/admin-menu-all.json';
|
|
import adminUrls from './geographic/admin-urls';
|
|
import resourceTree from './geographic/resource-tree.json';
|
|
import roleQuery from './geographic/role-query.json';
|
|
|
|
function getAdminMenu(req, res) {
|
|
return res.json(adminMenu);
|
|
}
|
|
|
|
function getAdminMenuAll(req, res) {
|
|
return res.json(adminMenuAll);
|
|
}
|
|
|
|
function getAdminUrls(req, res) {
|
|
return res.json(adminUrls);
|
|
}
|
|
|
|
function getResourceTree(req, res) {
|
|
return res.json(resourceTree);
|
|
}
|
|
|
|
function getQueryRole(req, res) {
|
|
return res.json(roleQuery);
|
|
}
|
|
|
|
export default {
|
|
'GET /admin-api/admins/resource/admin_menu_tree': getAdminMenuAll,
|
|
'GET /admin-api/admins/resource/admin_url_list': getAdminUrls,
|
|
'GET /admin-api/admins/resource/tree': getResourceTree,
|
|
'GET /admin-api/admins/role/page': getQueryRole,
|
|
};
|