Merge branch 'master' of http://10.124.128.2:8888/eshop/fe_service_ebtp_frontend into 20220613-将PUT和DELETE请求更改成POST请求

This commit is contained in:
jl-zhoujl2
2022-07-26 15:08:55 +08:00
162 changed files with 6179 additions and 1956 deletions

View File

@ -350,7 +350,7 @@ const Room: React.FC<{}> = () => {
return (
<>
{
rangeT && record.quoteId != null ? <>
rangeT && record.quoteId != null && record.isSignTime ? <>
<Button key='ckfxbj' onClick={() => { queryFxbj(record, tdocId1); }}></Button>
</> : null
}
@ -375,6 +375,7 @@ const Room: React.FC<{}> = () => {
});
//拼data
let haveCompleteT = false;
const isLocalSign_: boolean = res.data.suppliers.findIndex((item: any) => item.bidUserId == userId ? item.signTime != null : false) != -1;
res.data.suppliers != undefined ? res.data.suppliers.map((item1: any, index: any) => {
let oneGys = {};
signTimeT[item1.bidUserId] = item1.signTime == null ? true : false;//控制显示 确认报价按钮
@ -389,6 +390,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 : isLocalSign_ : true;
if (item1.companyId == tenderId) {
category.map((item2: any, index: any) => {
oneGys[item2] = item1.dataMap[item2];