|
@@ -21,12 +21,12 @@
|
|
<u-icon name="arrow-down" color="#333" size="18" v-else></u-icon>
|
|
<u-icon name="arrow-down" color="#333" size="18" v-else></u-icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="screen-coin-list" v-if="ascShow">
|
|
|
|
|
|
+ <view class="screen-coin-list" v-if="ascShow" @touchmove.prevent.stop>
|
|
<view class="flex screen-coin-list-item" v-for="(item, index) in ascList" :key="index" @click="selectCoinTwo(item, index)">
|
|
<view class="flex screen-coin-list-item" v-for="(item, index) in ascList" :key="index" @click="selectCoinTwo(item, index)">
|
|
<text :class="{ 'action': ascListIndex == index }">{{ item.text }}</text>
|
|
<text :class="{ 'action': ascListIndex == index }">{{ item.text }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="screen-coin-list" v-if="coinShow">
|
|
|
|
|
|
+ <view class="screen-coin-list" v-if="coinShow" @touchmove.prevent.stop>
|
|
<view class="flex screen-coin-list-item" v-for="(item, index) in coinList" :key="index" @click="selectCoin(item, index)">
|
|
<view class="flex screen-coin-list-item" v-for="(item, index) in coinList" :key="index" @click="selectCoin(item, index)">
|
|
<text v-if="item.min" :class="{ 'action': actionIndex == index }">{{ item.min }}</text>
|
|
<text v-if="item.min" :class="{ 'action': actionIndex == index }">{{ item.min }}</text>
|
|
<text v-if="item.max" :class="{ 'action': actionIndex == index }">-{{ item.max }}</text>
|
|
<text v-if="item.max" :class="{ 'action': actionIndex == index }">-{{ item.max }}</text>
|
|
@@ -55,8 +55,8 @@
|
|
</view>
|
|
</view>
|
|
<custom-tab-bar :activeValue="'core'" />
|
|
<custom-tab-bar :activeValue="'core'" />
|
|
|
|
|
|
- <u-overlay :show="coinShow" @click="coinShow = false" zIndex="1"></u-overlay>
|
|
|
|
- <u-overlay :show="ascShow" @click="ascShow = false" zIndex="1"></u-overlay>
|
|
|
|
|
|
+ <u-overlay :show="coinShow" @click="coinShow = false" zIndex="1" @touchmove.prevent.stop></u-overlay>
|
|
|
|
+ <u-overlay :show="ascShow" @click="ascShow = false" zIndex="1" @touchmove.prevent.stop></u-overlay>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|