|
|
@ -58,7 +58,8 @@ |
|
|
<img src="@/assets/img/home/transfer.png" alt="" class="h-25"/> |
|
|
<img src="@/assets/img/home/transfer.png" alt="" class="h-25"/> |
|
|
<view class="color-light fn-ms">{{$t("base.d8")}}</view> |
|
|
<view class="color-light fn-ms">{{$t("base.d8")}}</view> |
|
|
</v-link> |
|
|
</v-link> |
|
|
<v-link tag="view" :to="{path: '/pages/exchange/his',query: { symbol: symbol }}" class="manage_text"> |
|
|
<!-- <v-link tag="view" :to="{path: '/pages/exchange/his',query: { symbol: symbol }}" class="manage_text"> --> |
|
|
|
|
|
<v-link tag="view" :to="{path: '/pages/exchange/his'}" class="manage_text"> |
|
|
<img src="@/assets/img/home/check.png" alt="" class="h-25"/> |
|
|
<img src="@/assets/img/home/check.png" alt="" class="h-25"/> |
|
|
<view class="color-light fn-ms">{{$t("base.h1")}}</view> |
|
|
<view class="color-light fn-ms">{{$t("base.h1")}}</view> |
|
|
</v-link> |
|
|
</v-link> |
|
|
@ -164,7 +165,8 @@ |
|
|
style="position: relative;background-color: #242424;border-radius: 5px;"> |
|
|
style="position: relative;background-color: #242424;border-radius: 5px;"> |
|
|
<text class="fn-20 d-block color-light m-t-xs"> |
|
|
<text class="fn-20 d-block color-light m-t-xs"> |
|
|
<!-- ≈{{ filterMoney(account.funds_account_usd) }} --> |
|
|
<!-- ≈{{ filterMoney(account.funds_account_usd) }} --> |
|
|
≈{{ (account.funds_account_usd).toFixed(2) }} |
|
|
<!-- ≈{{ (account.funds_account_usd).toFixed(2) }} --> |
|
|
|
|
|
≈{{ omitTo(account.funds_account_usd,2) }} |
|
|
</text> |
|
|
</text> |
|
|
<text class="fn-sm d-block color-gray-6 m-t-xs">{{ $t("base.d6") }}(USDT)</text> |
|
|
<text class="fn-sm d-block color-gray-6 m-t-xs">{{ $t("base.d6") }}(USDT)</text> |
|
|
|
|
|
|
|
|
@ -247,7 +249,8 @@ |
|
|
</text> |
|
|
</text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="col-fff text_width text_align m-title"> |
|
|
<view class="col-fff text_width text_align m-title"> |
|
|
{{ (item.usable_balance).toFixed(2) }} |
|
|
<!-- {{ (item.usable_balance).toFixed(2) }} --> |
|
|
|
|
|
{{ omitTo(item.usable_balance,2) }} |
|
|
</view> |
|
|
</view> |
|
|
<view class="col-fff text_width text_align m-title"> |
|
|
<view class="col-fff text_width text_align m-title"> |
|
|
{{ item.freeze_balance }} |
|
|
{{ item.freeze_balance }} |
|
|
@ -258,6 +261,7 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="h-4 m-t-xs"></view> |
|
|
<view class="h-4 m-t-xs"></view> |
|
|
</router-link> |
|
|
</router-link> |
|
|
|
|
|
<van-empty class="bg-panel-3" v-if="filteredList.length === 0" :description="$t('contract.d0')"/> |
|
|
</view> |
|
|
</view> |
|
|
<!-- </van-tab> |
|
|
<!-- </van-tab> |
|
|
|
|
|
|
|
|
@ -355,6 +359,9 @@ export default { |
|
|
hideMoney: "hideMoney", |
|
|
hideMoney: "hideMoney", |
|
|
theme: "theme", |
|
|
theme: "theme", |
|
|
}), |
|
|
}), |
|
|
|
|
|
filteredList() { |
|
|
|
|
|
return this.list.filter(item => this.ifShow(item)); |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
props: { |
|
|
props: { |
|
|
isShow: { |
|
|
isShow: { |
|
|
|