fe-drone-ci/mock/role/index.js

69 lines
1.4 KiB
JavaScript
Raw Normal View History

import Mock from 'mockjs'
2019-03-18 04:32:23 +00:00
import { deepClone } from '../../src/utils/index.js'
import { asyncRoutes, constantRoutes } from './routes.js'
2019-03-18 04:32:23 +00:00
const routes = deepClone([...constantRoutes, ...asyncRoutes])
const roles = [
{
key: 'admin',
name: 'admin',
description: 'Super Administrator. Have access to view all pages.',
2019-03-18 04:32:23 +00:00
routes: routes
},
{
key: 'editor',
name: 'editor',
description: 'Normal Editor. Can see all pages except permission page',
2019-03-18 04:32:23 +00:00
routes: routes.filter(i => i.path !== '/permission')// just a mock
},
{
key: 'visitor',
name: 'visitor',
description: 'Just a visitor. Can only see the home page and the document page',
routes: [{
path: '',
redirect: 'dashboard',
children: [
{
path: 'dashboard',
name: 'Dashboard',
meta: { title: 'dashboard', icon: 'dashboard' }
}
]
}]
}
]
2019-03-18 07:51:48 +00:00
export default [
{
url: '/routes',
type: 'get',
response: routes
},
2019-03-18 07:51:48 +00:00
{
url: '/roles',
type: 'get',
response: roles
},
2019-03-18 07:51:48 +00:00
{
url: '/roles/add',
type: 'post',
response: Mock.mock('@integer(300, 5000)')
},
2019-03-18 07:51:48 +00:00
{
url: '/roles/update/\/[A-Za-z0-9]',
type: 'put',
response: {
data: 'success'
}
},
2019-03-18 07:51:48 +00:00
{
url: '/roles/delete/\/[A-Za-z0-9]',
type: 'delete',
response: {
data: 'success'
}
}
2019-03-18 07:51:48 +00:00
]