|
|
|
@ -1,14 +1,14 @@
|
|
|
|
|
<!--
|
|
|
|
|
* @Author: your name
|
|
|
|
|
* @Date: 2021-10-18 09:34:53
|
|
|
|
|
* @LastEditTime: 2021-11-02 17:44:03
|
|
|
|
|
* @LastEditTime: 2021-11-02 18:23:06
|
|
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
|
|
* @Description: In User Settings Edit
|
|
|
|
|
* @FilePath: /data-show/src/views/EventInsight/IndustryTOPHE/index.vue
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="itp-outter">
|
|
|
|
|
<div class="itp-outter" v-loading="load">
|
|
|
|
|
<v-label-div title="行业TOP热点事件">
|
|
|
|
|
</v-label-div>
|
|
|
|
|
<div class="itp-inner">
|
|
|
|
@ -24,43 +24,12 @@ export default {
|
|
|
|
|
name: "industryTOPHE",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
load: false,
|
|
|
|
|
form: {
|
|
|
|
|
token: ""
|
|
|
|
|
},
|
|
|
|
|
config: {},
|
|
|
|
|
columns: [
|
|
|
|
|
{
|
|
|
|
|
title: "事件标题",
|
|
|
|
|
dataIndex: "a",
|
|
|
|
|
key: "a",
|
|
|
|
|
width: "55%",
|
|
|
|
|
scopedSlots: { customRender: 'a' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "影响力",
|
|
|
|
|
dataIndex: "b",
|
|
|
|
|
key: "b",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "类型",
|
|
|
|
|
dataIndex: "c",
|
|
|
|
|
key: "c",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "关联品牌",
|
|
|
|
|
dataIndex: "d",
|
|
|
|
|
key: "d",
|
|
|
|
|
width: 180
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
tbData: [
|
|
|
|
|
{
|
|
|
|
|
a: "为了研究长城吉利谁更强,我们砸了台吉利",
|
|
|
|
|
b: '20.2',
|
|
|
|
|
c: '2021-08-18 12:00:00',
|
|
|
|
|
d: '奥迪'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
@ -72,6 +41,7 @@ export default {
|
|
|
|
|
this.$router.push({path: '/eventDEC'})
|
|
|
|
|
},
|
|
|
|
|
getData() {
|
|
|
|
|
this.load = true;
|
|
|
|
|
let obj = Object.assign({}, this.getCommTime, this.form);
|
|
|
|
|
getHotEventsList(obj).then(res => {
|
|
|
|
|
let data = res.data || [];
|
|
|
|
@ -89,6 +59,7 @@ export default {
|
|
|
|
|
header: ["事件标题", "影响力","类型","关联品牌"],
|
|
|
|
|
data: arr,
|
|
|
|
|
};
|
|
|
|
|
this.load = false;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handlerSs() {
|
|
|
|
|