路由修改

This commit is contained in:
仲么了
2024-01-05 14:02:22 +08:00
parent b2c3df56dc
commit 5b42718d6f
9 changed files with 83 additions and 56 deletions

11
src/api/systerm.ts Normal file
View File

@@ -0,0 +1,11 @@
import createAxios from '@/utils/request'
// 菜单修改
export function updateMenu(params:anyObj) {
return createAxios({
url: '/user-boot/function/update',
method: 'PUT',
data:params
})
}