UNPKG

generator-hcy-system

Version:

hcy system layout and pages

39 lines 1.22 kB
export default { 'GET /mock/dept/find': (_req: any, res: any) => { res.json({ success: true, data: { pageNum: 1, pageSize: 999, totalCount: 3, totalPage: 1, items:[ { deptId: 1, deptName: '部门1', hasChildren: 0, // 0无子集 1有子集 version: '1.0', status: 0,// 0开启1禁用 }, { deptId: 2, deptName: '部门2', hasChildren: 1, version: '1.0', status: 1,// 0开启1禁用 children: [] }, { deptId: 3, deptName: '部门3', hasChildren: 0, version: '1.0', status: 1,// 0开启1禁用 }, ], }, msg: 'success', code: '0000', }); } };