1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <template>
| <c-common-toast></c-common-toast>
| <lightning-input
| style="border: 1px solid red; border-radius: 5px"
| step="any"
| type="number"
| name="shipmentNumber"
| label="出货数量"
| variant="label-hidden"
| onchange={dataChange}
| data-field="shipmentNumber"
| value={shipmentNumber}
| onblur={shipmentNumberBlur}
| min="0"
| class="inputFont"
| ></lightning-input>
| </template>
|
|