feat: 菜单支持获取上级菜单列表(排除按钮)

This commit is contained in:
ray
2024-08-02 00:44:01 +08:00
2 changed files with 3 additions and 2 deletions

View File

@@ -36,10 +36,11 @@ class MenuAPI {
*
* @returns 菜单下拉数据源
*/
static getOptions() {
static getOptions(onlyParent?: boolean) {
return request<any, OptionType[]>({
url: `${MENU_BASE_URL}/options`,
method: "get",
params: { onlyParent: onlyParent },
});
}