Merge branch 'release_electronic_bid_evaluation_room' of http://10.124.128.2:8888/eshop/fe_service_ebtp_frontend into release_electronic_bid_evaluation_room

This commit is contained in:
jl-zhoujl2
2022-09-07 08:28:51 +08:00
6 changed files with 165 additions and 190 deletions

View File

@ -170,11 +170,12 @@ const ViewEvalFormModal: React.FC<ViewEvalFormModalProps> = (props) => {
const getReserveIdFunction = async () => {
await getEvalRoomByAssessId(roomId).then((res) => {
if (res.success == true) {
if (res.success == true&&res.data!=null&&res.data!="") {
getEvalRoomPageFunction(res.data);
} else {
message.error('获取评标室预约id失败:显示测试数据-uat专用')
getEvalRoomPageFunction("1523557937760681984");
//message.error('获取评标室预约id失败:显示测试数据-uat专用')
//getEvalRoomPageFunction("1523557937760681984");
setJuryTableShow(false);
}
})
}