binxie
2023-06-26 00e147ec892cb1e89d0698787a8c60da1014cdb7
force-app/main/default/lwc/lexReturnGoodCusInput/lexReturnGoodCusInput.js
@@ -19,13 +19,19 @@
    changeInputValue(event){
        this.inputValue = event.detail.value;
        this.dispatchEvent(new CustomEvent('changereturncount', {
        this.dispatchEvent(
            new CustomEvent('changereturncount', {
            composed: true,
            bubbles: true,
            cancelable: true,
            detail: {
                data: { value: this.inputValue, boxPrice: this.boxPrice, recordId:this.recordId}
                    data: {
                        value: this.inputValue,
                        boxPrice: this.boxPrice,
                        recordId: this.recordId
            }
        }));
                }
            })
        );
    }
}