feat(project-demand): 更新项目需求汇总功能

- 新增 getProjectName 方法,用于项目名称关键词匹配- 修改远程搜索方法,使用 getProjectName 替代 getRequirementName
- 更新 ProjectApply 组件,调整专项资金输入框显示逻辑
- 移除 proxy 配置中的注释
This commit is contained in:
dj
2025-05-05 17:53:55 +08:00
parent f105485714
commit d76ef8ff9c
3 changed files with 20 additions and 10 deletions

View File

@@ -25,6 +25,16 @@ export const getRequirementName = (requirementName) => {
method: "get"
});
};
//需求汇总-项目名称关键词匹配
export const getProjectName = (projectName) => {
return request({
url: `workflow/mosr/requirement/collect`,
method: "get",
params:{
projectName:projectName
}
});
};
//获取需求上报 流程信息
export const getProcessInfo = (specialFund) => {
return request({