## 管理端 / API(Bug 修复) - matches.service:getAdminMatchDetail 返回 markets 时补充 allowSingle、allowParlay 字段 - MatchMarketsPanel:mapMarkets 从接口读取单关/串关开关,不再硬编码为 true - match-form.ts:AdminMarket 类型补充 allowSingle、allowParlay ## 玩家端 — 全局主题(styles.css / index.html / site.webmanifest) - 海军暗色 + 白色强调 token,卡片高光渐变(--gradient-card) - 下拉/弹窗实底不透明(--dropdown-bg: #0A2540) - 统一 sub-toolbar、status-ribbon、filter-tab 等全局样式 - theme-color 同步为 #001A33 ## 玩家端 — 布局与壳层 - MainLayout:详情子页去顶栏/公告,sub-toolbar 全宽铺底 - WalletBalanceCard(新):个人页钱包卡片(反水 + 未结算) - walletStats.ts(新):钱包统计逻辑抽取 ## 玩家端 — 赛事 / 投注 - MatchDetailView:顶栏 8px 顶距、卡片全宽(--detail-gutter-x: 0) - 盘口状态标签(暂停/已关闭)、去掉 MarketTypeTile 右侧箭头 - VsBadge(新):纯文字 VS,删除 vs.png - isMarketLocked:仅关单关但允许串关时仍可点击,支持串关流程 - BetSlipDrawer:仅串关盘口禁用单关提交并提示 slip_parlay_only_hint - betSlip:SlipItem 增加 allowSingle 字段 - MatchBetCard / LeagueAccordionItem:45° 待开赛角标,去掉展开左侧白边 - OutrightEventSection:去掉展开时左侧白色选中条 - FootballView:加大左右边距、筛选栏去 sticky、选中态增强 - BannerCarousel:恢复原始全宽轮播 ## 玩家端 — 钱包 / 个人 / 认证 / 其他页面 - WalletView:移除顶部钱包卡片,保留账单列表 - ProfileView:保留 WalletBalanceCard - 充值/账单/注单/登录注册等页面配色与间距统一 - 公告标签、余额面板、语言切换、区号选择等弹层改为实底 ## 国际化 - zh-CN / en-US / ms-MY:新增 slip_parlay_only_hint(仅串关盘口提示) ## 资产 - 更新 banner.svg、empty-matches.svg 配色 - 删除 vs.png Co-authored-by: Cursor <cursoragent@cursor.com>
239 lines
5.5 KiB
Vue
239 lines
5.5 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onActivated, onMounted, onUnmounted } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import api from '../api';
|
|
import BetHistoryCard, { type BetHistoryItem } from '../components/BetHistoryCard.vue';
|
|
import BetStatsPanel from '../components/BetStatsPanel.vue';
|
|
import GoldSpinner from '../components/GoldSpinner.vue';
|
|
import { useOnLocaleChange } from '../composables/useOnLocaleChange';
|
|
import { usePullToRefresh } from '../composables/usePullToRefresh';
|
|
|
|
const { t } = useI18n();
|
|
|
|
const items = ref<BetHistoryItem[]>([]);
|
|
const total = ref(0);
|
|
const page = ref(1);
|
|
const loading = ref(false);
|
|
const initialLoading = ref(true);
|
|
const hasMore = ref(true);
|
|
const statusFilter = ref('');
|
|
|
|
const sentinel = ref<HTMLElement | null>(null);
|
|
let observer: IntersectionObserver | null = null;
|
|
|
|
const FILTERS = [
|
|
{ key: '', label: 'history.filter_all' },
|
|
{ key: 'WON', label: 'history.filter_won' },
|
|
{ key: 'LOST', label: 'history.filter_lost' },
|
|
{ key: 'PENDING', label: 'history.filter_pending' },
|
|
{ key: 'PUSH', label: 'history.filter_push' },
|
|
];
|
|
|
|
async function loadPage(p: number) {
|
|
if (loading.value) return;
|
|
loading.value = true;
|
|
try {
|
|
const params: Record<string, unknown> = { page: p };
|
|
if (statusFilter.value) params.status = statusFilter.value;
|
|
const { data } = await api.get('/player/bets', { params });
|
|
const result = data.data ?? { items: [], total: 0, pageSize: 20 };
|
|
total.value = result.total ?? 0;
|
|
const pageSize = result.pageSize ?? 20;
|
|
if (p === 1) {
|
|
items.value = result.items ?? [];
|
|
} else {
|
|
items.value = [...items.value, ...(result.items ?? [])];
|
|
}
|
|
hasMore.value = items.value.length < total.value && (result.items?.length ?? 0) >= pageSize;
|
|
page.value = p;
|
|
} finally {
|
|
loading.value = false;
|
|
initialLoading.value = false;
|
|
}
|
|
}
|
|
|
|
async function reset() {
|
|
items.value = [];
|
|
total.value = 0;
|
|
page.value = 1;
|
|
hasMore.value = true;
|
|
initialLoading.value = true;
|
|
loadPage(1);
|
|
}
|
|
|
|
function changeFilter(key: string) {
|
|
if (statusFilter.value === key) return;
|
|
statusFilter.value = key;
|
|
reset();
|
|
}
|
|
|
|
useOnLocaleChange(reset);
|
|
|
|
const { pullDistance, refreshing, spinning, progress } = usePullToRefresh({
|
|
onRefresh: async () => { await loadPage(1); },
|
|
});
|
|
|
|
onActivated(() => { void loadPage(1); });
|
|
|
|
onMounted(() => {
|
|
observer = new IntersectionObserver(
|
|
(entries) => {
|
|
if (entries[0].isIntersecting && hasMore.value && !loading.value) {
|
|
loadPage(page.value + 1);
|
|
}
|
|
},
|
|
{ rootMargin: '200px' },
|
|
);
|
|
if (sentinel.value) observer.observe(sentinel.value);
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
observer?.disconnect();
|
|
});
|
|
|
|
const pullIndicatorStyle = () => ({
|
|
height: `${pullDistance.value}px`,
|
|
opacity: Math.min(pullDistance.value / 48, 1),
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="history-page">
|
|
<div
|
|
class="pull-indicator"
|
|
:style="pullIndicatorStyle()"
|
|
>
|
|
<GoldSpinner v-if="spinning" :size="28" :progress="progress" :active="spinning" />
|
|
</div>
|
|
|
|
<div v-if="initialLoading" class="state">
|
|
<GoldSpinner :size="36" />
|
|
<span class="loading-text">{{ t('bet.loading') }}</span>
|
|
</div>
|
|
|
|
<template v-else>
|
|
<BetStatsPanel class="stats-panel" :items="items" />
|
|
|
|
<div class="filter-tabs">
|
|
<button
|
|
v-for="f in FILTERS"
|
|
:key="f.key"
|
|
type="button"
|
|
class="filter-tab"
|
|
:class="{ active: statusFilter === f.key }"
|
|
@click="changeFilter(f.key)"
|
|
>
|
|
{{ t(f.label) }}
|
|
</button>
|
|
</div>
|
|
|
|
<template v-if="items.length">
|
|
<div class="bet-list">
|
|
<BetHistoryCard v-for="bet in items" :key="bet.betNo" :bet="bet" />
|
|
</div>
|
|
|
|
<div ref="sentinel" class="sentinel" />
|
|
|
|
<div v-if="loading" class="load-more-spinner">
|
|
<GoldSpinner :size="24" />
|
|
</div>
|
|
|
|
<div v-else-if="!hasMore && items.length > 0" class="end-hint">
|
|
{{ t('common.no_more') }}
|
|
</div>
|
|
</template>
|
|
|
|
<div v-else class="state">{{ t('history.empty') }}</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.history-page {
|
|
padding-bottom: 24px;
|
|
}
|
|
|
|
.stats-panel {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.bet-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-section);
|
|
}
|
|
|
|
.pull-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
transition: height 0.15s ease;
|
|
}
|
|
|
|
.filter-tabs {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: var(--space-section);
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.filter-tabs::-webkit-scrollbar { display: none; }
|
|
|
|
.filter-tab {
|
|
flex-shrink: 0;
|
|
padding: 8px 16px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
transition: background 0.2s, border-color 0.2s, color 0.2s;
|
|
}
|
|
|
|
.filter-tab.active {
|
|
color: var(--text);
|
|
background: var(--surface-accent);
|
|
border-color: var(--primary);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
padding: 56px 20px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.loading-text {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.sentinel {
|
|
height: 1px;
|
|
}
|
|
|
|
.load-more-spinner {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 20px 0 8px;
|
|
}
|
|
|
|
.end-hint {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
padding: 16px 0 4px;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
</style>
|