93 lines
2.2 KiB
JavaScript
93 lines
2.2 KiB
JavaScript
/*
|
|
* Copyright © 2026 Qiantong Technology Co., Ltd.
|
|
* qModel Model Platform(Open Source Edition)
|
|
* *
|
|
* License:
|
|
* Released under the Apache License, Version 2.0.
|
|
* You may use, modify, and distribute this software for commercial purposes
|
|
* under the terms of the License.
|
|
* *
|
|
* Special Notice:
|
|
* All derivative versions are strictly prohibited from modifying or removing
|
|
* the default system logo and copyright information.
|
|
* For brand customization, please apply for brand customization authorization via official channels.
|
|
* *
|
|
* More information: https://qmodel.qiantong.tech/business.html
|
|
* *
|
|
* ============================================================================
|
|
* *
|
|
* 版权所有 © 2026 江苏千桐科技有限公司
|
|
* qModel 模型平台(开源版)
|
|
* *
|
|
* 许可协议:
|
|
* 本项目基于 Apache License 2.0 开源协议发布,
|
|
* 允许在遵守协议的前提下进行商用、修改和分发。
|
|
* *
|
|
* 特别说明:
|
|
* 所有衍生版本不得修改或移除系统默认的 LOGO 和版权信息;
|
|
* 如需定制品牌,请通过官方渠道申请品牌定制授权。
|
|
* *
|
|
* 更多信息请访问:https://qmodel.qiantong.tech/business.html
|
|
*/
|
|
|
|
import request from '@/utils/request.js'
|
|
|
|
// 查询菜单列表
|
|
export function listMenu(query) {
|
|
return request({
|
|
url: '/system/menu/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询菜单详细
|
|
export function getMenu(menuId) {
|
|
return request({
|
|
url: '/system/menu/' + menuId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 查询菜单下拉树结构
|
|
export function treeselect() {
|
|
return request({
|
|
url: '/system/menu/treeselect',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 根据角色ID查询菜单下拉树结构
|
|
export function roleMenuTreeselect(roleId) {
|
|
return request({
|
|
url: '/system/menu/roleMenuTreeselect/' + roleId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增菜单
|
|
export function addMenu(data) {
|
|
return request({
|
|
url: '/system/menu',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改菜单
|
|
export function updateMenu(data) {
|
|
return request({
|
|
url: '/system/menu',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除菜单
|
|
export function delMenu(menuId) {
|
|
return request({
|
|
url: '/system/menu/' + menuId,
|
|
method: 'delete'
|
|
})
|
|
}
|