|
|
|
|
@ -8,7 +8,7 @@ import { listTableRowIndex } from '../../utils/listTableRowIndex'
|
|
|
|
|
import { reservationStatusLabel } from '../../utils/reservationStatus'
|
|
|
|
|
import { downloadActivityVerifyListXlsx } from '../../utils/exportActivityVerifyListXlsx'
|
|
|
|
|
|
|
|
|
|
const ACTIVITY_VERIFY_LIST_SCROLL_X = 2140
|
|
|
|
|
const ACTIVITY_VERIFY_LIST_SCROLL_X = 2240
|
|
|
|
|
|
|
|
|
|
type ActivityDayRef = {
|
|
|
|
|
id: number
|
|
|
|
|
@ -312,6 +312,9 @@ onMounted(async () => {
|
|
|
|
|
<a-table-column title="预约类型" :width="100">
|
|
|
|
|
<template #cell="{ record }">{{ bookingTypeLabel(record.booking_type, record.ticket_count) }}</template>
|
|
|
|
|
</a-table-column>
|
|
|
|
|
<a-table-column title="参与人数" :width="100">
|
|
|
|
|
<template #cell="{ record }">{{ record.ticket_count ?? 1 }}</template>
|
|
|
|
|
</a-table-column>
|
|
|
|
|
<a-table-column title="预约场次" :width="160" :ellipsis="true" :tooltip="true">
|
|
|
|
|
<template #cell="{ record }">{{ (record.activity_day?.session_name || '').trim() || '-' }}</template>
|
|
|
|
|
</a-table-column>
|
|
|
|
|
|