|
@@ -19,16 +19,16 @@
|
|
|
<div class="mr-3" style="min-width: 850px;">
|
|
|
<Empty v-if="!items?.length"></Empty>
|
|
|
<PositionLongStrip v-else :items="items"></PositionLongStrip>
|
|
|
+ <CtPagination
|
|
|
+ v-if="total > 0"
|
|
|
+ :total="total"
|
|
|
+ :page="pageInfo.pageNo"
|
|
|
+ :limit="pageInfo.pageSize"
|
|
|
+ @handleChange="handleChangePage"
|
|
|
+ ></CtPagination>
|
|
|
</div>
|
|
|
<rightRecommend></rightRecommend>
|
|
|
</div>
|
|
|
- <CtPagination
|
|
|
- v-if="total > 0"
|
|
|
- :total="total"
|
|
|
- :page="pageInfo.pageNo"
|
|
|
- :limit="pageInfo.pageSize"
|
|
|
- @handleChange="handleChangePage"
|
|
|
- ></CtPagination>
|
|
|
</div>
|
|
|
</template>
|
|
|
|