|
@@ -1265,7 +1265,7 @@ const onChangeRecordQuantity = () => {
|
|
|
const onChangeRecordPrice = () => {
|
|
|
setTimeout(() => {
|
|
|
if (proxy.$util.isValue(bodyData.value.recordQuantity) && proxy.$util.isValue(bodyData.value.recordPrice)) {
|
|
|
- bodyData.value.recordTotalPrice = Number(bodyData.value.recordQuantity) * Number(bodyData.value.recordPrice)
|
|
|
+ bodyData.value.recordTotalPrice = proxy.$util.multiplication(bodyData.value.recordQuantity, bodyData.value.recordPrice)
|
|
|
} else {
|
|
|
bodyData.value.recordTotalPrice = ''
|
|
|
}
|