diff --git a/src/api/ModelEventdetails/index.js b/src/api/ModelEventdetails/index.js new file mode 100644 index 0000000..d9bff40 --- /dev/null +++ b/src/api/ModelEventdetails/index.js @@ -0,0 +1,61 @@ +import httpService from "@/request" +// 事件洞察详情 +export function getNegativeTopic(params) { + let obj = Object.assign({action: 'getNegativeTopic',sType: 'BbsSeries'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 热点事件传播导向 +export function getPropagationDirection0528(params) { + let obj = Object.assign({action: 'getPropagationDirection0528',sType: 'HotEvent0528'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 事件洞察列表 +export function getHotEventsList(params) { + let obj = Object.assign({action: 'getHotEventsList',sType: 'HotEvent'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 热点事件渠道分布 +export function getEventsSourceTypeByEventsType0528(params) { + let obj = Object.assign({action: 'getEventsSourceTypeByEventsType0528',sType: 'HotEvent0528'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 品牌数据-数据传播总量 +export function getBrandOverviewCount0528(params) { + let obj = Object.assign({action: 'getBrandOverviewCount0528', 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/EventDetails/eventCorrelation/index.vue b/src/views/EventDetails/eventCorrelation/index.vue index b64b4e6..2b39b86 100644 --- a/src/views/EventDetails/eventCorrelation/index.vue +++ b/src/views/EventDetails/eventCorrelation/index.vue @@ -54,7 +54,6 @@ export default { this.getDdta(); }, methods: { - getDdta() { let obj = Object.assign({}, this.getCtime2, this.form); this.load = true; diff --git a/src/views/ModelEventDetails/MEDDistributionOfHotEventChannels/index.vue b/src/views/ModelEventDetails/MEDDistributionOfHotEventChannels/index.vue index f0aa856..aa47f2e 100644 --- a/src/views/ModelEventDetails/MEDDistributionOfHotEventChannels/index.vue +++ b/src/views/ModelEventDetails/MEDDistributionOfHotEventChannels/index.vue @@ -15,7 +15,7 @@