fix change password and support 3 decimal places

This commit is contained in:
Akhil Gupta
2021-06-01 21:43:41 +05:30
parent d41a41e25a
commit 1ca98cec24
7 changed files with 14 additions and 10 deletions

View File

@@ -206,7 +206,7 @@ export default {
<b-input
v-model.number="fillupModel.fuelQuantity"
type="number"
step=".01"
step=".001"
min="0"
expanded
required
@@ -225,7 +225,7 @@ export default {
v-model.number="fillupModel.perUnitPrice"
type="number"
min="0"
step=".01"
step=".001"
expanded
required
></b-input>
@@ -238,7 +238,7 @@ export default {
v-model.number="fillupModel.totalAmount"
type="number"
min="0"
step=".01"
step=".001"
expanded
required
></b-input>