From b954ea6b036aa2d37bc09ee7ef9b892c17e5f355 Mon Sep 17 00:00:00 2001
From: KKbes <1620284052@qq.com>
Date: 星期三, 09 八月 2023 14:47:14 +0800
Subject: [PATCH] review

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

diff --git a/force-app/main/default/lwc/lexUpdateTimeReply/lexUpdateTimeReply.js b/force-app/main/default/lwc/lexUpdateTimeReply/lexUpdateTimeReply.js
index 35cfe5f..7dba725 100644
--- a/force-app/main/default/lwc/lexUpdateTimeReply/lexUpdateTimeReply.js
+++ b/force-app/main/default/lwc/lexUpdateTimeReply/lexUpdateTimeReply.js
@@ -38,22 +38,15 @@
 	@wire(getRecord, { recordId: USER_ID, fields: [USERPROFILE_ID]}) 
     userDetails({error, data}) {
         if (data) {
-        	this.currentUserProfileId =data.fields.ProfileId.value;
-        	console.log(data.fields);          
+        	this.currentUserProfileId =data.fields.ProfileId.value;      
         } else if (error) {
             this.error = error ;
         }
-    }
-
-
-
-    connectedCallback(){
         init({
             recordId: this.recordId
         }).then(result => {
             if (result != null) {
                 this.Campaign = result;
-                console.log(this.Campaign);
                 this.UpdateTimeReply().then(result=>{
                	this.IsLoading=false;
             	this.dispatchEvent(new CloseActionScreenEvent());
@@ -66,7 +59,13 @@
 	            variant : 'error'
         	});
         	this.dispatchEvent(eventInItError);
-        });
+        });        
+    }
+
+
+
+    connectedCallback(){
+
 
     }
 
@@ -86,5 +85,6 @@
 			this.dispatchEvent(event2);
 			return;
 		}
+		setInterval
     }
 }
\ No newline at end of file

--
Gitblit v1.9.1