From f491ef82bc89e8f063dd18374d286c8390eee477 Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Mon, 1 Nov 2021 17:28:41 +0800 Subject: [PATCH] cxw-010203 --- src/api/ModelInsight/index.js | 41 +++- src/views/ModelInsight/index.vue | 14 +- src/views/ModelInsight/mlKeyMedia/index.vue | 57 ++++- src/views/ModelInsight/mlKeyMedia/opt.js | 19 +- .../ModelInsight/mlPopularwordCloud/index.vue | 35 ++- .../ModelInsight/mlPopularwordCloud/opt.js | 215 ------------------ .../mlRearWingPropagationSituation/index.vue | 41 +++- .../mlRearWingPropagationSituation/opt.js | 26 ++- 8 files changed, 197 insertions(+), 251 deletions(-) delete mode 100644 src/views/ModelInsight/mlPopularwordCloud/opt.js diff --git a/src/api/ModelInsight/index.js b/src/api/ModelInsight/index.js index ef833cc..afcf191 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-11-01 16:39:32 + * @LastEditTime: 2021-11-01 17:21:51 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/ModelInsight/index.js @@ -145,4 +145,41 @@ export function getClicksDistribution(params) { 'content-type': 'application/x-www-form-urlencoded' } }) -} \ No newline at end of file +} +// 车型尾翼洞察-传播趋势 +export function getWeiYiVolumeTime(params) { + let obj = Object.assign({action: 'getWeiYiVolumeTime', sType: 'BrandWeiYi'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 车型重点媒体 +export function getWebsite(params) { + let obj = Object.assign({action: 'getWebsite', sType: 'BrandWeiYi'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 车型尾翼 热门词云 +export function getHotWord(params) { + let obj = Object.assign({action: 'getHotWord', sType: 'BrandWeiYi'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} diff --git a/src/views/ModelInsight/index.vue b/src/views/ModelInsight/index.vue index ebe6326..0eeeb1c 100644 --- a/src/views/ModelInsight/index.vue +++ b/src/views/ModelInsight/index.vue @@ -1,7 +1,7 @@