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
2.0 KiB
80 lines
2.0 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-15 11:58:33
|
|
* @LastEditTime: 2021-10-15 15:20:41
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandComparison/overallInformation/index.vue
|
|
-->
|
|
<template>
|
|
<div class="oi-outter">
|
|
<v-label-div title="整体信息量" ></v-label-div>
|
|
<div class="oi-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {getContrastCount0528C} from "@/api/BrandComparison"
|
|
import {createSingleColumnar} from "@/utils/gol/singleColumnar"
|
|
export default {
|
|
name: "overallInformation",
|
|
data() {
|
|
return {
|
|
form: {
|
|
token: "",
|
|
sBrand: ""
|
|
},
|
|
opt: {}
|
|
}
|
|
},
|
|
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() {
|
|
return new Promise((resolve, reject) => {
|
|
let obj = Object.assign({}, this.getCtime2, this.form);
|
|
getContrastCount0528C(obj).then((res) => {
|
|
let data = res.data || [];
|
|
let brandsList = [];
|
|
let infoList = [];
|
|
data.forEach(e => {
|
|
brandsList.push(e.key);
|
|
infoList.push(e.value);
|
|
})
|
|
this.opt = createSingleColumnar(brandsList, infoList);
|
|
resolve(data)
|
|
}).catch(() => {
|
|
reject(false)
|
|
});
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.oi-outter {
|
|
width: 618px;
|
|
height: 460px;
|
|
border: 2px solid #0f2a4d;
|
|
margin-left: 16px;
|
|
.oi-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style>
|