You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.1 KiB
113 lines
3.1 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-13 11:54:38
|
|
* @LastEditTime: 2021-11-08 17:52:40
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/EventDetails/hotOther/index.vue
|
|
-->
|
|
<template>
|
|
<div class="ho-outter">
|
|
<v-label-div title="热点事件传播导向" />
|
|
<div class="ho-bd">
|
|
<dv-scroll-board :config="config" :style="{ width: '100%', height: '27rem' }" />
|
|
</div>
|
|
<div class="ho-footer">
|
|
<span class="ho-f-s1">共 <span style="color: #2c66b5;">{{total}}</span> 条</span>
|
|
<a-pagination v-model="form.iPageIndex" :total="total" show-less-items @change="handlerPagnation"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { getHotEventsList } from "@/api/EventDetails";
|
|
export default {
|
|
name: "MEDHotOther",
|
|
data() {
|
|
return {
|
|
currentPage: 1,
|
|
form: {
|
|
token: "",
|
|
ssBrand: "",
|
|
iPageIndex: 1,
|
|
iPageSize: 20,
|
|
},
|
|
total: 0,
|
|
config: {
|
|
},
|
|
};
|
|
},
|
|
created() {
|
|
this.form.token = this.getToken;
|
|
this.form.sBrand = this.getBrand.brandname || "奥迪";
|
|
this.getDdta();
|
|
},
|
|
methods: {
|
|
// 获取后台数据
|
|
getDdta() {
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
getHotEventsList(obj).then((res) => {
|
|
let data = res.data || [];
|
|
let totalNum = res.totalNum || 0;
|
|
this.total = totalNum;
|
|
let arr = [];
|
|
data.forEach((ele) => {
|
|
let a = [
|
|
ele.events_title,
|
|
ele.events_influence,
|
|
ele.maxSourcetime,
|
|
ele.events_brand,
|
|
];
|
|
arr.push(a);
|
|
});
|
|
this.config = {
|
|
headerBGC: "#0c203b",
|
|
oddRowBGC: "#173b6d",
|
|
evenRowBGC: "rgba(69, 149, 244, 0)",
|
|
rowNum: 10,
|
|
columnWidth: [170,60,160],
|
|
header: ["事件列表", "影响力", "时间", "关联品牌"],
|
|
data: arr,
|
|
};
|
|
});
|
|
},
|
|
// 分页处理
|
|
handlerPagnation(page) {
|
|
this.form.iPageIndex = page;
|
|
this.getDdta()
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.ho-outter {
|
|
position: relative;
|
|
width: 620px;
|
|
height: 560px;
|
|
border: 2px solid #0f2a4d;
|
|
margin-left: 16px;
|
|
.ho-bd {
|
|
margin-top: 16px;
|
|
padding: 0px 16px;
|
|
width: 100%;
|
|
height: calc(100% - 120px);
|
|
}
|
|
.ho-footer {
|
|
position: absolute;
|
|
padding: 0px 16px;
|
|
width: 100%;
|
|
height: 34px;
|
|
left: 0px;
|
|
bottom: 14px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.ho-f-s1 {
|
|
color: #fff;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|