mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
38 lines
795 B
TypeScript
38 lines
795 B
TypeScript
interface StockRes {
|
|
data: {
|
|
items:
|
|
{
|
|
code: string
|
|
name: string
|
|
percent: number
|
|
exchange: string
|
|
// 1
|
|
ad: number
|
|
}[]
|
|
|
|
}
|
|
}
|
|
|
|
const hotstock = defineSource(async () => {
|
|
const url = "https://stock.xueqiu.com/v5/stock/hot_stock/list.json?size=30&_type=10&type=10"
|
|
const cookie = (await $fetch.raw("https://xueqiu.com/hq")).headers.getSetCookie()
|
|
const res: StockRes = await myFetch(url, {
|
|
headers: {
|
|
cookie: cookie.join("; "),
|
|
},
|
|
})
|
|
return res.data.items.filter(k => !k.ad).map(k => ({
|
|
id: k.code,
|
|
url: `https://xueqiu.com/s/${k.code}`,
|
|
title: k.name,
|
|
extra: {
|
|
info: `${k.percent}% ${k.exchange}`,
|
|
},
|
|
}))
|
|
})
|
|
|
|
export default defineSource({
|
|
"xueqiu": hotstock,
|
|
"xueqiu-hotstock": hotstock,
|
|
})
|