This commit is contained in:
commit
f7ed5595c0
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div ref="chart" style="width: 100%; height: 25vh"></div>
|
||||
<div ref="chart" style="width: 100%; height: calc(100% - 36px);"></div>
|
||||
</template>
|
||||
|
||||
<script setup >
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||
<div ref="chart" style="width: 100%; height: calc(100% - 36px);"></div>
|
||||
</template>
|
||||
|
||||
<script setup >
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div ref="chart" style="width:100%;height:200px;"></div>
|
||||
<div ref="chart" style="width:100%;height:calc(100% - 200px);"></div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
@ -238,7 +238,7 @@ function getPie3D(pieData, internalDiameterRatio) {
|
|||
zoomSensitivity: 0, //设置为0无法缩放
|
||||
panSensitivity: 0, //设置为0无法平移
|
||||
alpha: 25, //角度(这个很重要 调节角度的)
|
||||
distance: 90, //调整视角到主体的距离,类似调整zoom(这是整体大小)
|
||||
distance: 100, //调整视角到主体的距离,类似调整zoom(这是整体大小)
|
||||
},
|
||||
top: '-30',
|
||||
left: '-120',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div ref="chart" style="width: 100%; height: 34vh"></div>
|
||||
<div ref="chart" style="width: 100%; height: calc(100% - 36px);"></div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
@ -95,7 +95,7 @@ const option = {
|
|||
splitLine: {
|
||||
show: false,
|
||||
lineStyle: {
|
||||
color: "rgba(226, 226, 226, 0.3)",
|
||||
color: "#ffffff",
|
||||
width: 1,
|
||||
},
|
||||
},
|
||||
|
|
|
@ -127,7 +127,7 @@
|
|||
</div>
|
||||
<div class="history1">
|
||||
<div>
|
||||
<span>239 <span class="unit">个</span> </span>
|
||||
<span>239<span class="unit">个</span> </span>
|
||||
</div>
|
||||
<img src="@/assets/YLimg/ylimg3.png" alt="" />
|
||||
<img class="historyimg" src="@/assets/YLimg/ylimg6.png" alt="" />
|
||||
|
@ -205,7 +205,7 @@ const change = (name, index) => {
|
|||
<style lang="scss" scoped>
|
||||
.displayFlex {
|
||||
box-sizing: border-box;
|
||||
height: 90vh;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
// flex: 1;
|
||||
|
@ -226,6 +226,8 @@ const change = (name, index) => {
|
|||
|
||||
.module {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: calc(100vh - 112px);
|
||||
}
|
||||
|
||||
.yd_title {
|
||||
|
|
Loading…
Reference in New Issue