diff --git a/src/pages/Opening/ProjectManager/Room/index.tsx b/src/pages/Opening/ProjectManager/Room/index.tsx index e994358..a977fd0 100644 --- a/src/pages/Opening/ProjectManager/Room/index.tsx +++ b/src/pages/Opening/ProjectManager/Room/index.tsx @@ -350,7 +350,7 @@ const Room: React.FC<{}> = () => { return ( <> { - rangeT && record.quoteId != null ? <> + rangeT && record.quoteId != null && record.isSignTime ? <> : null } @@ -389,6 +389,7 @@ const Room: React.FC<{}> = () => { oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id,补录报价用 oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus; oneGys["quoteId"] = item1.quoteId; + oneGys["isSignTime"] = juese === 'ebtp-supplier' ? item1.bidUserId == userId ? true : res.data.suppliers.findIndex((item: any) => item.bidUserId == userId ? item.signTime != null : false) != -1 : true; if (item1.companyId == tenderId) { category.map((item2: any, index: any) => { oneGys[item2] = item1.dataMap[item2]; diff --git a/src/pages/ZTanPan/RoomConfig/View/Manager/Sing/index.tsx b/src/pages/ZTanPan/RoomConfig/View/Manager/Sing/index.tsx index bbf3cd1..216056d 100644 --- a/src/pages/ZTanPan/RoomConfig/View/Manager/Sing/index.tsx +++ b/src/pages/ZTanPan/RoomConfig/View/Manager/Sing/index.tsx @@ -320,7 +320,7 @@ const Room: React.FC<{}> = () => { return ( <> { - rangeT && record.quoteId != null ? <> + rangeT && record.quoteId != null && record.isSignTime ? <> : null } @@ -359,6 +359,7 @@ const Room: React.FC<{}> = () => { oneGys["newPriceRemark"] = item1.newPriceRemark;//数据表id,补录报价用 oneGys["quoteDecryptStatus"] = item1.quoteDecryptStatus; oneGys["quoteId"] = item1.quoteId; + oneGys["isSignTime"] = juese === 'ebtp-supplier' ? item1.bidUserId == userId ? true : res.data.suppliers.findIndex((item: any) => item.bidUserId == userId ? item.signTime != null : false) != -1 : true; if (item1.companyId == tendererId) { category.map((item2: any, index: any) => { oneGys[item2] = item1.dataMap[item2];