订单管理更新

This commit is contained in:
2024-10-31 10:26:10 +08:00
parent 9833e137f9
commit 1621a1feed
2 changed files with 4 additions and 3 deletions

View File

@@ -193,10 +193,10 @@
})
const seatFeePrice = computed(() => {
if (!props.seatFee.totalAmount) {
if (!props.seatFee.priceAmount) {
return 0
}
const n = props.seatFee.totalAmount * (props.seatFee.status == 'return' ? 0 : 1)
const n = props.seatFee.priceAmount * (props.seatFee.status == 'return' ? 0 : 1)
return n.toFixed(2)
})