perf: 修复我的约课列表不展示的问题

This commit is contained in:
richarjiang
2026-04-05 18:39:34 +08:00
parent 694330b7a6
commit fdb13c32c2
3 changed files with 230 additions and 98 deletions

View File

@@ -34,8 +34,8 @@ defineProps<{
const statusBarHeight = ref(0) const statusBarHeight = ref(0)
onMounted(() => { onMounted(() => {
const sysInfo = uni.getSystemInfoSync() const windowInfo = uni.getWindowInfo()
statusBarHeight.value = sysInfo.statusBarHeight ?? 20 statusBarHeight.value = windowInfo.statusBarHeight ?? 20
}) })
function handleBack() { function handleBack() {

View File

@@ -28,16 +28,25 @@
> >
<!-- Loading --> <!-- Loading -->
<view v-if="bookingStore.loadingBookings && !refreshingUpcoming" class="loading-wrap"> <view v-if="bookingStore.loadingBookings && !refreshingUpcoming" class="loading-wrap">
<view v-for="i in 3" :key="i" class="skeleton-card" /> <view v-for="i in 3" :key="i" class="skeleton-card">
<view class="skeleton-stripe" />
<view class="skeleton-body">
<view class="skeleton-line skeleton-line--long" />
<view class="skeleton-line skeleton-line--short" />
<view class="skeleton-line skeleton-line--medium" />
</view>
</view>
</view> </view>
<!-- Empty --> <!-- Empty -->
<view v-else-if="upcomingBookings.length === 0" class="empty-wrap"> <view v-else-if="upcomingBookings.length === 0" class="empty-wrap">
<text class="empty-icon">📅</text> <view class="empty-illustration">
<text class="empty-icon">&#x1F9D8;</text>
</view>
<text class="empty-title">暂无即将上课的预约</text> <text class="empty-title">暂无即将上课的预约</text>
<text class="empty-sub">去预约一节课</text> <text class="empty-sub">开始预约你的普拉提课程</text>
<view class="empty-btn" @tap="goBooking"> <view class="empty-btn" @tap="goBooking">
<text class="empty-btn-text">预约</text> <text class="empty-btn-text">立即预约</text>
</view> </view>
</view> </view>
@@ -50,21 +59,22 @@
> >
<view class="booking-stripe stripe--confirmed" /> <view class="booking-stripe stripe--confirmed" />
<view class="booking-content"> <view class="booking-content">
<view class="booking-main"> <view class="booking-header">
<view class="booking-datetime"> <view class="booking-datetime">
<text class="booking-date">{{ formatDateDisplay(booking.timeSlot.date) }}</text> <text class="booking-date">{{ formatDateDisplay(booking.timeSlot.date) }}</text>
<text class="booking-time"> <text class="booking-time">
{{ booking.timeSlot.startTime.slice(0, 5) }} {{ booking.timeSlot.endTime.slice(0, 5) }} {{ booking.timeSlot.startTime.slice(0, 5) }} - {{ booking.timeSlot.endTime.slice(0, 5) }}
</text> </text>
</view> </view>
<view class="status-badge badge--confirmed"> <view class="status-badge badge--confirmed">
<text class="status-text">已预约</text> <text class="status-text">已预约</text>
</view> </view>
</view> </view>
<view class="booking-footer">
<view class="booking-meta"> <view class="booking-meta">
<text class="meta-text">💳 {{ booking.membership.cardType.name }}</text> <text class="meta-label">使用卡种</text>
<text class="meta-value">{{ booking.membership.cardType.name }}</text>
</view> </view>
<view class="cancel-row">
<view class="cancel-btn" @tap="handleCancel(booking)"> <view class="cancel-btn" @tap="handleCancel(booking)">
<text class="cancel-text">取消预约</text> <text class="cancel-text">取消预约</text>
</view> </view>
@@ -87,12 +97,20 @@
> >
<!-- Loading --> <!-- Loading -->
<view v-if="bookingStore.loadingBookings && !refreshingHistory" class="loading-wrap"> <view v-if="bookingStore.loadingBookings && !refreshingHistory" class="loading-wrap">
<view v-for="i in 3" :key="i" class="skeleton-card" /> <view v-for="i in 3" :key="i" class="skeleton-card">
<view class="skeleton-stripe" />
<view class="skeleton-body">
<view class="skeleton-line skeleton-line--long" />
<view class="skeleton-line skeleton-line--short" />
</view>
</view>
</view> </view>
<!-- Empty --> <!-- Empty -->
<view v-else-if="historyBookings.length === 0" class="empty-wrap"> <view v-else-if="historyBookings.length === 0" class="empty-wrap">
<text class="empty-icon">📋</text> <view class="empty-illustration">
<text class="empty-icon">&#x1F4CB;</text>
</view>
<text class="empty-title">暂无历史记录</text> <text class="empty-title">暂无历史记录</text>
<text class="empty-sub">已完成或取消的课程将显示在这里</text> <text class="empty-sub">已完成或取消的课程将显示在这里</text>
</view> </view>
@@ -106,19 +124,20 @@
> >
<view class="booking-stripe" :class="stripeClass(booking.status)" /> <view class="booking-stripe" :class="stripeClass(booking.status)" />
<view class="booking-content"> <view class="booking-content">
<view class="booking-main"> <view class="booking-header">
<view class="booking-datetime"> <view class="booking-datetime">
<text class="booking-date">{{ formatDateDisplay(booking.timeSlot.date) }}</text> <text class="booking-date">{{ formatDateDisplay(booking.timeSlot.date) }}</text>
<text class="booking-time"> <text class="booking-time">
{{ booking.timeSlot.startTime.slice(0, 5) }} {{ booking.timeSlot.endTime.slice(0, 5) }} {{ booking.timeSlot.startTime.slice(0, 5) }} - {{ booking.timeSlot.endTime.slice(0, 5) }}
</text> </text>
</view> </view>
<view class="status-badge" :class="statusBadgeClass(booking.status)"> <view class="status-badge" :class="statusBadgeClass(booking.status)">
<text class="status-text">{{ statusLabel(booking.status) }}</text> <text class="status-text">{{ statusLabel(booking.status) }}</text>
</view> </view>
</view> </view>
<view class="booking-meta"> <view class="booking-meta-row">
<text class="meta-text">💳 {{ booking.membership.cardType.name }}</text> <text class="meta-label">使用卡种</text>
<text class="meta-value">{{ booking.membership.cardType.name }}</text>
</view> </view>
</view> </view>
</view> </view>
@@ -154,34 +173,47 @@ const activeTab = ref<TabKey>('upcoming')
const refreshingUpcoming = ref(false) const refreshingUpcoming = ref(false)
const refreshingHistory = ref(false) const refreshingHistory = ref(false)
// ─── Safe array accessor ─────────────────────────────────
function safeBookings(): readonly BookingWithDetails[] {
const raw = bookingStore.myBookings
return Array.isArray(raw) ? raw : []
}
/** Normalize date to YYYY-MM-DD — handles both "2026-04-06" and "2026-04-06T00:00:00.000Z" */
function toDateStr(date: string): string {
return date.slice(0, 10)
}
// ─── Filtered bookings ──────────────────────────────────── // ─── Filtered bookings ────────────────────────────────────
const today = computed(() => formatDate(new Date())) const today = computed(() => formatDate(new Date()))
const upcomingBookings = computed<BookingWithDetails[]>(() => { const upcomingBookings = computed<BookingWithDetails[]>(() => {
const all = bookingStore.myBookings as BookingWithDetails[] return safeBookings()
return all
.filter( .filter(
(b) => b.status === BookingStatus.CONFIRMED && b.timeSlot.date >= today.value, (b) => b.status === BookingStatus.CONFIRMED && toDateStr(b.timeSlot.date) >= today.value,
) )
.sort((a, b) => { .sort((a, b) => {
if (a.timeSlot.date !== b.timeSlot.date) { const dateA = toDateStr(a.timeSlot.date)
return a.timeSlot.date.localeCompare(b.timeSlot.date) const dateB = toDateStr(b.timeSlot.date)
if (dateA !== dateB) {
return dateA.localeCompare(dateB)
} }
return a.timeSlot.startTime.localeCompare(b.timeSlot.startTime) return a.timeSlot.startTime.localeCompare(b.timeSlot.startTime)
}) })
}) })
const historyBookings = computed<BookingWithDetails[]>(() => { const historyBookings = computed<BookingWithDetails[]>(() => {
const all = bookingStore.myBookings as BookingWithDetails[] return safeBookings()
return all
.filter( .filter(
(b) => (b) =>
b.status !== BookingStatus.CONFIRMED || b.status !== BookingStatus.CONFIRMED ||
b.timeSlot.date < today.value, toDateStr(b.timeSlot.date) < today.value,
) )
.sort((a, b) => { .sort((a, b) => {
if (b.timeSlot.date !== a.timeSlot.date) { const dateA = toDateStr(a.timeSlot.date)
return b.timeSlot.date.localeCompare(a.timeSlot.date) const dateB = toDateStr(b.timeSlot.date)
if (dateB !== dateA) {
return dateB.localeCompare(dateA)
} }
return b.timeSlot.startTime.localeCompare(a.timeSlot.startTime) return b.timeSlot.startTime.localeCompare(a.timeSlot.startTime)
}) })
@@ -190,43 +222,58 @@ const historyBookings = computed<BookingWithDetails[]>(() => {
const upcomingCount = computed(() => upcomingBookings.value.length) const upcomingCount = computed(() => upcomingBookings.value.length)
// ─── Helpers ────────────────────────────────────────────── // ─── Helpers ──────────────────────────────────────────────
function statusLabel(status: BookingStatus): string { const STATUS_LABELS: Record<BookingStatus, string> = {
const map: Record<BookingStatus, string> = {
[BookingStatus.CONFIRMED]: '已预约', [BookingStatus.CONFIRMED]: '已预约',
[BookingStatus.CANCELLED]: '已取消', [BookingStatus.CANCELLED]: '已取消',
[BookingStatus.COMPLETED]: '已完成', [BookingStatus.COMPLETED]: '已完成',
[BookingStatus.NO_SHOW]: '未出席', [BookingStatus.NO_SHOW]: '未出席',
}
return map[status] ?? status
} }
function statusBadgeClass(status: BookingStatus): string { const STATUS_BADGE_CLASSES: Record<BookingStatus, string> = {
const map: Record<BookingStatus, string> = {
[BookingStatus.CONFIRMED]: 'badge--confirmed', [BookingStatus.CONFIRMED]: 'badge--confirmed',
[BookingStatus.CANCELLED]: 'badge--cancelled', [BookingStatus.CANCELLED]: 'badge--cancelled',
[BookingStatus.COMPLETED]: 'badge--completed', [BookingStatus.COMPLETED]: 'badge--completed',
[BookingStatus.NO_SHOW]: 'badge--noshow', [BookingStatus.NO_SHOW]: 'badge--noshow',
}
return map[status] ?? ''
} }
function stripeClass(status: BookingStatus): string { const STATUS_STRIPE_CLASSES: Record<BookingStatus, string> = {
const map: Record<BookingStatus, string> = {
[BookingStatus.CONFIRMED]: 'stripe--confirmed', [BookingStatus.CONFIRMED]: 'stripe--confirmed',
[BookingStatus.CANCELLED]: 'stripe--cancelled', [BookingStatus.CANCELLED]: 'stripe--cancelled',
[BookingStatus.COMPLETED]: 'stripe--completed', [BookingStatus.COMPLETED]: 'stripe--completed',
[BookingStatus.NO_SHOW]: 'stripe--noshow', [BookingStatus.NO_SHOW]: 'stripe--noshow',
} }
return map[status] ?? ''
function statusLabel(status: BookingStatus): string {
return STATUS_LABELS[status] ?? status
}
function statusBadgeClass(status: BookingStatus): string {
return STATUS_BADGE_CLASSES[status] ?? ''
}
function stripeClass(status: BookingStatus): string {
return STATUS_STRIPE_CLASSES[status] ?? ''
} }
function formatDateDisplay(dateStr: string): string { function formatDateDisplay(dateStr: string): string {
// e.g. "2024-03-15" → "3月15日 周五" const normalized = toDateStr(dateStr)
const d = new Date(dateStr) const todayStr = formatDate(new Date())
const month = d.getMonth() + 1 const tomorrowDate = new Date()
const day = d.getDate() tomorrowDate.setDate(tomorrowDate.getDate() + 1)
const weekday = getWeekdayLabel(d) const tomorrowStr = formatDate(tomorrowDate)
return `${month}${day}${weekday}`
// Parse from normalized YYYY-MM-DD to avoid timezone shifts
const [y, m, d] = normalized.split('-').map(Number)
const localDate = new Date(y, m - 1, d)
const weekday = getWeekdayLabel(localDate)
if (normalized === todayStr) {
return `今天 ${m}${d}`
}
if (normalized === tomorrowStr) {
return `明天 ${m}${d}`
}
return `${m}${d}${weekday}`
} }
// ─── Actions ────────────────────────────────────────────── // ─── Actions ──────────────────────────────────────────────
@@ -279,8 +326,9 @@ async function handleCancel(booking: BookingWithDetails) {
// ─── Lifecycle ──────────────────────────────────────────── // ─── Lifecycle ────────────────────────────────────────────
onMounted(() => { onMounted(() => {
const sys = uni.getSystemInfoSync() const windowInfo = uni.getWindowInfo()
navBarHeight.value = `${(sys.statusBarHeight ?? 20) + Math.round(88 * sys.windowWidth / 750)}px` const statusBarH = windowInfo.statusBarHeight ?? 20
navBarHeight.value = `${statusBarH + Math.round(88 * windowInfo.windowWidth / 750)}px`
bookingStore.fetchMyBookings() bookingStore.fetchMyBookings()
}) })
</script> </script>
@@ -311,6 +359,11 @@ onMounted(() => {
gap: 8rpx; gap: 8rpx;
padding: 28rpx 0; padding: 28rpx 0;
position: relative; position: relative;
transition: opacity 0.2s;
&:active {
opacity: 0.7;
}
&.active { &.active {
.tab-label { .tab-label {
@@ -361,7 +414,7 @@ onMounted(() => {
height: calc(100vh - 88rpx); height: calc(100vh - 88rpx);
} }
/* ── Loading ─────────────────────────────────────────── */ /* ── Loading skeleton ────────────────────────────────── */
.loading-wrap { .loading-wrap {
padding: 24rpx; padding: 24rpx;
display: flex; display: flex;
@@ -370,11 +423,37 @@ onMounted(() => {
} }
.skeleton-card { .skeleton-card {
height: 160rpx;
border-radius: 16rpx; border-radius: 16rpx;
background: #fff;
overflow: hidden;
display: flex;
flex-direction: row;
}
.skeleton-stripe {
width: 8rpx;
flex-shrink: 0;
background: #eee;
}
.skeleton-body {
flex: 1;
padding: 28rpx 24rpx;
display: flex;
flex-direction: column;
gap: 16rpx;
}
.skeleton-line {
height: 28rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%); background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
background-size: 400% 100%; background-size: 400% 100%;
animation: shimmer 1.4s infinite; animation: shimmer 1.4s infinite;
&--long { width: 70%; }
&--short { width: 40%; }
&--medium { width: 55%; }
} }
@keyframes shimmer { @keyframes shimmer {
@@ -389,11 +468,22 @@ onMounted(() => {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 120rpx 40rpx; padding: 120rpx 40rpx;
gap: 20rpx; gap: 16rpx;
}
.empty-illustration {
width: 160rpx;
height: 160rpx;
border-radius: 80rpx;
background: #faf6f1;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16rpx;
} }
.empty-icon { .empty-icon {
font-size: 80rpx; font-size: 72rpx;
} }
.empty-title { .empty-title {
@@ -408,16 +498,23 @@ onMounted(() => {
} }
.empty-btn { .empty-btn {
margin-top: 12rpx; margin-top: 24rpx;
padding: 20rpx 56rpx; padding: 22rpx 64rpx;
border-radius: 44rpx; border-radius: 44rpx;
background: #c9a87c; background: linear-gradient(135deg, #d4b896, #c9a87c);
box-shadow: 0 4rpx 16rpx rgba(201, 168, 124, 0.3);
&:active {
opacity: 0.85;
transform: scale(0.98);
}
} }
.empty-btn-text { .empty-btn-text {
font-size: 30rpx; font-size: 30rpx;
color: #fff; color: #fff;
font-weight: 600; font-weight: 600;
letter-spacing: 2rpx;
} }
/* ── List ────────────────────────────────────────────── */ /* ── List ────────────────────────────────────────────── */
@@ -425,15 +522,15 @@ onMounted(() => {
padding: 24rpx 24rpx 0; padding: 24rpx 24rpx 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 16rpx; gap: 20rpx;
} }
/* ── Booking card ────────────────────────────────────── */ /* ── Booking card ────────────────────────────────────── */
.booking-card { .booking-card {
background: #fff; background: #fff;
border-radius: 16rpx; border-radius: 20rpx;
overflow: hidden; overflow: hidden;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06); box-shadow: 0 2rpx 16rpx rgba(0, 0, 0, 0.05);
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }
@@ -444,20 +541,20 @@ onMounted(() => {
flex-shrink: 0; flex-shrink: 0;
&.stripe--confirmed { background: #c9a87c; } &.stripe--confirmed { background: #c9a87c; }
&.stripe--completed { background: #4caf50; } &.stripe--completed { background: #66bb6a; }
&.stripe--cancelled { background: #e0e0e0; } &.stripe--cancelled { background: #e0e0e0; }
&.stripe--noshow { background: #ef4444; } &.stripe--noshow { background: #ef5350; }
} }
.booking-content { .booking-content {
flex: 1; flex: 1;
padding: 24rpx 24rpx 24rpx 20rpx; padding: 28rpx 24rpx 24rpx 20rpx;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 12rpx; gap: 16rpx;
} }
.booking-main { .booking-header {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: flex-start; align-items: flex-start;
@@ -471,14 +568,15 @@ onMounted(() => {
} }
.booking-date { .booking-date {
font-size: 28rpx; font-size: 30rpx;
font-weight: 600; font-weight: 600;
color: #1a1a1a; color: #1a1a1a;
} }
.booking-time { .booking-time {
font-size: 24rpx; font-size: 26rpx;
color: #888; color: #888;
letter-spacing: 1rpx;
} }
/* Status badge */ /* Status badge */
@@ -487,10 +585,10 @@ onMounted(() => {
border-radius: 20rpx; border-radius: 20rpx;
flex-shrink: 0; flex-shrink: 0;
&.badge--confirmed { background: #fff8ee; } &.badge--confirmed { background: rgba(201, 168, 124, 0.12); }
&.badge--completed { background: #f0faf3; } &.badge--completed { background: rgba(102, 187, 106, 0.12); }
&.badge--cancelled { background: #f5f5f5; } &.badge--cancelled { background: rgba(0, 0, 0, 0.04); }
&.badge--noshow { background: #fef0f0; } &.badge--noshow { background: rgba(239, 83, 80, 0.1); }
} }
.status-text { .status-text {
@@ -498,34 +596,56 @@ onMounted(() => {
font-weight: 600; font-weight: 600;
.badge--confirmed & { color: #c9a87c; } .badge--confirmed & { color: #c9a87c; }
.badge--completed & { color: #4caf50; } .badge--completed & { color: #66bb6a; }
.badge--cancelled & { color: #bbb; } .badge--cancelled & { color: #bbb; }
.badge--noshow & { color: #ef4444; } .badge--noshow & { color: #ef5350; }
}
/* Footer row with meta + cancel */
.booking-footer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding-top: 8rpx;
border-top: 1rpx solid #f5f5f5;
} }
/* Meta info */ /* Meta info */
.booking-meta { .booking-meta,
.meta-text { .booking-meta-row {
font-size: 24rpx;
color: #999;
}
}
/* Cancel row */
.cancel-row {
display: flex; display: flex;
justify-content: flex-end; flex-direction: row;
margin-top: 4rpx; align-items: center;
gap: 8rpx;
} }
.booking-meta-row {
padding-top: 8rpx;
border-top: 1rpx solid #f5f5f5;
}
.meta-label {
font-size: 22rpx;
color: #bbb;
}
.meta-value {
font-size: 24rpx;
color: #666;
font-weight: 500;
}
/* Cancel button */
.cancel-btn { .cancel-btn {
padding: 10rpx 24rpx; padding: 12rpx 28rpx;
border-radius: 24rpx; border-radius: 24rpx;
border: 1rpx solid #ef444430; border: 1rpx solid rgba(239, 68, 68, 0.2);
background: #fef0f0; background: rgba(254, 240, 240, 0.8);
transition: opacity 0.2s;
&:active { &:active {
opacity: 0.75; opacity: 0.65;
} }
} }

View File

@@ -7,6 +7,14 @@ import type {
} from '@mp-pilates/shared' } from '@mp-pilates/shared'
import { get, post, put } from '../utils/request' import { get, post, put } from '../utils/request'
/** Server paginated responses use `data` field, not `items` from the shared type */
interface ServerPaginatedResult<T> {
readonly data: readonly T[]
readonly total: number
readonly page: number
readonly limit: number
}
export const useBookingStore = defineStore('booking', () => { export const useBookingStore = defineStore('booking', () => {
const slots = ref<readonly TimeSlotWithBookingStatus[]>([]) const slots = ref<readonly TimeSlotWithBookingStatus[]>([])
const myBookings = ref<readonly BookingWithDetails[]>([]) const myBookings = ref<readonly BookingWithDetails[]>([])
@@ -39,10 +47,12 @@ export const useBookingStore = defineStore('booking', () => {
async function fetchMyBookings(status?: string) { async function fetchMyBookings(status?: string) {
loadingBookings.value = true loadingBookings.value = true
try { try {
const params = status ? { status } : {} const params: Record<string, unknown> = status ? { status } : {}
myBookings.value = await get<BookingWithDetails[]>('/booking/my', params) const paginated = await get<ServerPaginatedResult<BookingWithDetails>>('/booking/my', params)
myBookings.value = Array.isArray(paginated.data) ? paginated.data : []
} catch (err) { } catch (err) {
console.error('Fetch bookings failed:', err) console.error('Fetch bookings failed:', err)
myBookings.value = []
} finally { } finally {
loadingBookings.value = false loadingBookings.value = false
} }
@@ -50,9 +60,11 @@ export const useBookingStore = defineStore('booking', () => {
async function fetchUpcomingBookings() { async function fetchUpcomingBookings() {
try { try {
upcomingBookings.value = await get<BookingWithDetails[]>('/booking/my/upcoming') const result = await get<BookingWithDetails[]>('/booking/my/upcoming')
upcomingBookings.value = Array.isArray(result) ? result : []
} catch (err) { } catch (err) {
console.error('Fetch upcoming bookings failed:', err) console.error('Fetch upcoming bookings failed:', err)
upcomingBookings.value = []
} }
} }