123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * @Author: your name
- * @Date: 2022-01-10 17:11:51
- * @LastEditTime: 2022-01-10 17:16:43
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/mock/menu.js
- */
- import { Request, Response } from 'express';
- const getMenu = (req: Request, res: Response) => {
- const result = {
- data: [
- {
- path: '/paltform/userManage',
- name: '用户管理',
- icon: '',
- url: '',
- softUrl: '',
- },
- {
- path: '/paltform/hospManage',
- name: '院区管理',
- icon: '',
- url: '',
- softUrl: '',
- },
- ],
- success: true,
- status: 200,
- };
- return res.json(result);
- };
- export default {
- 'GET /centerSys/user/getMenuNav': getMenu,
- };
|