import { fetch } from '../../../utils/util'; export type ResponseType = Promise>>; export const URL = '/api/menu/tree'; /** * @desc 获取菜单树 */ export function request( options?: WechatMiniprogram.RequestOption, ): ResponseType { let url = '/api/menu/tree'; const fetchOption = Object.assign( { url: url, method: 'GET', headers: { 'Content-Type': 'application/json', }, }, options, ); return fetch(fetchOption); }