3.30 不满足三家需要填写原因的覆盖范围错误纠正
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,6 +83,7 @@ const BidPreliminarySummary: React.FC<BidPreliminarySummaryProps> = (props) => {
|
||||
isCheckShow(juryDataParams.assessRoomId).then((res) => {
|
||||
if (res.code == 200) {
|
||||
isShowRef.current = res.data;
|
||||
if (res.data) {
|
||||
let count = 0;
|
||||
totalSupplier.forEach((ele: any) => {
|
||||
if (
|
||||
@ -94,6 +95,7 @@ const BidPreliminarySummary: React.FC<BidPreliminarySummaryProps> = (props) => {
|
||||
});
|
||||
onSubmit(count);
|
||||
}
|
||||
}
|
||||
});
|
||||
//调用数据处理方法并初始化表格
|
||||
InitializeTable(pagingSupplier, data);
|
||||
|
Reference in New Issue
Block a user