This commit is contained in:
康冉冉
2025-11-11 14:06:13 +08:00
parent ee295230ac
commit 54ab4046f6
387 changed files with 46032 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import request from '@/utils/request'
// 获取路由
export const getRouters = () => {
return request({
url: '/system/menu/getRouters',
method: 'get'
})
}
// 保存自定义列表列
export function addColumnList(data) {
return request({
url: '/system/columnConfig/addColumnConfig',
method: 'post',
data: data
})
}
// 获取自定义列表列
export function getColumnList(data) {
return request({
url: '/system/columnConfig/getColumnConfigByUserId',
method: 'post',
data: data
})
}