51 lines
1.2 KiB
Vue
51 lines
1.2 KiB
Vue
<template>
|
|
<!-- 已花费输出平均寿命 -->
|
|
<div v-loading="asolLoading" style="width: 100%; min-height: 700px">
|
|
|
|
<!-- 公式 -->
|
|
<el-row type="flex" justify="center">
|
|
<p style="font-weight:550;color:rgba(0,0,0,0.6)">ASOL = Mean{ lifespan <span style="color:rgba(0,0,0,0.4)">[days] (of all spent outputs) </span> }</p>
|
|
</el-row>
|
|
|
|
<!-- 对数线性显示切换 -->
|
|
<el-row>
|
|
<el-col>
|
|
<!-- @handelSwitch="handelSwitch" -->
|
|
<el-button @click="handelLineSwitch"
|
|
style="margin-left:5px;height:35px;border-radius:6px;line-height: 5px;"
|
|
>{{ $t(`home.switch`)
|
|
}}<span class="according"> {{ $t(switch3) }}</span></el-button
|
|
>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<Dropdown
|
|
:dataSelection="dataSelection"
|
|
:onSelect="handleSelect"
|
|
:realTimeData="realTimeData"
|
|
style="margin: 10px 0px;"
|
|
></Dropdown>
|
|
|
|
|
|
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<div
|
|
id="asolBox"
|
|
style="width: 100%; min-height: 700px"
|
|
></div>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import IndexJs from "../asol/index"
|
|
export default {
|
|
mixins:[IndexJs]
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |