buli
2023-05-26 a06ae1535ed13403aee2805e21a5adbf3938ed78
force-app/main/default/lwc/lexCustomTableInput/lexCustomTableInput.js
@@ -4,6 +4,9 @@
    @api inputValue;
    @api recordId;
    @api valueType;
    @api upperLimit;
    @api lowerLimit;
    @api allnumber;
    get showInputType(){
        if(this.valueType == 'Number'){
@@ -25,4 +28,17 @@
            }
        }));
    }
    blurInput(event){
        console.log('value1:'+event.target.value);
        console.log('limit:'+this.inputValue+'---'+ this.upperLimit+'---'+this.lowerLimit+'---'+this.allnumber);
        this.dispatchEvent(new CustomEvent('valueblur', {
            composed: true,
            bubbles: true,
            cancelable: true,
            detail: {
                data: { value: this.inputValue, upperLimit: this.upperLimit, lowerLimit: this.lowerLimit, allnumber: this.allnumber }
            }
        }));
    }
}