From 904b9e9be6da0ddd45526657a9b5dcc5165fa35f Mon Sep 17 00:00:00 2001 From: zx <604444282@qq.com> Date: Mon, 8 Nov 2021 17:28:55 +0800 Subject: [PATCH] =?UTF-8?q?zx-=E5=93=81=E7=89=8C=E5=AF=B9=E6=AF=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/BrandComparison/index.js | 66 ++++++++ .../brandTonalDistribution/index.vue | 155 +++++++++++------- .../brandTonalDistribution/roundata/index.vue | 42 ++--- .../brandTonalDistribution/roundata/opt.js | 104 +++++------- .../channelDistribution/index.vue | 77 ++++++--- .../channelDistribution/opt.js | 98 +++++------ .../informationTrend/index.vue | 75 ++++++--- .../BrandComparison/informationTrend/opt.js | 128 +++++---------- .../overallInformation/index.vue | 40 ++++- .../overallNumberOfInteractions/index.vue | 44 ++++- 10 files changed, 496 insertions(+), 333 deletions(-) create mode 100644 src/api/BrandComparison/index.js diff --git a/src/api/BrandComparison/index.js b/src/api/BrandComparison/index.js new file mode 100644 index 0000000..4c5d601 --- /dev/null +++ b/src/api/BrandComparison/index.js @@ -0,0 +1,66 @@ +import httpService from "@/request" + +// 品牌对比-品牌调性比例 +export function getAffectionsC(params) { + let obj = Object.assign({action: 'getAffectionsC', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-信息量趋势 +export function getCountTime0528C(params) { + let obj = Object.assign({action: 'getCountTime0528C', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-整体信息量 +export function getContrastCount0528C(params) { + let obj = Object.assign({action: 'getContrastCount0528C', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-整体互动人数 +export function getInteractCount0528C(params) { + let obj = Object.assign({action: 'getInteractCount0528C', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-渠道分布 +export function getSourcetypeC(params) { + let obj = Object.assign({action: 'getSourcetypeC', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} \ No newline at end of file diff --git a/src/views/BrandComparison/brandTonalDistribution/index.vue b/src/views/BrandComparison/brandTonalDistribution/index.vue index 8878dc9..2f02495 100644 --- a/src/views/BrandComparison/brandTonalDistribution/index.vue +++ b/src/views/BrandComparison/brandTonalDistribution/index.vue @@ -7,75 +7,120 @@ * @FilePath: /data-show/src/views/BrandComparison/brandTonalDistribution/index.vue --> diff --git a/src/views/BrandComparison/brandTonalDistribution/roundata/index.vue b/src/views/BrandComparison/brandTonalDistribution/roundata/index.vue index 8797c66..3151935 100644 --- a/src/views/BrandComparison/brandTonalDistribution/roundata/index.vue +++ b/src/views/BrandComparison/brandTonalDistribution/roundata/index.vue @@ -9,7 +9,7 @@