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.

80 lines
1.9 KiB

<!--
* @Author: your name
* @Date: 2021-10-16 14:26:18
* @LastEditTime: 2021-10-16 14:42:07
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/BrandComparison/brandRearWingComparison/index.vue
-->
<template>
<div class="brw-outter" v-loading="load">
<v-label-div title="尾翼趋势对比" :showLine="false" :eStyle="{'border-style': 'none'}"/>
<div class="brw-inner">
<v-echarts :opt="opt"></v-echarts>
</div>
</div>
</template>
<script>
// import {getCountTime0528C} from "@/api/BrandComparison/BrandWeiyi.js"
// import createOpt from "./opt"
export default {
name: "brandRearWingComparison",
data() {
return {
opt: {},
load: false,
form: {
token: "",
sBrand: ""
}
}
},
// created() {
// this.initData();
// },
// methods: {
// initData() {
// this.form.token = this.getToken;
// let arr = this.getBComparison;
// let brands = [];
// arr.forEach((ele) => {
// brands.push(ele.name);
// });
// this.form.sBrand = brands.toString();
// this.getData();
// },
// getData() {
// let obj = Object.assign({}, this.getCtime2, this.form);
// this.load = true;
// getCountTime0528C(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);
// this.load = false;
// })
// },
// },
}
</script>
<style lang="less" scoped>
.brw-outter {
width: 944px;
height: 412px;
.brw-inner {
width: 100%;
height: calc(100% - 48px);
}
}
</style>