设计资料

This commit is contained in:
2025-08-12 19:01:04 +08:00
parent aecff98642
commit 8c024e6269
18 changed files with 2894 additions and 218 deletions

View File

@ -0,0 +1,19 @@
import request from '@/utils/request';
// 收资计划
// 批量新增或修改
export const collectBatch = (data) => {
return request({
url: '/design/collect/batch',
method: 'post',
data: data
});
};
// 获取收资清单详细信息
export const byProjectId = (ProjectId) => {
return request({
url: '/design/collect/byProjectId/' + ProjectId,
method: 'get'
});
};