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.

89 lines
2.1 KiB

<!--
* @Author: your name
* @Date: 2021-10-15 15:08:13
* @LastEditTime: 2021-10-15 15:18:32
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/BrandComparison/channelDistribution/index.vue
-->
<template>
<div class="cd-outter">
<v-label-div title="渠道分布"> </v-label-div>
<div class="cd-inner">
<v-echarts :opt="opt"></v-echarts>
</div>
</div>
</template>
<script>
// import { getSourcetypeC } from "@/api/BrandComparison/index.js";
// import createOpt from "./opt";
export default {
name: "channelDistribution",
data() {
return {
load: false,
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);
// this.load = true;
// getSourcetypeC(obj)
// .then((res) => {
// let data = res.data || [];
// let brandList = [];
// let dx = [];
// data.forEach((e) => {
// let ab = e.Data || {};
// for (let key in ab) {
// if (!dx.includes(key)) {
// dx.push(key);
// }
// }
// brandList.push(e.Name);
// });
// this.opt = createOpt(data, dx, brandList);
// this.load = false;
// resolve(data);
// })
// .catch(() => {
// reject(false);
// });
// });
// },
// },
};
</script>
<style lang="less" scoped>
.cd-outter {
width: 936px;
height: 460px;
border: 2px solid #0f2a4d;
.cd-inner {
width: 100%;
height: calc(100% - 48px);
}
}
</style>