feat : 需求征集和项目管理的名称匹配搜索

This commit is contained in:
2024-11-02 20:00:29 +08:00
parent 960d294870
commit a175a6456a
7 changed files with 112 additions and 13 deletions

View File

@@ -7,6 +7,12 @@ export const getDemandInfo = (param) => {
params: param
});
};
export const filterRequirementName = (requirementName) => {
return request({
url: `/workflow/mosr/requirement/match/${requirementName}`,
method: "get"
});
};
export const getWorkflowInfo = () => {
return request({
url: '/workflow/mosr/requirement/process',

View File

@@ -8,6 +8,12 @@ export const getApplyProcess = (projectId) => {
method: "get"
});
};
export const filterProjectName = (projectName,targetState) => {
return request({
url: `/workflow/mosr/project/approval/match/${projectName}/${targetState}`,
method: "get"
});
};
export const projectApply = (data) => {
return request({
url: '/workflow/mosr/project/approval/initiation/apply',