Browse Source

修改币币中的历史记录只显示10条

master
liaoxinyu 2 years ago
parent
commit
4c6431df60
  1. 6
      pages/exchange/exchangeHis.vue

6
pages/exchange/exchangeHis.vue

@ -18,8 +18,7 @@
>
</view>
</view>
<view style="height: 100%;background-color: #121212;">
<v-paging :ajax="getCurrentEntrust" :key="1" ref="list" tag="div" v-if="active==0" style="background-color: #121212;">
<v-paging :ajax="getCurrentEntrust" :key="1" ref="list" tag="div" v-if="active==0" style="background-color: #121212;height: 100%;">
<template #box="list">
<not-data v-if="!$list(list).length"></not-data>
<div v-for="item in $list(list)" class="item bg-panel-4 m-md rounded-sm box-shadow" :key="item.order_no">
@ -67,7 +66,7 @@
</template>
</v-paging>
<v-paging class="layout-main" :key="2" :ajax="getHistoryEntrust" v-if="active==1" style="background-color: #121212;">
<v-paging class="layout-main" :key="2" :ajax="getHistoryEntrust" v-if="active==1" style="background-color: #121212;height: 100%;">
<template #box="list">
<not-data v-if="!$list(list).length"></not-data>
<div v-for="item in $list(list)" class="item bg-panel-4 m-md rounded-sm box-shadow" :key="item.order_no">
@ -111,7 +110,6 @@
</div>
</template>
</v-paging>
</view>
</v-page>
</template>
<script>

Loading…
Cancel
Save