binxie
2023-06-26 b5c5eb130ca0848124f9d136af4be142ad5aac07
force-app/main/default/lwc/lexReturnGoodCusInput/lexReturnGoodCusInput.js
@@ -19,19 +19,13 @@
    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}
                    }
                }
            })
        );
        }));
    }
}