244 lines
6.0 KiB
Vue
244 lines
6.0 KiB
Vue
<script setup lang="tsx">
|
|
import { ref } from 'vue';
|
|
import { NButton, NPopconfirm, NTag } from 'naive-ui';
|
|
import { useBoolean } from '@sa/hooks';
|
|
import { fetchGetUserList } from '@/service/api';
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { useTable } from '@/hooks/common/table';
|
|
import { $t } from '@/locales';
|
|
import { enableStatusRecord, userGenderRecord } from '@/constants/business';
|
|
import UserOperateDrawer, { type OperateType } from './modules/user-operate-drawer.vue';
|
|
import UserSearch from './modules/user-search.vue';
|
|
|
|
const appStore = useAppStore();
|
|
const { bool: drawerVisible, setTrue: openDrawer } = useBoolean();
|
|
|
|
const {
|
|
columns,
|
|
filteredColumns,
|
|
data,
|
|
loading,
|
|
pagination,
|
|
getData,
|
|
searchParams,
|
|
updateSearchParams,
|
|
resetSearchParams
|
|
} = useTable<Api.SystemManage.User, typeof fetchGetUserList, 'index' | 'operate'>({
|
|
apiFn: fetchGetUserList,
|
|
apiParams: {
|
|
current: 1,
|
|
size: 10,
|
|
// if you want to use the searchParams in Form, you need to define the following properties, and the value is null
|
|
// the value can not be undefined, otherwise the property in Form will not be reactive
|
|
status: null,
|
|
userName: null,
|
|
userGender: null,
|
|
nickName: null,
|
|
userPhone: null,
|
|
userEmail: null
|
|
},
|
|
transformer: res => {
|
|
const { records = [], current = 1, size = 10, total = 0 } = res.data || {};
|
|
|
|
return {
|
|
data: records,
|
|
pageNum: current,
|
|
pageSize: size,
|
|
total
|
|
};
|
|
},
|
|
onPaginationChanged(pg) {
|
|
const { page, pageSize } = pg;
|
|
|
|
updateSearchParams({
|
|
current: page,
|
|
size: pageSize
|
|
});
|
|
|
|
getData();
|
|
},
|
|
columns: () => [
|
|
{
|
|
type: 'selection',
|
|
align: 'center',
|
|
width: 48
|
|
},
|
|
{
|
|
key: 'index',
|
|
title: $t('common.index'),
|
|
render: (_, index): string => getIndex(index),
|
|
align: 'center',
|
|
width: 64
|
|
},
|
|
{
|
|
key: 'userName',
|
|
title: $t('page.manage.user.userName'),
|
|
align: 'center',
|
|
minWidth: 100
|
|
},
|
|
{
|
|
key: 'userGender',
|
|
title: $t('page.manage.user.userGender'),
|
|
align: 'center',
|
|
width: 100,
|
|
render: row => {
|
|
if (row.userGender === null) {
|
|
return null;
|
|
}
|
|
|
|
const tagMap: Record<Api.SystemManage.UserGender, NaiveUI.ThemeColor> = {
|
|
1: 'primary',
|
|
2: 'error'
|
|
};
|
|
|
|
const label = $t(userGenderRecord[row.userGender]);
|
|
|
|
return <NTag type={tagMap[row.userGender]}>{label}</NTag>;
|
|
}
|
|
},
|
|
{
|
|
key: 'nickName',
|
|
title: $t('page.manage.user.nickName'),
|
|
align: 'center',
|
|
minWidth: 100
|
|
},
|
|
{
|
|
key: 'userPhone',
|
|
title: $t('page.manage.user.userPhone'),
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
key: 'userEmail',
|
|
title: $t('page.manage.user.userEmail'),
|
|
align: 'center',
|
|
minWidth: 200
|
|
},
|
|
{
|
|
key: 'status',
|
|
title: $t('page.manage.user.userStatus'),
|
|
align: 'center',
|
|
width: 100,
|
|
render: row => {
|
|
if (row.status === null) {
|
|
return null;
|
|
}
|
|
|
|
const tagMap: Record<Api.Common.EnableStatus, NaiveUI.ThemeColor> = {
|
|
1: 'success',
|
|
2: 'warning'
|
|
};
|
|
|
|
const label = $t(enableStatusRecord[row.status]);
|
|
|
|
return <NTag type={tagMap[row.status]}>{label}</NTag>;
|
|
}
|
|
},
|
|
{
|
|
key: 'operate',
|
|
title: $t('common.operate'),
|
|
align: 'center',
|
|
width: 130,
|
|
render: row => (
|
|
<div class="flex-center gap-8px">
|
|
<NButton type="primary" ghost size="small" onClick={() => handleEdit(row.id)}>
|
|
{$t('common.edit')}
|
|
</NButton>
|
|
<NPopconfirm onPositiveClick={() => handleDelete(row.id)}>
|
|
{{
|
|
default: () => $t('common.confirmDelete'),
|
|
trigger: () => (
|
|
<NButton type="error" ghost size="small">
|
|
{$t('common.delete')}
|
|
</NButton>
|
|
)
|
|
}}
|
|
</NPopconfirm>
|
|
</div>
|
|
)
|
|
}
|
|
]
|
|
});
|
|
|
|
const operateType = ref<OperateType>('add');
|
|
|
|
function handleAdd() {
|
|
operateType.value = 'add';
|
|
openDrawer();
|
|
}
|
|
|
|
const checkedRowKeys = ref<string[]>([]);
|
|
|
|
async function handleBatchDelete() {
|
|
// request
|
|
console.log(checkedRowKeys.value);
|
|
window.$message?.success($t('common.deleteSuccess'));
|
|
|
|
checkedRowKeys.value = [];
|
|
|
|
getData();
|
|
}
|
|
|
|
/** the editing row data */
|
|
const editingData = ref<Api.SystemManage.User | null>(null);
|
|
|
|
function handleEdit(id: number) {
|
|
operateType.value = 'edit';
|
|
editingData.value = data.value.find(item => item.id === id) || null;
|
|
openDrawer();
|
|
}
|
|
|
|
async function handleDelete(id: number) {
|
|
// request
|
|
console.log(id);
|
|
window.$message?.success($t('common.deleteSuccess'));
|
|
|
|
getData();
|
|
}
|
|
|
|
function getIndex(index: number) {
|
|
const { page = 0, pageSize = 10 } = pagination;
|
|
|
|
return String((page - 1) * pageSize + index + 1);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex-vertical-stretch gap-16px overflow-hidden <sm:overflow-auto">
|
|
<UserSearch v-model:model="searchParams" @reset="resetSearchParams" @search="getData" />
|
|
<NCard :title="$t('page.manage.user.title')" :bordered="false" size="small" class="sm:flex-1-hidden card-wrapper">
|
|
<template #header-extra>
|
|
<TableHeaderOperation
|
|
v-model:columns="filteredColumns"
|
|
:disabled-delete="checkedRowKeys.length === 0"
|
|
:loading="loading"
|
|
@add="handleAdd"
|
|
@delete="handleBatchDelete"
|
|
@refresh="getData"
|
|
/>
|
|
</template>
|
|
<NDataTable
|
|
v-model:checked-row-keys="checkedRowKeys"
|
|
:columns="columns"
|
|
:data="data"
|
|
size="small"
|
|
:flex-height="!appStore.isMobile"
|
|
:scroll-x="962"
|
|
:loading="loading"
|
|
remote
|
|
:pagination="pagination"
|
|
:row-key="item => item.id"
|
|
class="sm:h-full"
|
|
/>
|
|
<UserOperateDrawer
|
|
v-model:visible="drawerVisible"
|
|
:operate-type="operateType"
|
|
:row-data="editingData"
|
|
@submitted="getData"
|
|
/>
|
|
</NCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|