From cb896e5a07c02178133c676d699e4a0a37109b04 Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Mon, 1 Nov 2021 14:55:23 +0800 Subject: [PATCH] cxw-010203 --- src/api/ModelInsight/index.js | 28 +++- src/views/BrandInsight/brandData/index.vue | 7 +- src/views/BrandInsight/titsopo/index.vue | 24 +--- src/views/ModelInsight/index.vue | 4 +- .../ModelInsight/ml-brand-data/index.vue | 54 ++++++-- src/views/ModelInsight/ml-tts/index.vue | 88 +++++++++++-- src/views/ModelInsight/ml-tts/opt.js | 123 ++++++++---------- 7 files changed, 212 insertions(+), 116 deletions(-) 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 @@