fix: 根据角色返回不同数据,权限管理

This commit is contained in:
xiaoxian521
2021-05-28 02:05:24 +08:00
parent ad0281839f
commit a26f711d83
4 changed files with 33 additions and 24 deletions

View File

@@ -42,11 +42,18 @@ export default [
{
url: "/getAsyncRoutes",
method: "get",
response: () => {
return {
code: 0,
info: systemRouter,
};
response: ({ query }) => {
if (query.name === "admin") {
return {
code: 0,
info: systemRouter,
};
} else {
return {
code: 0,
info: [],
};
}
},
},
] as MockMethod[];

View File

@@ -1,29 +1,29 @@
import { MockMethod } from 'vite-plugin-mock'
import { MockMethod } from "vite-plugin-mock";
// http://mockjs.com/examples.html#Object
const mapList = (): any => {
const result: any[] = []
const result: any[] = [];
for (let index = 0; index < 200; index++) {
result.push({
plateNumber: "豫A@natural(11111, 99999)@character('upper')",
driver: '@cname()',
driver: "@cname()",
"orientation|1-360": 100,
"lng|113-114.1-10": 1,
"lat|34-35.1-10": 1
})
"lat|34-35.1-10": 1,
});
}
return result
}
return result;
};
export default [
{
url: '/getMapInfo',
method: 'get',
url: "/getMapInfo",
method: "get",
response: () => {
return {
code: 0,
info: mapList()
}
info: mapList(),
};
},
}
] as MockMethod[]
},
] as MockMethod[];