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
877 B
40 lines
877 B
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-16 14:26:18
|
|
* @LastEditTime: 2021-10-16 14:42:07
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandComparison/brandRearWingComparison/index.vue
|
|
-->
|
|
<template>
|
|
<div class="brw-outter">
|
|
<v-label-div title="尾翼趋势对比" :showLine="false" :eStyle="{'border-style': 'none'}"/>
|
|
<div class="brw-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import createOpt from "./opt"
|
|
export default {
|
|
name: "brandRearWingComparison",
|
|
data() {
|
|
return {
|
|
opt: createOpt()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.brw-outter {
|
|
width: 944px;
|
|
height: 412px;
|
|
.brw-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style>
|