重构:在 config 列表,引入分页组件

This commit is contained in:
YunaiV 2023-03-10 23:09:30 +08:00
parent ba563f76c6
commit 0506c4e54d
2 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<template>
<div :class="{ 'hidden': hidden }" class="pagination-container">
<div :class="{ hidden }" class="pagination-container">
<el-pagination
:background="background"
v-model:current-page="currentPage"
@ -18,6 +18,7 @@
// TODO ts
// TODO scrollTo
// import { scrollTo } from '@/utils/scroll-to'
import { computed } from 'vue'
const props = defineProps({
total: {
@ -38,7 +39,7 @@ const props = defineProps({
return [10, 20, 30, 50]
}
},
// 5
// 5
pagerCount: {
type: Number,
default: document.body.clientWidth < 992 ? 5 : 7
@ -61,7 +62,7 @@ const props = defineProps({
}
})
const emit = defineEmits();
const emit = defineEmits(['update:page', 'update:limit', 'pagination', 'pagination'])
const currentPage = computed({
get() {
return props.page
@ -74,7 +75,7 @@ const pageSize = computed({
get() {
return props.limit
},
set(val){
set(val) {
emit('update:limit', val)
}
})
@ -93,7 +94,6 @@ function handleCurrentChange(val) {
// scrollTo(0, 800)
}
}
</script>
<style scoped>

View File

@ -103,6 +103,13 @@
</template>
</el-table-column>
</el-table>
<Pagination
v-show="total > 0"
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</content-wrap>
<!-- 表单弹窗添加/修改 -->
@ -137,7 +144,7 @@ const getList = async () => {
try {
const data = await ConfigApi.getConfigPage(queryParams)
list.value = data.list
total.value = data.value
total.value = data.total
} finally {
loading.value = false
}