mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
feat(component): 封装分页器
This commit is contained in:
parent
8d8dd1a97d
commit
c6dd8dbc94
@ -2,7 +2,7 @@ import Mock from 'mockjs';
|
||||
import { resultSuccess } from '../utils';
|
||||
|
||||
const userList = Mock.mock({
|
||||
'list|20': [
|
||||
'list|10': [
|
||||
{
|
||||
id: '@id',
|
||||
name: '@cname',
|
||||
|
51
src/components/custom/Pagination.vue
Normal file
51
src/components/custom/Pagination.vue
Normal 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>
|
@ -1,10 +1,10 @@
|
||||
<template>
|
||||
<n-space vertical size="large">
|
||||
<n-card>
|
||||
<n-grid :x-gap="12" :y-gap="8" :cols="23">
|
||||
<n-grid :x-gap="24" :cols="23">
|
||||
<n-gi :span="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>
|
||||
</n-gi>
|
||||
@ -56,7 +56,8 @@
|
||||
下载
|
||||
</n-button>
|
||||
</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-card>
|
||||
</n-space>
|
||||
@ -65,7 +66,7 @@
|
||||
<script setup lang="tsx">
|
||||
import { onMounted, ref, h } from 'vue';
|
||||
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';
|
||||
|
||||
const model = ref({
|
||||
@ -111,8 +112,9 @@ const columns: DataTableColumns = [
|
||||
align: 'center',
|
||||
key: 'disabled',
|
||||
render: (row) => {
|
||||
const rowData = row as unknown as UserList;
|
||||
return (
|
||||
<NSwitch value={row.disabled} onUpdateValue={(disabled) => handleUpdateDisabled(disabled, row.id)}>
|
||||
<NSwitch value={rowData.disabled} onUpdateValue={(disabled) => handleUpdateDisabled(disabled, rowData.id)}>
|
||||
{{ checked: () => '启用', unchecked: () => '禁用' }}
|
||||
</NSwitch>
|
||||
);
|
||||
@ -123,13 +125,13 @@ const columns: DataTableColumns = [
|
||||
align: 'center',
|
||||
key: 'actions',
|
||||
render: (row) => {
|
||||
// const rowData = row as unknown as UserManagement.UserTable;
|
||||
const rowData = row as unknown as UserList;
|
||||
return (
|
||||
<NSpace justify={'center'}>
|
||||
<NButton size={'small'} onClick={() => sendMail(row.id)}>
|
||||
<NButton size={'small'} onClick={() => sendMail(rowData.id)}>
|
||||
编辑
|
||||
</NButton>
|
||||
<NPopconfirm onPositiveClick={() => sendMail(row.id)}>
|
||||
<NPopconfirm onPositiveClick={() => sendMail(rowData.id)}>
|
||||
{{
|
||||
default: () => '确认删除',
|
||||
trigger: () => <NButton size={'small'}>删除</NButton>,
|
||||
@ -140,23 +142,35 @@ const columns: DataTableColumns = [
|
||||
},
|
||||
},
|
||||
];
|
||||
const sendMail = (id) => {
|
||||
console.log('%c 🚀 ~ [row]-122', 'font-size:13px; background:pink; color:#bf2c9f;', id);
|
||||
const sendMail = (id: number) => {
|
||||
window.$message.success(`用户id:${id}`);
|
||||
};
|
||||
const handleUpdateDisabled = (disabled, id) => {
|
||||
function handleUpdateDisabled(disabled: boolean, id: number) {
|
||||
const index = listData.value.findIndex((item) => item.id === id);
|
||||
if (index > -1) {
|
||||
listData.value[index].disabled = disabled;
|
||||
}
|
||||
};
|
||||
const listData = ref();
|
||||
const pagination = {};
|
||||
}
|
||||
interface UserList {
|
||||
id: number;
|
||||
name: string;
|
||||
age: number;
|
||||
gender: string;
|
||||
email: string;
|
||||
address: string;
|
||||
role: string;
|
||||
disabled: boolean;
|
||||
}
|
||||
const listData = ref<UserList[]>([]);
|
||||
|
||||
onMounted(() => {
|
||||
fetchUserList().then((res) => {
|
||||
listData.value = res.data;
|
||||
});
|
||||
});
|
||||
function changePage(page: number, size: number) {
|
||||
window.$message.success(`分页器:${page},${size}`);
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user