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.
43 lines
903 B
43 lines
903 B
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-15 15:34:26
|
|
* @LastEditTime: 2021-10-15 15:43:55
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandComparison/keyMediaCommunicationComparison/index.vue
|
|
-->
|
|
<template>
|
|
<div class="kmcc-outter">
|
|
<v-label-div title="重点媒体传播对比">
|
|
</v-label-div>
|
|
<div class="kmcc-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import createOpt from "./opt"
|
|
export default {
|
|
name: "kmcc-outter",
|
|
data() {
|
|
return {
|
|
opt: createOpt()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.kmcc-outter {
|
|
width: 936px;
|
|
height: 460px;
|
|
border: 2px solid #0f2a4d;
|
|
margin-left: 16px;
|
|
.kmcc-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style>
|