|
|
@@ -428,8 +428,8 @@
|
|
|
},
|
|
|
onReplyLapQtyInput: function (index) {
|
|
|
let lapQty = this.sayPriceObj.replies[index].lapQty
|
|
|
- if (lapQty.length >= 9) {
|
|
|
- this.sayPriceObj.replies[index].lapQty = lapQty.substring(0, 8)
|
|
|
+ if (lapQty.length > 9) {
|
|
|
+ this.sayPriceObj.replies[index].lapQty = lapQty.substring(0, 9)
|
|
|
}
|
|
|
},
|
|
|
getLimitDownQty: function () {
|