From b551d133c0b97297902564d3cdbd17bd0b0ad79d Mon Sep 17 00:00:00 2001
From: zz <1842059105@qq.com>
Date: 星期三, 31 五月 2023 16:59:34 +0800
Subject: [PATCH] 产品咨询单 修改错误字段

---
 force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js b/force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js
index ba54123..cdf5c83 100644
--- a/force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js
+++ b/force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js
@@ -7,7 +7,7 @@
     @api recordId;//OwnerId
     IsLoading = true;
     FSEOwnerId;
-    ServiceStatus;
+    userId;
     JINGZHUOJISHU;
 
     @wire(CurrentPageReference)
@@ -25,7 +25,6 @@
         init({
             recordId: this.recordId
         }).then(result => {
-            this.ServiceStatus = result.ServiceStatus;
             this.FSEOwnerId = result.FSEOwnerId;
             this.userId = result.userId;
             this.JINGZHUOJISHU = result.JINGZHUOJISHU;
@@ -36,7 +35,7 @@
     }
     // 浜у搧鍜ㄨ鍗� 鏈嶅姟璺熻繘
     ServiceFollow (){
-        if(null != this.FSEOwnerId && this.FSEOwnerId== this.userId || this.userId == this.JINGZHUOJISHU){
+        if(null != this.FSEOwnerId && (this.FSEOwnerId== this.userId || this.userId == this.JINGZHUOJISHU)){
             window.open ('/apex/ServiceFollowPage?id='+this.recordId, '鏈嶅姟璺熻繘',
             'height=400, width=800, top=200, left=400, toolbar=no, menubar=no, scrollbars=no, location=no, status=no');
         }else{

--
Gitblit v1.9.1