项目管理功能

This commit is contained in:
lSun 2025-11-27 16:07:59 +08:00
parent e5bd34a1d0
commit c6e8659009
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
import request from '@/axios';
// 查询项目数据列表
export const getList = (data) => {
return request({
url: '/blade-system/project/getProjectList',
method: 'post',
data: data,
});
};
// 配置档案类型
export function updateContentsNameAPI(data) {
return request({
url: '/blade-system/project/updateContentsName',
method: 'POST',
data: data,
})
}
// 档案类型下拉选
export function getFileCatalogSelectAPI(data) {
return request({
url: '/blade-system/project/getFileCatalogSelect',
method: 'POST',
data: data,
})
}