|
@@ -244,7 +244,7 @@
|
|
|
}
|
|
|
},
|
|
|
onLeadtimeInput: function () {
|
|
|
- this.sayPriceObj.leadtime = this.sayPriceObj.leadtime.replace(/[^0-9]*$/g, '')
|
|
|
+ this.sayPriceObj.leadtime = this.sayPriceObj.leadtime.replace(/[^0-9]*/g, '')
|
|
|
if (this.sayPriceObj.leadtime.length > 3) {
|
|
|
this.sayPriceObj.leadtime = this.sayPriceObj.leadtime.substring(0, 3)
|
|
|
}
|
|
@@ -258,7 +258,7 @@
|
|
|
}
|
|
|
},
|
|
|
onTaxrateInput () {
|
|
|
- this.sayPriceObj.taxrate = this.sayPriceObj.taxrate.replace(/[^0-9]*$/g, '')
|
|
|
+ this.sayPriceObj.taxrate = this.sayPriceObj.taxrate.replace(/[^0-9]*/g, '')
|
|
|
if (this.sayPriceObj.taxrate.length > 2) {
|
|
|
this.sayPriceObj.taxrate = this.sayPriceObj.taxrate.substring(0, 2)
|
|
|
}
|
|
@@ -272,7 +272,7 @@
|
|
|
}
|
|
|
},
|
|
|
onReplyPriceInput: function (index) {
|
|
|
- this.sayPriceObj.replies[index].price = this.sayPriceObj.replies[index].price.replace(/[^0-9.]*$/g, '')
|
|
|
+ this.sayPriceObj.replies[index].price = this.sayPriceObj.replies[index].price.replace(/[^0-9.]*/g, '')
|
|
|
let price = this.sayPriceObj.replies[index].price
|
|
|
if (price >= 10000) {
|
|
|
this.sayPriceObj.replies[index].price = price.substring(0, 4)
|
|
@@ -319,7 +319,7 @@
|
|
|
}
|
|
|
},
|
|
|
onReplyLapQtyInput: function (index) {
|
|
|
- this.sayPriceObj.replies[index].lapQty = this.sayPriceObj.replies[index].lapQty.replace(/[^0-9]*$/g, '')
|
|
|
+ this.sayPriceObj.replies[index].lapQty = this.sayPriceObj.replies[index].lapQty.replace(/[^0-9]*/g, '')
|
|
|
let lapQty = this.sayPriceObj.replies[index].lapQty
|
|
|
if (lapQty.length > 9) {
|
|
|
this.sayPriceObj.replies[index].lapQty = lapQty.substring(0, 9)
|