Merge branch 'master' of http://gitlab.tianti.tg.unicom.local/eshop/fe_service_ebtp_frontend into 20220523-公开比选一阶段二次项目,资格审查合格供应商为一家时可增加自定义流程

This commit is contained in:
jl-zhoujl2
2023-02-14 14:11:01 +08:00
476 changed files with 41078 additions and 6237 deletions

View File

@ -27,7 +27,7 @@ export async function getJuryData(param: any) {
export async function saveDevidedData(param: any) {
return request(`/api/biz-service-ebtp-rsms/v1/jury/divide/save`, {
method: 'POST',
data:param
data: param
});
}
@ -37,7 +37,7 @@ export async function saveDevidedData(param: any) {
*/
export async function saveLeaderId(param: any) {
return request(`/api/biz-service-ebtp-rsms/v1/jury/member/chooseLeader/?id=${param}`, {
method: 'PUT',
method: 'POST',
});
}
@ -47,8 +47,8 @@ export async function saveLeaderId(param: any) {
*/
export async function createReviewRoom(param: any) {
return request(`/api/biz-service-ebtp-process/v1/assessroom/zmmulti/create`, {
method: 'POST',
data: param
method: 'POST',
data: param
});
}
@ -58,7 +58,7 @@ export async function createReviewRoom(param: any) {
*/
export async function getPackageList(param: any) {
return request(`/api/biz-service-ebtp-process/v1/assessroom/zmmulti/query/initroom/${param}`, {
method: 'GET',
method: 'GET',
});
}
@ -68,7 +68,7 @@ export async function getPackageList(param: any) {
*/
export async function getAnnouncementById(param: any) {
return request(`/api/biz-service-ebtp-bid/v1/anno/getBySectionId/${param}`, {
method: 'POST',
method: 'POST',
});
}
@ -76,8 +76,8 @@ export async function getAnnouncementById(param: any) {
* 根据项目id查流程
* @param params
*/
export async function getDefId(proId?: any) {
return request(`/api/biz-service-ebtp-process/v1/projectconfig/querydefid/${proId}`,{
export async function getDefId(proId?: any) {
return request(`/api/biz-service-ebtp-process/v1/projectconfig/querydefid/${proId}`, {
method: 'GET',
});
}
@ -86,10 +86,10 @@ export async function getAnnouncementById(param: any) {
* 关闭评审室保存原因并关闭评审室(多轮招募)
* @param param
*/
export async function saveClosingReason(param: any) {
export async function saveClosingReason(param: any) {
return request(`/api/biz-service-ebtp-process/v1/assessroom/zmmulti/finishRoom`, {
method: 'POST',
data: param,
method: 'POST',
data: param,
});
}

View File

@ -128,7 +128,8 @@ class manager extends PureComponent {
//评委会设置
onJurySet = (record) => {
this.savePageAndParams();
this.props.dispatch(routerRedux.push(`/ProjectLayout/JudgingPanel?roomId=${record.id}&secId=${record.sectionId}`))
history.push({ pathname: '/ProjectLayout/JudgingPanel', state: { roomId: record.id, secId: record.sectionId, openTime: record.openTime } });
// this.props.dispatch(routerRedux.push(`/ProjectLayout/JudgingPanel?roomId=${record.id}&secId=${record.sectionId}&openTime=${record.openTime}`));
}
//创建评审室
onCreateClick = async () => {