优化提现手续费动态配置
This commit is contained in:
@ -17,7 +17,14 @@
|
||||
|
||||
<!-- 分页 -->
|
||||
<div class="pagination mt-15px">
|
||||
<el-pagination v-model:current-page="query.pageNo" :page-size="10" :total="result.total" background layout="prev, pager, next, jumper" />
|
||||
<el-pagination
|
||||
v-model:current-page="query.pageNo"
|
||||
:page-size="10"
|
||||
:total="result.total"
|
||||
background
|
||||
layout="prev, pager, next, jumper"
|
||||
@current-change="handeClickCurrent"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -51,6 +58,12 @@
|
||||
}
|
||||
}
|
||||
getTradeRecords()
|
||||
|
||||
// 点击分页
|
||||
const handeClickCurrent = (pageNo: number) => {
|
||||
query.pageNo = pageNo
|
||||
getTradeRecords()
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
:deep(.el-pagination) {
|
||||
|
||||
Reference in New Issue
Block a user