169 lines
3.8 KiB
Vue
169 lines
3.8 KiB
Vue
<script lang="ts" setup>
|
||
import type { Recordable } from '@vben/types';
|
||
|
||
import type {
|
||
OnActionClickParams,
|
||
VxeTableGridOptions,
|
||
} from '#/adapter/vxe-table';
|
||
import type { UserApi } from '#/api';
|
||
|
||
import { Page, useVbenDrawer } from '@vben/common-ui';
|
||
import { Plus } from '@vben/icons';
|
||
|
||
import { Button, message, Modal } from 'ant-design-vue';
|
||
import dayjs from 'dayjs';
|
||
|
||
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||
import { enabledUser, queryUserList, removeUser } from '#/api';
|
||
import { $t } from '#/locales';
|
||
|
||
import { useColumns, useGridFormSchema } from './data';
|
||
import Form from './modules/form.vue';
|
||
|
||
const [FormDrawer, formDrawerApi] = useVbenDrawer({
|
||
connectedComponent: Form,
|
||
destroyOnClose: true,
|
||
});
|
||
|
||
const [Grid, gridApi] = useVbenVxeGrid({
|
||
formOptions: {
|
||
fieldMappingTime: [['createTime', ['startTime', 'endTime']]],
|
||
schema: useGridFormSchema(),
|
||
},
|
||
gridOptions: {
|
||
columns: useColumns(onActionClick, onStatusChange),
|
||
height: 'auto',
|
||
keepSource: true,
|
||
proxyConfig: {
|
||
ajax: {
|
||
query: async ({ page }, formValues) => {
|
||
const res = await queryUserList({
|
||
page: page.currentPage,
|
||
size: page.size,
|
||
...formValues,
|
||
});
|
||
return {
|
||
items: res.records,
|
||
total: res.total,
|
||
};
|
||
},
|
||
},
|
||
},
|
||
rowConfig: {
|
||
keyField: 'id',
|
||
},
|
||
|
||
toolbarConfig: {
|
||
custom: true,
|
||
export: false,
|
||
refresh: { code: 'query' },
|
||
search: true,
|
||
zoom: true,
|
||
},
|
||
} as VxeTableGridOptions<UserApi.User>,
|
||
});
|
||
|
||
function onActionClick(e: OnActionClickParams<UserApi.User>) {
|
||
switch (e.code) {
|
||
case 'delete': {
|
||
onDelete(e.row);
|
||
break;
|
||
}
|
||
case 'edit': {
|
||
onEdit(e.row);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 将Antd的Modal.confirm封装为promise,方便在异步函数中调用。
|
||
* @param content 提示内容
|
||
* @param title 提示标题
|
||
*/
|
||
function confirm(content: string, title: string) {
|
||
return new Promise((reslove, reject) => {
|
||
Modal.confirm({
|
||
content,
|
||
onCancel() {
|
||
reject(new Error('已取消'));
|
||
},
|
||
onOk() {
|
||
reslove(true);
|
||
},
|
||
title,
|
||
});
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 状态开关即将改变
|
||
* @param newStatus 期望改变的状态值
|
||
* @param row 行数据
|
||
* @returns 返回false则中止改变,返回其他值(undefined、true)则允许改变
|
||
*/
|
||
async function onStatusChange(newStatus: number, row: UserApi.User) {
|
||
const status: Recordable<string> = {
|
||
0: '禁用',
|
||
1: '启用',
|
||
};
|
||
try {
|
||
await confirm(
|
||
`你要将${row.name}的状态切换为 【${status[newStatus.toString()]}】 吗?`,
|
||
`切换状态`,
|
||
);
|
||
await enabledUser(row.id);
|
||
return true;
|
||
} catch {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
function onEdit(row: UserApi.User) {
|
||
formDrawerApi.setData(row).open();
|
||
}
|
||
|
||
function onDelete(row: UserApi.User) {
|
||
const hideLoading = message.loading({
|
||
content: $t('ui.actionMessage.deleting', [row.name]),
|
||
duration: 0,
|
||
key: 'action_process_msg',
|
||
});
|
||
removeUser(row.id)
|
||
.then(() => {
|
||
message.success({
|
||
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
|
||
key: 'action_process_msg',
|
||
});
|
||
onRefresh();
|
||
})
|
||
.catch(() => {
|
||
hideLoading();
|
||
});
|
||
}
|
||
|
||
function onRefresh() {
|
||
gridApi.query();
|
||
}
|
||
|
||
function onCreate() {
|
||
formDrawerApi.setData({}).open();
|
||
}
|
||
</script>
|
||
<template>
|
||
<Page auto-content-height>
|
||
<FormDrawer />
|
||
<Grid table-title="用户列表">
|
||
<template #toolbar-tools>
|
||
<Button type="primary" @click="onCreate">
|
||
<Plus class="size-5" />
|
||
{{ $t('ui.actionTitle.create', ['用户']) }}
|
||
</Button>
|
||
</template>
|
||
<template #createTime="{ row }">
|
||
{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm') }}
|
||
</template>
|
||
</Grid>
|
||
</Page>
|
||
</template>
|