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.

132 lines
4.1 KiB

<!--
* @Author: xw
* @Date: 2021-10-12 09:32:35
* @LastEditTime: 2021-10-27 13:38:10
* @LastEditors: Please set LastEditors
* @Description: 舆情传播趋势
* @FilePath: /data-show/src/views/BrandInsight/titsopo/index.vue
-->
<template>
<div class="tit-outter" v-loading="load">
<div class="tit-header">
<a-button type="primary" size="small" @click="goIDE"></a-button>
<a-button type="primary" style="margin-left: 16px;margin-right: 16px;" size="small">导出报告</a-button>
</div>
<div class="tit-inner">
<vLabel-div title="舆情传播趋势"></vLabel-div>
<div class="tit-bd">
<v-echarts :opt="opt" @getData="clickEchars"></v-echarts>
</div>
</div>
</div>
</template>
<script>
import {getSourcetypeTime} from "@/api/BrandInsight"
import moment from "moment";
import createOpt from "./opt"
export default {
name: "titsopo",
props: ["brand"],
data() {
return {
load: false,
form: {
token: "",
sBrand: '奥迪',
},
opt: {}
}
},
created() {
this.form.token = this.getToken;
this.form.sBrand = this.getBrand.brandname || this.brand;
this.getData()
},
methods: {
// 获取数据
getData() {
let obj = Object.assign({},this.getCommTime, this.form);
this.load = true;
getSourcetypeTime(obj).then(res => {
let data = res.data || [];
let dx = [];
let ds = [];
data.forEach(ele => {
let time = ele.Time;
let value = ele.Data;
dx.push(time);
ds.push(value);
})
this.opt = createOpt(dx, ds);
this.load = false;
})
},
// 前往数据表格
goIDE() {
this.$router.push({path: '/industryDataExport',query: {token: this.getToken, action: 'getList', sType: 'BrandData', brand: this.form.sBrand }})
},
//
clickEchars(data = []) {
let qudao = [];
let startTime = "";
let endTime = "";
data.forEach(ele => {
let seriesName = ele.seriesName;
endTime = ele.name;
qudao.push(seriesName);
})
if (this.getCommTime.sTimeType == 34) {
// let endTime = moment(time).add(24, "hours").format("YYYY-MM-DD HH:mm:ss");
startTime = moment(endTime)
.subtract(24, "hours")
.format("YYYY-MM-DD HH:mm:ss");
} else if (this.getCommTime.sTimeType == 23) {
startTime = moment(endTime)
.subtract(3, "days")
.format("YYYY-MM-DD HH:mm:ss");
} else if (this.getCommTime.sTimeType == 3) {
startTime = moment(endTime)
.subtract(7, "days")
.format("YYYY-MM-DD HH:mm:ss");
} else {
startTime = moment(endTime)
.subtract(30, "days")
.format("YYYY-MM-DD HH:mm:ss");
}
let sTimeType = 4;
this.$router.push({
path: "/industryDataExport",
query: { startTime, endTime, qudao, sTimeType, token: this.getToken, action: 'getList', sType: 'BrandData', brand: this.form.sBrand },
});
}
}
}
</script>
<style lang="less" scoped>
.tit-outter {
width: 618px;
height: 560px;
margin-left: 16px;
.tit-header {
width: 100%;
height: 48px;
background: linear-gradient(270deg, #07192f 0%, #010B19 100%);
display: flex;
justify-content: flex-end;
align-items: center;
}
.tit-inner {
width: 100%;
height: 490px;
margin-top: 16px;
border: 2px solid #0F2A4D;
.tit-bd {
width: 100%;
height: calc(100% - 48px);
}
}
}
</style>