From 71b93327e8f3fb3bffffc7c033c1f782e7b6ab32 Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期一, 22 五月 2023 17:37:16 +0800
Subject: [PATCH] test

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

diff --git a/force-app/main/default/lwc/lexInputLookupCell/lexInputLookupCell.js b/force-app/main/default/lwc/lexInputLookupCell/lexInputLookupCell.js
index fd6cc02..7331ba2 100644
--- a/force-app/main/default/lwc/lexInputLookupCell/lexInputLookupCell.js
+++ b/force-app/main/default/lwc/lexInputLookupCell/lexInputLookupCell.js
@@ -4,7 +4,7 @@
  * @Author: chen jing wu
  * @Date: 2023-04-27 11:38:36
  * @LastEditors: chen jing wu
- * @LastEditTime: 2023-04-27 13:50:37
+ * @LastEditTime: 2023-05-04 11:41:06
  */
 import { LightningElement, api } from 'lwc';
 
@@ -14,6 +14,7 @@
     @api apiName;
     @api type;
     @api fieldType;
+    @api disable;
     value;
     label;
     connectedCallback() {
@@ -24,6 +25,13 @@
     handleInputChange(event) {
         this.value = event.target.value; 
     }
+    get isDisable(){
+        if(this.disable == true){
+            return true;
+        }else{
+            return false;
+        }
+    }
 
     @api
     inputValue() {

--
Gitblit v1.9.1