19626
2023-09-13 196df4d4bf1941546d349cadbf343655578ec280
force-app/main/default/pages/LostEditPage1.page
@@ -47,13 +47,13 @@
            if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) {
                arrSource = decodeURI(this.location.search).substring(1, this.location.search.length).split("&"), i = 0;
                while (i < arrSource.length && !isFound) arrSource[i].indexOf("=") > 0 && arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase() && (paramValue = arrSource[i].split("=")[1], isFound = !0), i++
                    }
            }
            return paramValue == "" && (paramValue = null), paramValue;
        }
        function lostReport(){
        //失单报告的ID
        var ReportId = getParam('id');
        var str = '/apex/PCLLostReportPage?pageStatus=Edit&id=' + ReportId;
        var str = '/apex/PCLLostReportPageLwc?pageStatus=Edit&reportId=' + ReportId;
        window.open(str,'_self');
    
        }