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.
40 lines
1.0 KiB
40 lines
1.0 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-16 10:01:52
|
|
* @LastEditTime: 2021-10-16 10:20:07
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandComparison/comparisonOfWeiboInformation/index.vue
|
|
-->
|
|
<template>
|
|
<div class="cowi-outter">
|
|
<v-label-div title="微博信息量对比" :showLine="false" :eStyle="{'border-style': 'none'}"></v-label-div>
|
|
<div class="cowi-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {createSingleColumnar} from "@/utils/gol/singleColumnar"
|
|
export default {
|
|
name: "comparisonOfWeiboInformation",
|
|
data() {
|
|
return {
|
|
opt: createSingleColumnar(['奥迪', '宝马', '奔驰', '吉利', '大众', '别克'], ['2100','1800','1700','1600','1500','1400'])
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.cowi-outter {
|
|
width: 628px;
|
|
height: 412px;
|
|
.cowi-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style>
|