Merge remote-tracking branch 'origin/ljj' into lt

This commit is contained in:
2025-08-19 20:15:20 +08:00
10 changed files with 373 additions and 301 deletions

View File

@ -121,3 +121,10 @@ export const logisticsDetial = (id) => {
method: 'get'
});
};
export const getDetailBASE = (id) => {
return request({
url: '/cailiaoshebei/purchaseDoc/pic/' + id,
method: 'get'
});
};

View File

@ -174,3 +174,15 @@ export const getChildProject = (id: string | number): AxiosPromise<childProjectQ
method: 'get'
});
};
/**
* 上传项目文件
* @param data
*/
export const uploadProjectFile = (data: any) => {
return request({
url: '/project/project/save/tender/file',
method: 'put',
data: data
});
};

View File

@ -8,6 +8,7 @@ export interface ProjectVO {
* 项目名称
*/
projectName: string;
tenderFiles: string;
/**
* 项目简称
@ -128,10 +129,10 @@ export interface locationType {
projectSite: string;
}
export interface childProjectQuery{
projectName:string;
pid:string;
id?:string
export interface childProjectQuery {
projectName: string;
pid: string;
id?: string;
}
export interface ProjectForm extends BaseEntity {