词云修复

lijinlong
许宏杰 2 years ago
parent 23cf99bcc4
commit 74919782a0

@ -51,24 +51,22 @@ export default {
return {
tagList: [],
data: [
{ name: "太仓市委", count: 200 },
{ name: "“交通先行”抢位长三角", count: 400 },
{ name: "太仓速度", count: 600 },
{ name: "最具幸福感城市", count: 2000 },
{ name: "振翅高飞", count: 350 },
{ name: "娄城防疫", count: 666 },
{ name: "城市更新", count: 899 },
{ name: "争当猛虎尖兵", count: 899 },
{ name: "家在太仓 情暖娄城", count: 899 },
{ name: "国土空间全域整治", count: 899 },
// { name: "", count: 200 },
// { name: "", count: 400 },
// { name: "", count: 600 },
// { name: "", count: 2000 },
// { name: "", count: 350 },
// { name: "", count: 666 },
// { name: "", count: 899 },
// { name: "", count: 899 },
// { name: " ", count: 899 },
// { name: "", count: 899 },
],
};
},
created() {
},
created() {},
mounted() {
this.init();
this.animate();
this.getDataList();
},
methods: {
getDataList() {
@ -76,9 +74,13 @@ export default {
res.data.forEach((value) => {
this.data.push({
name: this.$filterDict("tc_cy_type", value.type),
count: 3,
count: 888,
});
});
this.$nextTick(() => {
this.init();
this.animate();
});
});
},
init() {

Loading…
Cancel
Save