Signed-off-by: TIANHE <TIANHE@GMAIL.COM>
This commit is contained in:
TIANHE
2025-12-30 18:47:42 +08:00
parent 9d4ffb9931
commit d8e093bd60
4 changed files with 12 additions and 12 deletions
@@ -1452,12 +1452,12 @@ export default {
// 获取市场颜色
const getMarketColor = (market) => {
const colors = {
'AShare': 'blue',
'USStock': 'green',
'HShare': 'orange',
'Crypto': 'purple',
'Forex': 'gold',
'Futures': 'cyan'
'Futures': 'cyan',
'AShare': 'blue',
'HShare': 'orange'
}
return colors[market] || 'default'
}