优化提现手续费动态配置

This commit is contained in:
wangqiao
2025-10-08 22:22:54 +08:00
parent 89f3b9679d
commit 3f3ea878b9
4 changed files with 46 additions and 4 deletions

View File

@ -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) {