import httpService from "@/request" // 首页-中国汽车销量趋势图 export function getCheZhuCountTime(params) { let obj = Object.assign({action: 'getCheZhuCountTime', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 首页-汽车品牌销量排行榜 export function getCheZhuBrandCount(params) { let obj = Object.assign({action: 'getCheZhuBrandCount', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 首页-各级别车型销量 export function getCheZhuSpecCount(params) { let obj = Object.assign({action: 'getCheZhuSpecCount', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 首页-车型销量排行榜 export function getCheZhuCarSeriesCount(params) { let obj = Object.assign({action: 'getCheZhuCarSeriesCount', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 历史-历史销量 export function getCheZhuCarSalesCompared(params) { let obj = Object.assign({action: 'getCheZhuCarSalesCompared', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按级别-汽车级别销售排行榜 export function getCheZhuCarSpecidRankingAll(params) { let obj = Object.assign({action: 'getCheZhuCarSpecidRankingAll', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按级别-汽车级别销售排行榜-图表 export function getCheZhuCarSpecidChart(params) { let obj = Object.assign({action: 'getCheZhuCarSpecidChart', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按级别-汽车级别销售排行榜-各级别/更多 export function getCheZhuCarCategory(params) { let obj = Object.assign({action: 'getCheZhuCarCategory', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按价格-汽车价格销售排行榜 export function getCheZhuCarPriceRankingAll(params) { let obj = Object.assign({action: 'getCheZhuCarPriceRankingAll', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按价格-汽车价格销售排行榜-图表 export function getCheZhuCarPriceChart(params) { let obj = Object.assign({action: 'getCheZhuCarPriceChart', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按能源-各汽车能源类型销售排行榜 export function getCheZhuCarEnergyRankingAll(params) { let obj = Object.assign({action: 'getCheZhuCarEnergyRankingAll', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 按能源-各汽车能源类型销售排行榜-图表 export function getCheZhuCarEnergyChart(params) { let obj = Object.assign({action: 'getCheZhuCarEnergyChart', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 汽车品牌销量-汽车品牌销量排行榜列表 export function getCheZhuCarBrandRanking(params) { let obj = Object.assign({action: 'getCheZhuCarBrandRanking', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 车型销量-车型销量排行榜列表 export function getCheZhuCarSeriesRanking(params) { let obj = Object.assign({action: 'getCheZhuCarSeriesRanking', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) } // 车型销量-车型销量排行榜列表-点击销量 export function getCheZhuCarSeriesList(params) { let obj = Object.assign({action: 'getCheZhuCarSeriesList', sType: 'Marketing'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, headers: { 'content-type': 'application/x-www-form-urlencoded' } }) }