38 lines
982 B
Vue
38 lines
982 B
Vue
|
|
<template>
|
||
|
|
<!-- 长期持有者盈利总供应量 -->
|
||
|
|
<div v-loading="lthProfitSupplyLoading">
|
||
|
|
<!-- 公式 -->
|
||
|
|
<el-row type="flex" justify="center">
|
||
|
|
<p style="font-weight:550;color:rgba(0,0,0,0.7)">Profit for LTH = number of balance where Price > Price_created and Holder Time >= 155days</p>
|
||
|
|
</el-row>
|
||
|
|
<!-- 对数线性显示切换 -->
|
||
|
|
<el-row>
|
||
|
|
<el-col>
|
||
|
|
<el-button @click="handelLineSwitch"
|
||
|
|
style="margin-left:100px;height:35px;border-radius:6px;"
|
||
|
|
>{{ $t(`home.switch`)
|
||
|
|
}}<span class="according"> {{ $t(switch3) }}</span></el-button
|
||
|
|
>
|
||
|
|
</el-col>
|
||
|
|
</el-row>
|
||
|
|
<el-row>
|
||
|
|
<el-col :span="24">
|
||
|
|
<div
|
||
|
|
id="lthProfitSupplyBox"
|
||
|
|
style="width: 100%; min-height: 700px"
|
||
|
|
></div>
|
||
|
|
</el-col>
|
||
|
|
</el-row>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import IndexJs from "../lthProfitSupply/index"
|
||
|
|
export default {
|
||
|
|
mixins:[IndexJs]
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|