feat(component): 封装分页器

This commit is contained in:
chen.home 2022-08-27 00:12:33 +08:00
parent 8d8dd1a97d
commit c6dd8dbc94
6 changed files with 80 additions and 15 deletions

View File

@ -2,7 +2,7 @@ import Mock from 'mockjs';
import { resultSuccess } from '../utils'; import { resultSuccess } from '../utils';
const userList = Mock.mock({ const userList = Mock.mock({
'list|20': [ 'list|10': [
{ {
id: '@id', id: '@id',
name: '@cname', name: '@cname',

View File

@ -0,0 +1,51 @@
<template>
<n-pagination
v-if="props.count > 0"
v-model:page="page"
v-model:page-size="pageSize"
:item-count="props.count"
:display-order="displayOrder"
show-size-picker
:page-sizes="pageSizes"
@update-page="changePage"
@update-page-size="changePage"
/>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const emit = defineEmits(['change']);
const props = defineProps({
count: {
type: Number,
default: 0,
},
});
const page = ref(1);
const pageSize = ref(10);
const displayOrder: Array<'pages' | 'size-picker' | 'quick-jumper'> = ['size-picker', 'pages'];
const pageSizes = [
{
label: '10 每页',
value: 10,
},
{
label: '20 每页',
value: 20,
},
{
label: '30 每页',
value: 30,
},
{
label: '50 每页',
value: 50,
},
];
function changePage() {
emit('change', page.value, pageSize.value);
}
</script>
<style scoped></style>

View File

@ -1,10 +1,10 @@
<template> <template>
<n-space vertical size="large"> <n-space vertical size="large">
<n-card> <n-card>
<n-grid :x-gap="12" :y-gap="8" :cols="23"> <n-grid :x-gap="24" :cols="23">
<n-gi :span="5"> <n-gi :span="5">
<n-grid :cols="5"> <n-grid :cols="5">
<n-grid-item :span="1" class="flex-center">条件1</n-grid-item> <n-grid-item :span="1" class="flex-center justify-start">条件1</n-grid-item>
<n-grid-item :span="4"><n-input v-model:value="model.condition_1" placeholder="Input" /></n-grid-item> <n-grid-item :span="4"><n-input v-model:value="model.condition_1" placeholder="Input" /></n-grid-item>
</n-grid> </n-grid>
</n-gi> </n-gi>
@ -56,7 +56,8 @@
下载 下载
</n-button> </n-button>
</div> </div>
<n-data-table :bordered="false" :columns="columns" :data="listData" :pagination="pagination" /> <n-data-table :bordered="false" :columns="columns" :data="listData" />
<Pagination :count="0" @change="changePage" />
</n-space> </n-space>
</n-card> </n-card>
</n-space> </n-space>
@ -65,7 +66,7 @@
<script setup lang="tsx"> <script setup lang="tsx">
import { onMounted, ref, h } from 'vue'; import { onMounted, ref, h } from 'vue';
import { fetchUserList } from '~/src/service/api/mock'; import { fetchUserList } from '~/src/service/api/mock';
import type { DataTableColumns, PaginationProps } from 'naive-ui'; import type { DataTableColumns } from 'naive-ui';
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'; import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui';
const model = ref({ const model = ref({
@ -111,8 +112,9 @@ const columns: DataTableColumns = [
align: 'center', align: 'center',
key: 'disabled', key: 'disabled',
render: (row) => { render: (row) => {
const rowData = row as unknown as UserList;
return ( return (
<NSwitch value={row.disabled} onUpdateValue={(disabled) => handleUpdateDisabled(disabled, row.id)}> <NSwitch value={rowData.disabled} onUpdateValue={(disabled) => handleUpdateDisabled(disabled, rowData.id)}>
{{ checked: () => '启用', unchecked: () => '禁用' }} {{ checked: () => '启用', unchecked: () => '禁用' }}
</NSwitch> </NSwitch>
); );
@ -123,13 +125,13 @@ const columns: DataTableColumns = [
align: 'center', align: 'center',
key: 'actions', key: 'actions',
render: (row) => { render: (row) => {
// const rowData = row as unknown as UserManagement.UserTable; const rowData = row as unknown as UserList;
return ( return (
<NSpace justify={'center'}> <NSpace justify={'center'}>
<NButton size={'small'} onClick={() => sendMail(row.id)}> <NButton size={'small'} onClick={() => sendMail(rowData.id)}>
编辑 编辑
</NButton> </NButton>
<NPopconfirm onPositiveClick={() => sendMail(row.id)}> <NPopconfirm onPositiveClick={() => sendMail(rowData.id)}>
{{ {{
default: () => '确认删除', default: () => '确认删除',
trigger: () => <NButton size={'small'}>删除</NButton>, trigger: () => <NButton size={'small'}>删除</NButton>,
@ -140,23 +142,35 @@ const columns: DataTableColumns = [
}, },
}, },
]; ];
const sendMail = (id) => { const sendMail = (id: number) => {
console.log('%c 🚀 ~ [row]-122', 'font-size:13px; background:pink; color:#bf2c9f;', id); window.$message.success(`用户id:${id}`);
}; };
const handleUpdateDisabled = (disabled, id) => { function handleUpdateDisabled(disabled: boolean, id: number) {
const index = listData.value.findIndex((item) => item.id === id); const index = listData.value.findIndex((item) => item.id === id);
if (index > -1) { if (index > -1) {
listData.value[index].disabled = disabled; listData.value[index].disabled = disabled;
} }
}; }
const listData = ref(); interface UserList {
const pagination = {}; id: number;
name: string;
age: number;
gender: string;
email: string;
address: string;
role: string;
disabled: boolean;
}
const listData = ref<UserList[]>([]);
onMounted(() => { onMounted(() => {
fetchUserList().then((res) => { fetchUserList().then((res) => {
listData.value = res.data; listData.value = res.data;
}); });
}); });
function changePage(page: number, size: number) {
window.$message.success(`分页器:${page},${size}`);
}
</script> </script>
<style scoped></style> <style scoped></style>