diff --git a/src/api/ModelInsight/index.js b/src/api/ModelInsight/index.js index 259f94b..7273f66 100644 --- a/src/api/ModelInsight/index.js +++ b/src/api/ModelInsight/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-28 16:40:48 - * @LastEditTime: 2021-10-28 19:09:07 + * @LastEditTime: 2021-11-01 14:15:10 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/ModelInsight/index.js @@ -21,3 +21,29 @@ export function getBrandOverviewCount0528(params) { } }) } + +// 车型数据-舆情调性 +export function getAffections(params) { + let obj = Object.assign({action: 'getAffections', sType: 'BrandOverview'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 车型数据-舆情传播趋势 +export function getSourcetypeTime(params) { + let obj = Object.assign({action: 'getSourcetypeTime', sType: 'BrandOverview'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} diff --git a/src/views/BrandInsight/brandData/index.vue b/src/views/BrandInsight/brandData/index.vue index 2f77e06..a8c0449 100644 --- a/src/views/BrandInsight/brandData/index.vue +++ b/src/views/BrandInsight/brandData/index.vue @@ -1,7 +1,7 @@