Merge branch '20220523-公开比选一阶段二次项目,资格审查合格供应商为一家时可增加自定义流程' into 'release_20230331'
3.31 公开比选一阶段二次项目,资格审查合格供应商为一家时可增加自定义流程 See merge request eshop/fe_service_ebtp_frontend!197
This commit is contained in:
@ -236,7 +236,7 @@ const PreliminarySummary: React.FC<BidPreliminarySummaryProps> = (props) => {
|
||||
const getFooterData = () => {
|
||||
checkShowData(getRoomId(), getURLInformation('nodeId')).then(response => {
|
||||
if (response?.code == 200) {
|
||||
if (response?.data == undefined) { } else {
|
||||
if (response?.data == undefined || response?.data?.id == null) { } else {
|
||||
setIsShowFoot(true)
|
||||
setRadioValue(response.data?.continueStatus)
|
||||
if (response.data?.continueStatus == 1) {
|
||||
|
@ -83,16 +83,18 @@ const BidPreliminarySummary: React.FC<BidPreliminarySummaryProps> = (props) => {
|
||||
isCheckShow(juryDataParams.assessRoomId).then((res) => {
|
||||
if (res.code == 200) {
|
||||
isShowRef.current = res.data;
|
||||
let count = 0;
|
||||
totalSupplier.forEach((ele: any) => {
|
||||
if (
|
||||
data[data.length - 1].detailList[0].earlyMap[ele.supplierRegisterId].judgesResult ==
|
||||
true
|
||||
) {
|
||||
count = count + 1;
|
||||
}
|
||||
});
|
||||
onSubmit(count);
|
||||
if (res.data) {
|
||||
let count = 0;
|
||||
totalSupplier.forEach((ele: any) => {
|
||||
if (
|
||||
data[data.length - 1].detailList[0].earlyMap[ele.supplierRegisterId].judgesResult ==
|
||||
true
|
||||
) {
|
||||
count = count + 1;
|
||||
}
|
||||
});
|
||||
onSubmit(count);
|
||||
}
|
||||
}
|
||||
});
|
||||
//调用数据处理方法并初始化表格
|
||||
|
@ -839,6 +839,11 @@ const Index: React.FC<{}> = () => {
|
||||
} else {
|
||||
data["operationType"] = 0
|
||||
}
|
||||
} else if (radioValue == 0) {
|
||||
if (isBxOneSecond) {//比选一阶段二次项目
|
||||
data["operationType"] = 1
|
||||
data["customizeFlowStatus"] = 0
|
||||
}
|
||||
}
|
||||
const remarkList = getRemarkList(ref.current)
|
||||
if (remarkList) {
|
||||
|
Reference in New Issue
Block a user