This commit is contained in:
commit
ea4bb0bd30
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div ref="chart" style="width: 100%; height: 28vh"></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: 20vh"></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 >
|
||||
|
|
|
@ -15,23 +15,23 @@ const colorList = ['#FFE35F','#0081FF','#8ABEDB','#25B9C8','#30EB92','rgba(69, 2
|
|||
const pieData = [
|
||||
{
|
||||
name: "60-70岁", //名称
|
||||
value: 1012431431, //值
|
||||
value: 101243, //值
|
||||
},
|
||||
{
|
||||
name: "70-80岁",
|
||||
value: 85425345,
|
||||
value: 84253,
|
||||
},
|
||||
{
|
||||
name: "80-90岁",
|
||||
value: 2543256,
|
||||
value: 14325,
|
||||
},
|
||||
{
|
||||
name: "90-100岁",
|
||||
value: 5432535,
|
||||
value: 4325,
|
||||
},
|
||||
{
|
||||
name: "100岁以上",
|
||||
value: 56,
|
||||
value: 563,
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<ePie v-if="leftchoose.first == '1'"></ePie>
|
||||
<ePie2 v-else></ePie2>
|
||||
</div>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="flex1" >
|
||||
<div class="yd_title left_2">
|
||||
<span class="text">
|
||||
<img
|
||||
|
@ -61,7 +61,7 @@
|
|||
<eP2 v-if="leftchoose.second == '1'"></eP2>
|
||||
<eP2_2 v-else />
|
||||
</div>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="flex1" >
|
||||
<div class="yd_title left_3">
|
||||
<span class="text">
|
||||
<img
|
||||
|
|
Loading…
Reference in New Issue