手写签名,线下评审,预审评委会

This commit is contained in:
jlzhangyx5
2025-07-11 08:44:50 +08:00
parent 87a7ecc309
commit 0a3fa905ca
12 changed files with 2183 additions and 25 deletions

View File

@ -1,4 +1,4 @@
import { fetchManagerList,openBizassessroom,resetVerificationCode,fetchJuryList,fetchSupplierList
import { fetchManagerList,openBizassessroom,openOffBizassessroom,resetVerificationCode,fetchJuryList,fetchSupplierList
,fetchJuryMemInfo,updateJuryMemInfo,validateVerificationCode,fetchbidslist
,fetchPreSupplierList,fetchPreList,fetchPreListt,bxmultifetchPreListt,pushRedirectRe,getCheckedByRoomId,checkOpenBidSupplier,zmmultiOpenBizassessroom } from '../services/bidev';
import { message } from 'antd';
@ -43,6 +43,23 @@ export default {
}
callback();
},
// 开启线下评审室
*openOffBizassessroom({payload,callback}, { call, put }){
const response =yield call(openOffBizassessroom,payload)
if(response?.code==200){
// 查询招标代理列表
const params={
pageNo:1,
pageSize:10,
reviewMethod:1,
roomType: getURLInformation('roomType'),
tpId:getProId()//项目id
}
yield put({ type: 'fetchManagerList', payload: {...params} });
message.success("开启成功!")
}
callback();
},
// 开启评审室(多轮招募)
*zmmultiOpenBizassessroom({payload,callback}, { call, put }){
const response =yield call(zmmultiOpenBizassessroom,payload)