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
979 B
40 lines
979 B
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-12 18:18:20
|
|
* @LastEditTime: 2021-10-25 15:09:50
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandInsight/spreadTOPmodels/index.vue
|
|
-->
|
|
<template>
|
|
<div class="stm-outter">
|
|
<v-label-div title="传播TOP车型" :showLine="false" :eStyle="{'border-style': 'none'}"></v-label-div>
|
|
<div class="stm-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import createOpt from "./opt"
|
|
export default {
|
|
name: "mlSpreadTOPmodels",
|
|
data() {
|
|
return {
|
|
opt: createOpt(["奥迪A8", "奥迪A6", "奥迪Q3", "奥迪Q4", "奥迪Q5"],[2200, 1900, 1800, 1600, 1400])
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.stm-outter {
|
|
width: 628px;
|
|
height: 412px;
|
|
margin-left: 16px;
|
|
.stm-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style>
|