|
|
|
@ -70,18 +70,16 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getDataList() {
|
|
|
|
|
wordCloud().then((res) => {
|
|
|
|
|
res.data.forEach((value) => {
|
|
|
|
|
this.data.push({
|
|
|
|
|
name: this.$filterDict("tc_cy_type", value.type),
|
|
|
|
|
count: 888,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.init();
|
|
|
|
|
this.animate();
|
|
|
|
|
this.$store.getters.dictObject["tc_cy_type"].forEach((value) => {
|
|
|
|
|
this.data.push({
|
|
|
|
|
name: value.dictLabel,
|
|
|
|
|
count: 888,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.init();
|
|
|
|
|
this.animate();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
init() {
|
|
|
|
|
const tags = document.querySelectorAll(".tag");
|
|
|
|
|