|
|
@@ -13,7 +13,7 @@
|
|
|
<div class="box-2 bgc-755C82 box-sizing-border-box fw-500 fs-16">{{$t('home6.nav1')}}</div>
|
|
|
<div class="box-3 bgc-755C82 box-sizing-border-box">
|
|
|
<div class="fs-16 fw-400 mb-16">{{$t('home6.index1.text1')}}(USDT)</div>
|
|
|
- <div class="fs-20 fw-700">{{userInfo.money||"0"}}</div>
|
|
|
+ <div class="fs-20 fw-700">{{(userInfo.money*1).toFixed(2)||"0.00"}}</div>
|
|
|
</div>
|
|
|
<div class="justify-content-space-between">
|
|
|
<div class="box-4 justify-content-space-between align-items-center right-border box-sizing-border-box bgc-755C82">
|
|
|
@@ -21,14 +21,14 @@
|
|
|
<img class="img-1" src="@/assets/img/me/money.png" alt="" />
|
|
|
<div class="fs-16 fw-400">{{$t('home6.index1.text2')}}(USDT)</div>
|
|
|
</div>
|
|
|
- <div class="fs-14 fw-700">{{userInfo.day_yield}}</div>
|
|
|
+ <div class="fs-14 fw-700">{{(userInfo.day_yield*1).toFixed(2)}}</div>
|
|
|
</div>
|
|
|
<div class="box-4 justify-content-space-between align-items-center bgc-755C82 box-sizing-border-box">
|
|
|
<div class="align-items-center">
|
|
|
<img class="img-2" src="@/assets/img/me/user.png" alt="" />
|
|
|
<div class="fs-16 fw-400">{{$t('home6.index1.text3')}}(USDT)</div>
|
|
|
</div>
|
|
|
- <div class="fs-14 fw-700">{{userInfo.day_team}}</div>
|
|
|
+ <div class="fs-14 fw-700">{{(userInfo.day_team*1).toFixed(2)}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="justify-content-space-between">
|
|
|
@@ -37,14 +37,14 @@
|
|
|
<img class="img-1" src="@/assets/img/me/money.png" alt="" />
|
|
|
<div class="fs-16 fw-400">{{$t('home6.index1.text4')}}(USDT)</div>
|
|
|
</div>
|
|
|
- <div class="fs-14 fw-700">{{userInfo.order_yield}}</div>
|
|
|
+ <div class="fs-14 fw-700">{{(userInfo.order_yield*1).toFixed(2)}}</div>
|
|
|
</div>
|
|
|
<div class="box-4 justify-content-space-between align-items-center bgc-755C82 box-sizing-border-box">
|
|
|
<div class="align-items-center">
|
|
|
<img class="img-2" src="@/assets/img/me/user.png" alt="" />
|
|
|
<div class="fs-16 fw-400">{{$t('home6.index1.text5')}}(USDT)</div>
|
|
|
</div>
|
|
|
- <div class="fs-14 fw-700">{{userInfo.order_team}}</div>
|
|
|
+ <div class="fs-14 fw-700">{{(userInfo.order_team*1).toFixed(2)}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="justify-content-space-between">
|
|
|
@@ -58,7 +58,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div v-if="indexType == 1" class="index-card bgc-755C82 wow animate__animated animate__bounceInRight">
|
|
|
<div class="box-6 align-items-center hand-cursor" @click="toIndex(0)">
|
|
|
<img src="@/assets/img/lang-icon.png" alt="" />
|
|
|
@@ -81,9 +81,9 @@
|
|
|
<div class="box-page fs-12 fw-400 fc-12 hand-cursor" @click="downPage()">{{$t('xyy')}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div v-if="indexType == 2" class="index-card bgc-755C82 wow animate__animated animate__bounceInRight">
|
|
|
<div class="box-6 align-items-center hand-cursor" @click="toIndex(0)">
|
|
|
<img src="@/assets/img/lang-icon.png" alt="" />
|
|
|
@@ -111,16 +111,16 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {getchargelist} from '@/api/money.js';
|
|
|
import {getwithdrawList} from '@/api/withdraw.js';
|
|
|
-
|
|
|
+
|
|
|
import {userInfo} from '@/api/member.js';
|
|
|
-
|
|
|
+
|
|
|
import tools from '@/utils/tools.js';
|
|
|
export default {
|
|
|
name:"my-money",
|
|
|
@@ -133,7 +133,7 @@
|
|
|
userInfo:{},
|
|
|
}
|
|
|
},
|
|
|
- mounted() {
|
|
|
+ mounted() {
|
|
|
this.getInfo();
|
|
|
},
|
|
|
methods:{
|
|
|
@@ -211,7 +211,7 @@
|
|
|
width: 100%;
|
|
|
min-height: 683px;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.box-1{
|
|
|
width: 100%;
|
|
|
height: 140px;
|
|
|
@@ -239,7 +239,7 @@
|
|
|
width: 50%;
|
|
|
padding: 37px 40px;
|
|
|
border-bottom: 1px solid #C1B5C5;
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
.right-border{
|
|
|
border-right: 1px solid #C1B5C5;
|
|
|
@@ -264,7 +264,7 @@
|
|
|
width: 50%;
|
|
|
padding: 48px 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.box-6{
|
|
|
height: 54px;
|
|
|
padding: 0 43px;
|
|
|
@@ -293,4 +293,4 @@
|
|
|
border-radius: 2px;
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|