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.

44 lines
999 B

<!--
* @Author: your name
* @Date: 2021-10-12 18:43:22
* @LastEditTime: 2021-10-25 15:15:24
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/BrandInsight/keyMedia/index.vue
-->
<template>
<div class="km-outter">
<v-label-div title="重点媒体" :showLine="false" :eStyle="{'border-style': 'none'}"></v-label-div>
<div class="km-inner">
<v-echarts :opt="opt"></v-echarts>
</div>
<v-pagination :style="{position: 'absolute', left: '16px', bottom: '12px'}"></v-pagination>
</div>
</template>
<script>
import createOpt from "./opt";
export default {
name: "mlKeyMedia",
data() {
return {
opt: createOpt(),
};
},
};
</script>
<style lang="less" scoped>
.km-outter {
position: relative;
width: 630px;
height: 412px;
margin-left: 16px;
.km-inner {
width: 100%;
height: calc(100% - 48px);
}
}
</style>