buli
2023-07-14 5b5c1e16deaa3a9d6d0ed1ffca390655ed103df7
force-app/main/default/lwc/customShippingUnitPriceComp/customShippingUnitPriceComp.js
@@ -11,31 +11,24 @@
    limitDecimals(event) {
        const value = parseFloat(event.target.value); // 将输入值转换为数字类型
        const roundedValue = Math.round(value * 100) / 100; // 将数字四舍五入到两位小数
        if (isNaN(value) || isNaN(roundedValue)) {
            // 如果数字无效,则清空输入框
        if (isNaN(value) || isNaN(roundedValue)) { // 如果数字无效,则清空输入框
            event.target.value = '';
        } else if (roundedValue !== value) {
            // 如果输入框的值超出了两位小数,则修改为两位小数
        } else if (roundedValue !== value) { // 如果输入框的值超出了两位小数,则修改为两位小数
            event.target.value = roundedValue.toFixed(2);
        }
    }
    shipmentUnitPriceBlur(event) {
        console.log('shipmentUnitPriceBlur');
        console.log('shipmentUnitPriceBlur')
        this.shippingUnitPrice = event.target.value;
        this.dispatchEvent(
            new CustomEvent('shipmentunitprice', {
        this.dispatchEvent(new CustomEvent('shipmentunitprice', {
                composed: true,
                bubbles: true,
                cancelable: true,
                detail: {
                    data: {
                        shipmentunitprice: this.shippingUnitPrice,
                        recordId: this.recordId
                data: { shipmentunitprice: this.shippingUnitPrice, recordId: this.recordId }
                    }
                }
            })
        );
        }));
    }
}