Browse Source

隐藏链接按钮和币币和合约加个提示词

master
liaoxinyu 1 year ago
parent
commit
60b39f14f3
  1. 4
      pages/base/home.vue
  2. 4
      pages/base/mine.vue
  3. 2
      pages/exchange/exchange-transaction.vue
  4. 4
      pages/exchange/open-position.vue

4
pages/base/home.vue

@ -260,7 +260,7 @@
<view style="display: flex;width: 100%;justify-content: center;margin-top: 100rpx;margin-bottom: 60rpx;">
<img src="@/assets/img/home/home12.png" style="width: 100%;" />
</view>
<a href="https://app.qntcoin.com/download/QNTcoin.html" style="display: block;width: 100%;text-decoration: none;">
<!-- <a href="https://app.qntcoin.com/download/QNTcoin.html" style="display: block;width: 100%;text-decoration: none;">
<view class="store_view">
<image src="@/assets/img/home/antFill-apple@2x.png" mode="" style="width: 48rpx;height: 48rpx;"></image>
<view style="color: #908F94;margin-left: 20rpx;">APP Store</view>
@ -271,7 +271,7 @@
<image src="@/assets/img/home/md-android@2x.png" mode="" style="width: 48rpx;height: 48rpx;"></image>
<view style="color: #908F94;margin-left: 20rpx;">Android</view>
</view>
</a>
</a> -->
</view>
</view>

4
pages/base/mine.vue

@ -258,6 +258,7 @@
</view>
<view class="h-4 m-t-xs"></view>
</router-link>
<van-empty class="bg-panel-3" v-if="filteredList.length === 0" :description="$t('contract.d0')"/>
</view>
<!-- </van-tab>
@ -360,6 +361,9 @@ export default {
hideMoney: "hideMoney",
theme: "theme",
}),
filteredList() {
return this.list.filter(item => this.ifShow(item));
}
},
props: {
isShow: {

2
pages/exchange/exchange-transaction.vue

@ -314,7 +314,7 @@
<view class="">当前交易品种</view>
<view class="">批量撤单</view>
</view> -->
<van-empty v-if="!Object.values(list).length" description="" />
<van-empty v-if="!Object.values(list).length" :description="$t('contract.d0')" />
<view v-for="item in (list)" class="item border-b fn-14" :key="item.order_no">
<view class="p-x-md p-y-xs">
<view class="row d-flex m-y-xs">

4
pages/exchange/open-position.vue

@ -650,7 +650,7 @@
</view>
</view>
</template>
<van-empty class="bg-panel-3" v-if="!list.length&&active==0" description=""/>
<van-empty class="bg-panel-3" v-if="!list.length&&active==0" :description="$t('contract.d0')"/>
<template v-if="active==1">
<view class="item border-b bg-panel-3" v-for="item in (listCurrent)" :key="item.id">
<view class="p-x-md p-y-xs">
@ -712,7 +712,7 @@
</view>
</view>
</template>
<van-empty v-if="!listCurrent.length&&active==1" description=""/>
<van-empty v-if="!listCurrent.length&&active==1" :description="$t('contract.d0')"/>
</view>
<van-popup :show="stoplossShow" @close="stoplossShow = false" closeable
custom-style="height:auto;width:90%;overflow:auto;padding-bottom:20px;border-radius:5px">

Loading…
Cancel
Save