buli
2023-05-22 71b93327e8f3fb3bffffc7c033c1f782e7b6ab32
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() {