1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <template>
| <lightning-input
| style="border: 1px solid red; border-radius: 5px"
| step="any"
| type="number"
| name="shipmentUnitPrice"
| label="deliveryOrderNo"
| variant="label-hidden"
| data-field="shipmentUnitPrice"
| value={shippingUnitPrice}
| onblur={shipmentUnitPriceBlur}
| min="0"
| class="inputFont"
| onchange={limitDecimals}
| ></lightning-input>
| </template>
|
|