feat: 自定义列

This commit is contained in:
rd
2025-06-30 15:35:23 +08:00
parent 697c23ecf0
commit 85a25050fb
13 changed files with 1042 additions and 46 deletions

15
src/api/all/common.ts Normal file
View File

@ -0,0 +1,15 @@
/*
* @Author: RenXiaoDong
* @Date: 2025-06-30 14:25:22
*/
import Http from '@/api';
// 获取用户自定义列
export const getCustomColumns = (params = {}) => {
return Http.get('/v1/user-custom-columns', params);
};
// 保存用户自定义列
export const updateCustomColumns = (params = {}) => {
return Http.put('/v1/user-custom-columns', params);
};