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.
72 lines
1.8 KiB
72 lines
1.8 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-13 14:14:49
|
|
* @LastEditTime: 2021-11-08 18:17:36
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/EventDetails/distributionOfHotEventChannels/index.vue
|
|
-->
|
|
<template>
|
|
<div class="doe-outter">
|
|
<div class="doe-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {getEventsSourceTypeByEventsType0528} from '@/api/ModelEventdetails'
|
|
import createOpt from "./opt";
|
|
export default {
|
|
name: "MEDDistributionOfHotEventChannels",
|
|
data() {
|
|
return {
|
|
opt: {},
|
|
form: {
|
|
sSeriesName: "",
|
|
sBrand: "",
|
|
token: ""
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
this.form.token = this.getToken;
|
|
this.form.sSeriesName = this.getModel.name;
|
|
this.form.sBrand = this.getBrand.brandname || '奥迪';
|
|
this.getDdta();
|
|
},
|
|
methods:{
|
|
// 获取后台数据
|
|
getDdta(){
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
getEventsSourceTypeByEventsType0528(obj).then(res => {
|
|
let data = res.data || [];
|
|
let dx = [];
|
|
let ds = [];
|
|
data.forEach(ele => {
|
|
let key = ele.key;
|
|
let value = ele.value;
|
|
dx.push(key);
|
|
ds.push(value);
|
|
})
|
|
this.opt = createOpt(dx, ds);
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.doe-outter {
|
|
width: 100%;
|
|
height: 344px;
|
|
margin-left: 16px;
|
|
.doe-inner {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|