diff --git a/src/api/EventComparison/index.js b/src/api/EventComparison/index.js new file mode 100644 index 0000000..097e453 --- /dev/null +++ b/src/api/EventComparison/index.js @@ -0,0 +1,86 @@ +/* + * @Author: your name + * @Date: 2021-11-15 11:45:31 + * @LastEditTime: 2021-11-15 19:22:04 + * @LastEditors: Please set LastEditors + * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE + * @FilePath: /data-show/src/api/EventComparison/index.js + */ +import httpService from "@/request" + +// 获取事件类型 +export function getEventList(params) { + let obj = Object.assign({action: 'getEventList', sType: 'HotLibraryC'}, 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: 'EventContrast', iContrastType: 3 }, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 事件-调性对比 +export function getAffectionsC(params) { + let obj = Object.assign({action: 'getAffectionsC', sType: 'EventContrast', iContrastType: 3 }, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 事件-关联作者概况 +export function getUserOverview0528C(params) { + let obj = Object.assign({action: 'getUserOverview0528C', sType: 'EventContrast', iContrastType: 3 }, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 事件-事件传播top媒体对比 +export function getSourceTopCount0528C(params) { + let obj = Object.assign({action: 'getSourceTopCount0528C', sType: 'EventContrast', iContrastType: 3 }, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 事件-事件传播历程对比 +export function getListC(params) { + let obj = Object.assign({action: 'getListC', sType: 'EventContrast', iContrastType: 3 }, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + diff --git a/src/api/comm/index.js b/src/api/comm/index.js index 075a1ba..4f02f69 100644 --- a/src/api/comm/index.js +++ b/src/api/comm/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-20 16:36:08 - * @LastEditTime: 2021-11-05 15:53:08 + * @LastEditTime: 2021-11-15 15:29:21 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/comm/index.js @@ -131,3 +131,15 @@ export function getRecommendSeries(params) { } }) } +// 获取事件类型 +export function getEventType(params) { + let obj = Object.assign({action: 'getEventType'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} diff --git a/src/components/v-table/index.vue b/src/components/v-table/index.vue index 501c5ee..4241ebb 100644 --- a/src/components/v-table/index.vue +++ b/src/components/v-table/index.vue @@ -1,7 +1,7 @@