feat(列管理): 列管理页面添加

This commit is contained in:
sheng
2023-08-04 18:13:04 +08:00
committed by 李强
parent 9be50863d9
commit 191e57dcd9
8 changed files with 666 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { request } from '/@/utils/service';
import { PageQuery } from './types'
export function getRoleList(query: PageQuery) {
return request({
url: '/api/system/role/',
method: 'get',
params: query,
});
}
export function getModelList() {
return request({
url: '/api/system/column/get_models/',
method: 'get',
});
}