合并之前缺少部分
This commit is contained in:
@ -29,7 +29,6 @@ export const fetchindustryTerms = (params: any) => {
|
||||
return Http.get('/v1/industry-terms/list', params);
|
||||
};
|
||||
|
||||
|
||||
// 导出一个函数fetchKeywordTrendsList,用于获取行业话题列表
|
||||
export const fetchKeywordTrendsList = (params: any) => {
|
||||
// 使用Http.get方法,发送GET请求,获取行业话题列表
|
||||
@ -47,21 +46,24 @@ export const fetchNewKeywordList = (params: any) => {
|
||||
return Http.get('/v1/industry-new-keywords/list', params);
|
||||
};
|
||||
|
||||
export const fetchNewKeywordDetail = (params: any) => {
|
||||
// 使用Http.get方法,发送GET请求,获取行业话题列表
|
||||
return Http.get('/v1/industry-new-keywords/' + params, {});
|
||||
};
|
||||
fetchIndustryTopicDetail;
|
||||
|
||||
// 导出一个函数fetchUserPainPointsList,用于获取用户痛点列表
|
||||
export const fetchUserPainPointsList = (params: any) => {
|
||||
// 使用Http.get方法,发送GET请求,获取行业话题列表
|
||||
return Http.get('/v1/user-pain-points/list', params);
|
||||
};
|
||||
|
||||
|
||||
// 导出一个函数fetchUserPainPointsDetail,用于获取用户痛点详情
|
||||
export const fetchUserPainPointsDetail = (params: any) => {
|
||||
// 使用Http.get方法,发送GET请求,获取行业话题列表
|
||||
return Http.get('/v1/user-pain-points/' + params, {});
|
||||
};
|
||||
|
||||
|
||||
|
||||
// 导出一个函数fetchFocusBrandsList,用于获取行业话题列表
|
||||
export const fetchFocusBrandsList = (params: any) => {
|
||||
// 使用Http.get方法,发送GET请求,获取行业话题列表
|
||||
|
||||
Reference in New Issue
Block a user