deploy: auto commit repo-root changes 2026-07-13 22:38:58

This commit is contained in:
hajimi
2026-07-13 22:38:58 +08:00
parent af8941e880
commit 33687e31b7
6 changed files with 86 additions and 50 deletions
@@ -266,7 +266,7 @@ const oddsShowTypeOptions: { key: OddsShowType; label: string }[] = [
const defaultOddsPlatformOptions: OddsPlatformOption[] = [
{ key: '', label: '全部平台' },
{ key: 'hg', label: '滚球' },
{ key: 'hg', label: '皇冠' },
{ key: 'titan007', label: '球探' },
]
@@ -463,9 +463,10 @@ const fetchOdds = async (force = false) => {
)
platformOptions.forEach((item: any) => {
if (item?.key) {
platformMap.set(String(item.key), {
key: String(item.key),
label: String(item.label || item.key).trim(),
const key = String(item.key)
platformMap.set(key, {
key,
label: key === 'hg' ? '皇冠' : String(item.label || item.key).trim(),
})
}
})
@@ -694,11 +695,12 @@ onMounted(() => {
.content-tabs {
padding: 0 24rpx 14rpx;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
display: flex;
gap: 12rpx;
&__item {
flex: 1;
min-width: 0;
height: 58rpx;
border-radius: 16rpx;
background: #f1f5ff;