menu.ts 205 B

1234567
  1. import http from '@/axios'
  2. class MenuApi {
  3. static getMenuList = (): Promise<ResultData<any>> => {
  4. return http.get<Menu.MenuOptions[]>({ url: '/system/menu/getRouters' })
  5. }
  6. }
  7. export default MenuApi