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
876 B
40 lines
876 B
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-13 16:45:48
|
|
* @LastEditTime: 2021-11-08 13:34:59
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/TailInsightDetails/rearWingPropagationSituation/index.vue
|
|
-->
|
|
<template>
|
|
<div class="rwps-outter">
|
|
<v-label-div title="尾翼传播态势"></v-label-div>
|
|
<div class="rwps-inner">
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import createOpt from "./opt"
|
|
export default {
|
|
name: "MTDrearWingPropagationSituation",
|
|
data() {
|
|
return {
|
|
opt: createOpt()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.rwps-outter {
|
|
width: 460px;
|
|
height: 460px;
|
|
border: 2px solid #0F2A4D;
|
|
.rwps-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style> |