binxie
2023-06-26 dd004276162a2bf9d042ff0aaa569dc30a95d827
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
            }
        }));
                }
            })
        );
    }
}