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.

63 lines
1.5 KiB

<!--
* @Author: your name
* @Date: 2021-10-12 19:16:46
* @LastEditTime: 2021-11-01 09:59:02
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/BrandInsight/popularwordCloud/index.vue
-->
<template>
<div class="pwc-outter" v-loading="load">
<v-label-div title="热门词云" :showLine="false" :eStyle="{'border-style': 'none'}"></v-label-div>
<div class="pwd-inner">
<v-echarts :opt="opt"></v-echarts>
</div>
</div>
</template>
<script>
import { getHotWord } from "@/api/BrandInsight";
import createWordCloud from "@/utils/gol/bubbleWord";
export default {
name: "popularwordCloud",
props: ["brand"],
data() {
return {
load: false,
form: {
token: "",
sBrand: "奥迪",
},
opt: {},
};
},
created() {
this.form.token = this.getToken;
this.form.sBrand = this.getBrand.brandname || this.brand;
this.getData();
},
methods: {
getData() {
let obj = Object.assign({}, this.getCtime2, this.form);
this.load = true;
getHotWord(obj).then((res) => {
let data = res.data;
this.opt = createWordCloud(data);
this.load = false;
});
},
},
};
</script>
<style lang="less" scoped>
.pwc-outter {
width: 628px;
height: 412px;
.pwd-inner {
width: 100%;
height: calc(100% - 48px);
}
}
</style>