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

<!--
* @Author: your name
* @Date: 2021-10-13 17:42:57
* @LastEditTime: 2021-11-08 17:28:00
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/TailInsightDetails/theOverallToneOfTheTail/index.vue
-->
<template>
<div class="tot-outter" v-loading="load">
<v-label-div title="尾翼整体调性"></v-label-div>
<div class="tot-inner">
<v-echarts :opt="opt"></v-echarts>
</div>
</div>
</template>
<script>
import {getAffections} from '@/api/TailInsightdetails'
import createOpt from "./opt"
export default {
name: "theOverallToneOfTheTail",
data() {
return {
load: false,
opt: {},
form: {
sBrand: "",
token: "",
},
}
},
created() {
this.form.token = this.getToken;
this.form.sBrand = this.getBrand.brandname || '奥迪';
this.getDdta();
},
methods: {
getDdta(){
let obj = Object.assign({}, this.getCtime2, this.form);
this.load = true;
getAffections(obj).then(res => {
let data = res.data || {};
let arr = [];
for(let key in data) {
let obj = {
key: key,
value: data[key]
}
arr.push(obj)
}
this.opt = createOpt(arr);
this.load = false;
})
},
}
}
</script>
<style lang="less" scoped>
.tot-outter {
width: 460px;
height: 460px;
border: 2px solid #0f2a4d;
margin-left: 16px;
.tot-inner {
width: 100%;
height: calc(100% - 48px);
}
}
</style>