再次提交一下代码

This commit is contained in:
andy
2026-07-17 13:13:47 +07:00
parent f4d86248d4
commit 980a3a2535
41 changed files with 1699 additions and 187 deletions

View File

@@ -108,8 +108,6 @@
<thead>
<tr>
<th>{{ t('orderList.columns.order') }}</th>
<th>{{ t('orderList.columns.status') }}</th>
<th>{{ t('orderList.columns.openTasks') }}</th>
<th>{{ t('orderList.columns.createdAt') }}</th>
<th>{{ t('workbench.columns.updatedAt') }}</th>
<th>{{ t('workbench.columns.operation') }}</th>
@@ -122,10 +120,7 @@
>
<td>
<strong>{{ formatOrderKey(order) }}</strong>
<small class="th-code">{{ order.order_id }}</small>
</td>
<td><ReservationStatusBadge :status="order.order_status" /></td>
<td>{{ order.open_task_count ?? 0 }}</td>
<td>{{ formatReservationDateTime(order.created_at) }}</td>
<td>{{ formatReservationDateTime(order.updated_at) }}</td>
<td>
@@ -197,7 +192,6 @@ import { computed, onMounted, reactive, ref, watch } from 'vue'
import { RouterLink } from 'vue-router'
import { useI18n } from 'vue-i18n'
import ReservationStatusBadge from '@/components/reservation/ReservationStatusBadge.vue'
import { fetchReservationOrders } from '@/services/reservationService'
import { useAuthStore } from '@/stores/authStore'
import type { ReservationOrderListFilters, ReservationOrderListItem, ReservationPageResult } from '@/types/reservation'