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.

26 lines
512 B

import { fetch } from '../../../utils/util';
export type ResponseType = Promise<defs.ResultVO<Array<defs.Menu>>>;
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);
}