|
|
@@ -43,7 +43,7 @@
|
|
|
</Cell>
|
|
|
<Field name="TPPrice" :rules="formRules.TPPrice">
|
|
|
<template #input>
|
|
|
- <app-stepper v-model="formData.TPPrice"
|
|
|
+ <app-stepper v-model.number="formData.TPPrice"
|
|
|
:min="selectedRow.buyorsell === BuyOrSell.Sell ? quote?.decimalvalue : 0"
|
|
|
:decimal-length="quote?.decimalplace" :step="quote?.decimalvalue"
|
|
|
:disabled="!formData.TPFlag" />
|
|
|
@@ -59,7 +59,7 @@
|
|
|
</Cell>
|
|
|
<Field name="SLPrice" :rules="formRules.SLPrice">
|
|
|
<template #input>
|
|
|
- <app-stepper v-model="formData.SLPrice"
|
|
|
+ <app-stepper v-model.number="formData.SLPrice"
|
|
|
:min="selectedRow.buyorsell === BuyOrSell.Buy ? quote?.decimalvalue : 0"
|
|
|
:decimal-length="quote?.decimalplace" :step="quote?.decimalvalue"
|
|
|
:disabled="!formData.SLFlag" />
|