deploy: auto commit repo-root changes 2026-07-13 22:38:58
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user