1
chenjingwu
2024-05-24 84e0a7994d22fa5be5e5f8ae91ca4990ef495afd
force-app/main/default/lwc/lexTenderingAttachmentButton/lexTenderingAttachmentButton.js
@@ -27,10 +27,14 @@
            this.id = result.Id;
            this.AttachmentButton();
            this.dispatchEvent(new CloseActionScreenEvent());
        })
        }).catch(error => {
            console.log("error"+error);
        }).finally(() => {
        });
    }
    
    //招标项目查看附件
    //查看附件
    AttachmentButton(){
        window.open(`/apex/TenderInformationUploadPdf?id=${this.id}`);
    }
@@ -43,3 +47,8 @@
        this.dispatchEvent(event);
    }
}
// var From= function(){
//     window.open( "/apex/TenderInformationUploadPdf?id={!URLENCODE(Tender_information__c.Id)}");
//     }
//     From();