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.

18 lines
442 B

7 years ago
/*需要权限控制的路由表*/
import purchaseRouter from '@/router/modules/purchase'
import sellRouter from '@/router/modules/sell'
import stockRouter from '@/router/modules/stock'
import messageRouter from '@/router/modules/message'
7 years ago
import systemRouter from '@/router/modules/system'
const authorityRoutes = [
purchaseRouter,
sellRouter,
stockRouter,
messageRouter,
7 years ago
systemRouter,
]
export default authorityRoutes