You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-26 09:12:35
|
|
* @LastEditTime: 2021-10-26 09:18:40
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/api/MarketingAnalysis/index.js
|
|
*/
|
|
import httpService from "@/request"
|
|
// 品牌声量TOP20排行
|
|
export function getBrandSourceType0528(params) {
|
|
let obj = Object.assign({action: 'getBrandSourceType0528',sType: 'Marketing'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'get',
|
|
params: obj
|
|
})
|
|
}
|
|
// 重点活跃媒体TOP10排行
|
|
export function getWebsite(params) {
|
|
let obj = Object.assign({action: 'getWebsite',sType: 'Marketing'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'get',
|
|
params: obj
|
|
})
|
|
}
|
|
// 品牌销量榜TOP10排行
|
|
export function getCheZhuBrandMKTCount0528(params) {
|
|
let obj = Object.assign({action: 'getCheZhuBrandMKTCount0528',sType: 'Marketing'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'get',
|
|
params: obj
|
|
})
|
|
} |