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.

46 lines
967 B

<!--
* @Author: your name
* @Date: 2021-10-12 15:24:48
* @LastEditTime: 2021-11-01 10:00:09
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/BrandInsight/weiboVolumeTrend/index.vue
-->
<template>
<div class="wvt-outter">
<v-label-div title="微博声量趋势" :showLine="false" :eStyle="{ 'border-style': 'none' }">
</v-label-div>
<div class="wvt-inner">
<v-echarts></v-echarts>
</div>
</div>
</template>
<script>
export default {
name: "weibo-volume-trend",
props: ["brand"],
data() {
return {
form: {
sBrand: "",
token: "",
},
opt: {}
}
},
}
</script>
<style lang="less" scoped>
.wvt-outter {
width: 630px;
height: 412px;
margin-left: 16px;
.wvt-inner {
width: 100%;
height: calc(100% - 48px);
}
}
</style>