80 lines
1.2 KiB
JavaScript
80 lines
1.2 KiB
JavaScript
/**
|
|
* 游戏分类数据
|
|
*/
|
|
export const gameCategories = [
|
|
{
|
|
id: 1,
|
|
name: '王者荣耀',
|
|
icon: '🎮',
|
|
color: '#ff6b6b',
|
|
hot: true,
|
|
serviceCount: 156
|
|
},
|
|
{
|
|
id: 2,
|
|
name: '英雄联盟',
|
|
icon: '⚔️',
|
|
color: '#4ecdc4',
|
|
hot: true,
|
|
serviceCount: 98
|
|
},
|
|
{
|
|
id: 3,
|
|
name: 'VALORANT',
|
|
icon: '🔫',
|
|
color: '#a8dadc',
|
|
hot: false,
|
|
serviceCount: 45
|
|
},
|
|
{
|
|
id: 4,
|
|
name: 'CSGO',
|
|
icon: '🎯',
|
|
color: '#f4a261',
|
|
hot: true,
|
|
serviceCount: 67
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'DOTA2',
|
|
icon: '🛡️',
|
|
color: '#e76f51',
|
|
hot: false,
|
|
serviceCount: 34
|
|
},
|
|
{
|
|
id: 6,
|
|
name: '原神',
|
|
icon: '✨',
|
|
color: '#2a9d8f',
|
|
hot: true,
|
|
serviceCount: 89
|
|
},
|
|
{
|
|
id: 7,
|
|
name: '和平精英',
|
|
icon: '🔥',
|
|
color: '#e63946',
|
|
hot: false,
|
|
serviceCount: 112
|
|
},
|
|
{
|
|
id: 8,
|
|
name: '永劫无间',
|
|
icon: '⚡',
|
|
color: '#457b9d',
|
|
hot: false,
|
|
serviceCount: 23
|
|
}
|
|
]
|
|
|
|
/**
|
|
* 服务类型
|
|
*/
|
|
export const serviceTypes = [
|
|
{ id: 1, name: '上分代练', icon: '📈' },
|
|
{ id: 2, name: '娱乐陪玩', icon: '🎵' },
|
|
{ id: 3, name: '技术教学', icon: '📚' },
|
|
{ id: 4, name: '账号租赁', icon: '🎭' }
|
|
]
|