修改订单详情,未选择用户显示服务员下单

This commit is contained in:
2024-10-10 18:00:47 +08:00
parent 4c5199f9d8
commit e2c3dbca87
2 changed files with 25 additions and 11 deletions

View File

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