dev
This commit is contained in:
parent
f1010aa4cb
commit
6c25d2b400
|
|
@ -146,6 +146,7 @@ const changeTab = (e: any) => {
|
|||
patientRegistration.value = {}
|
||||
itemId.value = null
|
||||
isShowFrom.value = false
|
||||
curRegister.value.status = e
|
||||
nextTick(() => {
|
||||
medicalHistoryRef.value?.clearList();
|
||||
})
|
||||
|
|
@ -161,14 +162,14 @@ const getOrderTotalPrice = () => {
|
|||
formData.value.itemDetail?.forEach((item: any) => {
|
||||
totalPrice += item.selectedPrice * item.selectedNum
|
||||
})
|
||||
console.log(totalPrice,'totalPrice')
|
||||
console.log(totalPrice, 'totalPrice')
|
||||
formData.value.goodsDetail?.forEach((item: any) => {
|
||||
totalPrice += item.selectedPrice * item.selectedNum
|
||||
})
|
||||
console.log(totalPrice,'totalPrice')
|
||||
console.log(totalPrice, 'totalPrice')
|
||||
formData.value.preTotalPrice = Math.round((totalPrice * 100) / 100)
|
||||
formData.value.totalPrice = totalPrice
|
||||
console.log(formData.value.totalPrice,'formData.value.totalPrice')
|
||||
console.log(formData.value.totalPrice, 'formData.value.totalPrice')
|
||||
}
|
||||
const caseRef = ref<any>("")
|
||||
const copyForm = (item: any) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue