slf-tc/src/utils/tc.js
2025-09-16 10:51:13 +08:00

8 lines
286 B
JavaScript

export function jumpLink(mid, matchType) {
/** matchType 1足球 2篮球 */
const url = matchType === 1 ?
`https://www.sporttery.cn/jc/zqdz/index.html?showType=3&mid=${mid}` :
`https://www.sporttery.cn/jc/lqdz/index.html?showType=3&mid=${mid}`
window.open(url)
}