feat(api): 新增热门标签时间段内topN列表接口
添加三个新接口用于获取不同维度(概念、行业、来源)的热门标签在特定时间段内的topN列表
This commit is contained in:
parent
f9bd02af3c
commit
2e68592cf1
|
|
@ -39,3 +39,18 @@ export const getTopConcept_d = (data: any) => {
|
||||||
export const getNews_cnt_d = (data: any) => {
|
export const getNews_cnt_d = (data: any) => {
|
||||||
return request.get("/news_cnt_d", data);
|
return request.get("/news_cnt_d", data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 热门标签某时间段内topN列表
|
||||||
|
export const getTopConceptPeriod = (data: any) => {
|
||||||
|
return request.get("/top_concept_period", data);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 热门标签某时间段内topN列表
|
||||||
|
export const getTopIndustryPeriod = (data: any) => {
|
||||||
|
return request.get("/top_industry_period", data);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 热门标签某时间段内topN列表
|
||||||
|
export const getTopSourcePeriod = (data: any) => {
|
||||||
|
return request.get("/top_source_period", data);
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue