From 890eafcf31f5f8d519bb9e6f9c15303be5328e2d Mon Sep 17 00:00:00 2001
From: KKbes <1620284052@qq.com>
Date: 星期一, 07 八月 2023 10:48:54 +0800
Subject: [PATCH] review

---
 force-app/main/default/lwc/lexProductRepairQuoteProduct/lexProductRepairQuoteProduct.js |   14 +++++---------
 1 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/force-app/main/default/lwc/lexProductRepairQuoteProduct/lexProductRepairQuoteProduct.js b/force-app/main/default/lwc/lexProductRepairQuoteProduct/lexProductRepairQuoteProduct.js
index e00356f..3f6644a 100644
--- a/force-app/main/default/lwc/lexProductRepairQuoteProduct/lexProductRepairQuoteProduct.js
+++ b/force-app/main/default/lwc/lexProductRepairQuoteProduct/lexProductRepairQuoteProduct.js
@@ -13,10 +13,8 @@
     getStateParameters(currentPageReference) {
         if (currentPageReference) {
           const urlValue = currentPageReference.state.recordId;
-          console.log(currentPageReference);
           if (urlValue) {
             let str = `${urlValue}`;
-            console.log(str);
             this.recordId = str;
 
           }
@@ -25,20 +23,18 @@
 
 
     connectedCallback(){
-        this.productRepairQuoteProduct().then(res=>{
-			this.IsLoading=false;
-			this.dispatchEvent(new CloseActionScreenEvent());
+      this.productRepairQuoteProduct().then(res=>{
+			  this.IsLoading=false;
+			  this.dispatchEvent(new CloseActionScreenEvent());
 		});
 
     }
 
 
 
-    async productRepairQuoteProduct(){
-    	
+    async productRepairQuoteProduct(){  	
     	window.open ('/apex/ProductRepairQuote?productid=' + this.recordId +
-    		'&flag=productsearch', '', 'height=500, width=1200, top=300, left=350,location=no');
-    
+    		'&flag=productsearch', '', 'height=500, width=1200, top=300, left=350,location=no');   
     }
 
 

--
Gitblit v1.9.1