reactor:【system 系统管理】tenant 进一步统一代码风格

pull/210/head
YunaiV 2025-09-06 20:46:33 +08:00
parent 35bd5adf45
commit 942c4ef389
6 changed files with 112 additions and 146 deletions

View File

@ -89,10 +89,10 @@ export function useFormSchema(): VbenFormSchema[] {
{ {
label: '绑定域名', label: '绑定域名',
fieldName: 'websites', fieldName: 'websites',
component: 'Textarea', component: 'Select',
componentProps: { componentProps: {
placeholder: '请输入绑定域名,多个域名请换行分隔', placeholder: '请输入绑定域名',
rows: 3, mode: 'tags',
allowClear: true, allowClear: true,
}, },
}, },
@ -118,6 +118,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '租户名', label: '租户名',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入租户名',
allowClear: true, allowClear: true,
}, },
}, },
@ -126,6 +127,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '联系人', label: '联系人',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入联系人',
allowClear: true, allowClear: true,
}, },
}, },
@ -134,6 +136,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '联系手机', label: '联系手机',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入联系手机',
allowClear: true, allowClear: true,
}, },
}, },
@ -142,6 +145,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '状态', label: '状态',
component: 'Select', component: 'Select',
componentProps: { componentProps: {
placeholder: '请选择状态',
allowClear: true, allowClear: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'), options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
}, },
@ -167,14 +171,17 @@ export function useGridColumns(
{ {
field: 'id', field: 'id',
title: '租户编号', title: '租户编号',
minWidth: 100,
}, },
{ {
field: 'name', field: 'name',
title: '租户名', title: '租户名',
minWidth: 180,
}, },
{ {
field: 'packageId', field: 'packageId',
title: '租户套餐', title: '租户套餐',
minWidth: 180,
formatter: (row: { cellValue: number }) => { formatter: (row: { cellValue: number }) => {
return getPackageName?.(row.cellValue) || '-'; return getPackageName?.(row.cellValue) || '-';
}, },
@ -182,27 +189,33 @@ export function useGridColumns(
{ {
field: 'contactName', field: 'contactName',
title: '联系人', title: '联系人',
minWidth: 100,
}, },
{ {
field: 'contactMobile', field: 'contactMobile',
title: '联系手机', title: '联系手机',
minWidth: 180,
}, },
{ {
field: 'accountCount', field: 'accountCount',
title: '账号额度', title: '账号额度',
minWidth: 100,
}, },
{ {
field: 'expireTime', field: 'expireTime',
title: '过期时间', title: '过期时间',
minWidth: 180,
formatter: 'formatDateTime', formatter: 'formatDateTime',
}, },
{ {
field: 'websites', field: 'websites',
title: '绑定域名', title: '绑定域名',
minWidth: 180,
}, },
{ {
field: 'status', field: 'status',
title: '租户状态', title: '租户状态',
minWidth: 100,
cellRender: { cellRender: {
name: 'CellDict', name: 'CellDict',
props: { type: DICT_TYPE.COMMON_STATUS }, props: { type: DICT_TYPE.COMMON_STATUS },
@ -211,6 +224,7 @@ export function useGridColumns(
{ {
field: 'createTime', field: 'createTime',
title: '创建时间', title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime', formatter: 'formatDateTime',
}, },
{ {

View File

@ -5,7 +5,7 @@ import type { SystemTenantPackageApi } from '#/api/system/tenant-package';
import { onMounted, ref } from 'vue'; import { onMounted, ref } from 'vue';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui'; import { confirm, DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart, isEmpty } from '@vben/utils'; import { downloadFileFromBlobPart, isEmpty } from '@vben/utils';
import { message } from 'ant-design-vue'; import { message } from 'ant-design-vue';
@ -39,7 +39,7 @@ const [FormModal, formModalApi] = useVbenModal({
}); });
/** 刷新表格 */ /** 刷新表格 */
function onRefresh() { function handleRefresh() {
gridApi.query(); gridApi.query();
} }
@ -63,15 +63,29 @@ function handleEdit(row: SystemTenantApi.Tenant) {
async function handleDelete(row: SystemTenantApi.Tenant) { async function handleDelete(row: SystemTenantApi.Tenant) {
const hideLoading = message.loading({ const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.name]), content: $t('ui.actionMessage.deleting', [row.name]),
key: 'action_key_msg', duration: 0,
}); });
try { try {
await deleteTenant(row.id as number); await deleteTenant(row.id as number);
message.success({ message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
content: $t('ui.actionMessage.deleteSuccess', [row.name]), handleRefresh();
key: 'action_key_msg', } finally {
}); hideLoading();
onRefresh(); }
}
/** 批量删除租户 */
async function handleDeleteBatch() {
await confirm($t('ui.actionMessage.deleteBatchConfirm'));
const hideLoading = message.loading({
content: $t('ui.actionMessage.deletingBatch'),
duration: 0,
});
try {
await deleteTenantList(checkedIds.value);
checkedIds.value = [];
message.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally { } finally {
hideLoading(); hideLoading();
} }
@ -86,23 +100,6 @@ function handleRowCheckboxChange({
checkedIds.value = records.map((item) => item.id!); checkedIds.value = records.map((item) => item.id!);
} }
/** 批量删除租户 */
async function handleDeleteBatch() {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting'),
duration: 0,
key: 'action_process_msg',
});
try {
await deleteTenantList(checkedIds.value);
checkedIds.value = [];
message.success($t('ui.actionMessage.deleteSuccess'));
onRefresh();
} finally {
hideLoading();
}
}
const [Grid, gridApi] = useVbenVxeGrid({ const [Grid, gridApi] = useVbenVxeGrid({
formOptions: { formOptions: {
schema: useGridFormSchema(), schema: useGridFormSchema(),
@ -148,7 +145,7 @@ onMounted(async () => {
<DocAlert title="SaaS 多租户" url="https://doc.iocoder.cn/saas-tenant/" /> <DocAlert title="SaaS 多租户" url="https://doc.iocoder.cn/saas-tenant/" />
</template> </template>
<FormModal @success="onRefresh" /> <FormModal @success="handleRefresh" />
<Grid table-title=""> <Grid table-title="">
<template #toolbar-tools> <template #toolbar-tools>
<TableAction <TableAction
@ -168,11 +165,11 @@ onMounted(async () => {
onClick: handleExport, onClick: handleExport,
}, },
{ {
label: '批量删除', label: $t('ui.actionTitle.deleteBatch'),
type: 'primary', type: 'primary',
danger: true, danger: true,
disabled: isEmpty(checkedIds),
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,
disabled: isEmpty(checkedIds),
auth: ['system:tenant:delete'], auth: ['system:tenant:delete'],
onClick: handleDeleteBatch, onClick: handleDeleteBatch,
}, },

View File

@ -27,7 +27,7 @@ const [Form, formApi] = useVbenForm({
class: 'w-full', class: 'w-full',
}, },
}, },
wrapperClass: 'grid-cols-2', wrapperClass: 'grid-cols-1',
layout: 'horizontal', layout: 'horizontal',
schema: useFormSchema(), schema: useFormSchema(),
showDefaultActions: false, showDefaultActions: false,
@ -41,16 +41,7 @@ const [Modal, modalApi] = useVbenModal({
} }
modalApi.lock(); modalApi.lock();
// //
const formValues = (await formApi.getValues()) as SystemTenantApi.Tenant & { const data = (await formApi.getValues()) as SystemTenantApi.Tenant;
websites: string;
};
//
const data: SystemTenantApi.Tenant = {
...formValues,
websites: formValues.websites
? formValues.websites.split('\n').filter((item) => item.trim())
: [],
};
try { try {
await (formData.value ? updateTenant(data) : createTenant(data)); await (formData.value ? updateTenant(data) : createTenant(data));
// //
@ -74,15 +65,8 @@ const [Modal, modalApi] = useVbenModal({
modalApi.lock(); modalApi.lock();
try { try {
formData.value = await getTenant(data.id); formData.value = await getTenant(data.id);
//
const formValues = {
...formData.value,
websites: Array.isArray(formData.value.websites)
? formData.value.websites.join('\n')
: formData.value.websites || '',
};
// values // values
await formApi.setValues(formValues); await formApi.setValues(formData.value);
} finally { } finally {
modalApi.unlock(); modalApi.unlock();
} }
@ -90,7 +74,7 @@ const [Modal, modalApi] = useVbenModal({
}); });
</script> </script>
<template> <template>
<Modal :title="getTitle" class="w-1/2"> <Modal :title="getTitle">
<Form class="mx-4" /> <Form class="mx-4" />
</Modal> </Modal>
</template> </template>

View File

@ -1,8 +1,6 @@
import type { VbenFormSchema } from '#/adapter/form'; import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table'; import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { SystemTenantApi } from '#/api/system/tenant';
import { useAccess } from '@vben/access';
import { CommonStatusEnum, DICT_TYPE } from '@vben/constants'; import { CommonStatusEnum, DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks'; import { getDictOptions } from '@vben/hooks';
@ -10,8 +8,6 @@ import { z } from '#/adapter/form';
import { getTenantPackageList } from '#/api/system/tenant-package'; import { getTenantPackageList } from '#/api/system/tenant-package';
import { getRangePickerDefaultProps } from '#/utils'; import { getRangePickerDefaultProps } from '#/utils';
const { hasAccessByCodes } = useAccess();
/** 新增/修改的表单 */ /** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] { export function useFormSchema(): VbenFormSchema[] {
return [ return [
@ -93,11 +89,9 @@ export function useFormSchema(): VbenFormSchema[] {
{ {
label: '绑定域名', label: '绑定域名',
fieldName: 'websites', fieldName: 'websites',
component: 'Textarea', component: 'InputTag',
componentProps: { componentProps: {
placeholder: '请输入绑定域名,多个域名请换行分隔', placeholder: '请输入绑定域名',
rows: 3,
clearable: true,
}, },
}, },
{ {
@ -122,6 +116,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '租户名', label: '租户名',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入租户名',
clearable: true, clearable: true,
}, },
}, },
@ -130,6 +125,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '联系人', label: '联系人',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入联系人',
clearable: true, clearable: true,
}, },
}, },
@ -138,6 +134,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '联系手机', label: '联系手机',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入联系手机',
clearable: true, clearable: true,
}, },
}, },
@ -146,6 +143,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '状态', label: '状态',
component: 'Select', component: 'Select',
componentProps: { componentProps: {
placeholder: '请选择状态',
clearable: true, clearable: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'), options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
}, },
@ -163,15 +161,11 @@ export function useGridFormSchema(): VbenFormSchema[] {
} }
/** 列表的字段 */ /** 列表的字段 */
export function useGridColumns<T = SystemTenantApi.Tenant>( export function useGridColumns(
onActionClick: OnActionClickFn<T>,
getPackageName?: (packageId: number) => string | undefined, getPackageName?: (packageId: number) => string | undefined,
): VxeTableGridOptions['columns'] { ): VxeTableGridOptions['columns'] {
return [ return [
{ { type: 'checkbox', width: 40 },
type: 'checkbox',
width: 40,
},
{ {
field: 'id', field: 'id',
title: '租户编号', title: '租户编号',
@ -232,29 +226,10 @@ export function useGridColumns<T = SystemTenantApi.Tenant>(
formatter: 'formatDateTime', formatter: 'formatDateTime',
}, },
{ {
field: 'operation',
title: '操作', title: '操作',
minWidth: 130, width: 130,
align: 'center',
fixed: 'right', fixed: 'right',
cellRender: { slots: { default: 'actions' },
attrs: {
nameField: 'name',
nameTitle: '租户',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'edit',
show: hasAccessByCodes(['system:tenant:update']),
},
{
code: 'delete',
show: hasAccessByCodes(['system:tenant:delete']),
},
],
},
}, },
]; ];
} }

View File

@ -1,8 +1,5 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { import type { VxeTableGridOptions } from '#/adapter/vxe-table';
OnActionClickParams,
VxeTableGridOptions,
} from '#/adapter/vxe-table';
import type { SystemTenantApi } from '#/api/system/tenant'; import type { SystemTenantApi } from '#/api/system/tenant';
import type { SystemTenantPackageApi } from '#/api/system/tenant-package'; import type { SystemTenantPackageApi } from '#/api/system/tenant-package';
@ -42,47 +39,54 @@ const [FormModal, formModalApi] = useVbenModal({
}); });
/** 刷新表格 */ /** 刷新表格 */
function onRefresh() { function handleRefresh() {
gridApi.query(); gridApi.query();
} }
/** 导出表格 */ /** 导出表格 */
async function onExport() { async function handleExport() {
const data = await exportTenant(await gridApi.formApi.getValues()); const data = await exportTenant(await gridApi.formApi.getValues());
downloadFileFromBlobPart({ fileName: '租户.xls', source: data }); downloadFileFromBlobPart({ fileName: '租户.xls', source: data });
} }
/** 创建租户 */ /** 创建租户 */
function onCreate() { function handleCreate() {
formModalApi.setData(null).open(); formModalApi.setData(null).open();
} }
/** 编辑租户 */ /** 编辑租户 */
function onEdit(row: SystemTenantApi.Tenant) { function handleEdit(row: SystemTenantApi.Tenant) {
formModalApi.setData(row).open(); formModalApi.setData(row).open();
} }
/** 删除租户 */ /** 删除租户 */
async function onDelete(row: SystemTenantApi.Tenant) { async function handleDelete(row: SystemTenantApi.Tenant) {
const loadingInstance = ElLoading.service({ const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deleting', [row.name]), text: $t('ui.actionMessage.deleting', [row.name]),
}); });
try { try {
await deleteTenant(row.id as number); await deleteTenant(row.id as number);
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name])); ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
onRefresh(); handleRefresh();
} finally { } finally {
loadingInstance.close(); loadingInstance.close();
} }
} }
/** 批量删除租户 */ /** 批量删除租户 */
async function onDeleteBatch() { async function handleDeleteBatch() {
await confirm('确定要批量删除该租户吗?'); await confirm($t('ui.actionMessage.deleteBatchConfirm'));
await deleteTenantList(checkedIds.value); const loadingInstance = ElLoading.service({
checkedIds.value = []; text: $t('ui.actionMessage.deletingBatch'),
ElMessage.success($t('ui.actionMessage.deleteSuccess')); });
onRefresh(); try {
await deleteTenantList(checkedIds.value);
checkedIds.value = [];
ElMessage.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally {
loadingInstance.close();
}
} }
const checkedIds = ref<number[]>([]); const checkedIds = ref<number[]>([]);
@ -94,29 +98,12 @@ function handleRowCheckboxChange({
checkedIds.value = records.map((item) => item.id!); checkedIds.value = records.map((item) => item.id!);
} }
/** 表格操作按钮的回调函数 */
function onActionClick({
code,
row,
}: OnActionClickParams<SystemTenantApi.Tenant>) {
switch (code) {
case 'delete': {
onDelete(row);
break;
}
case 'edit': {
onEdit(row);
break;
}
}
}
const [Grid, gridApi] = useVbenVxeGrid({ const [Grid, gridApi] = useVbenVxeGrid({
formOptions: { formOptions: {
schema: useGridFormSchema(), schema: useGridFormSchema(),
}, },
gridOptions: { gridOptions: {
columns: useGridColumns(onActionClick, getPackageName), columns: useGridColumns(getPackageName),
height: 'auto', height: 'auto',
keepSource: true, keepSource: true,
proxyConfig: { proxyConfig: {
@ -132,6 +119,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
}, },
rowConfig: { rowConfig: {
keyField: 'id', keyField: 'id',
isHover: true,
}, },
toolbarConfig: { toolbarConfig: {
refresh: true, refresh: true,
@ -155,7 +143,7 @@ onMounted(async () => {
<DocAlert title="SaaS 多租户" url="https://doc.iocoder.cn/saas-tenant/" /> <DocAlert title="SaaS 多租户" url="https://doc.iocoder.cn/saas-tenant/" />
</template> </template>
<FormModal @success="onRefresh" /> <FormModal @success="handleRefresh" />
<Grid table-title=""> <Grid table-title="">
<template #toolbar-tools> <template #toolbar-tools>
<TableAction <TableAction
@ -165,14 +153,14 @@ onMounted(async () => {
type: 'primary', type: 'primary',
icon: ACTION_ICON.ADD, icon: ACTION_ICON.ADD,
auth: ['system:tenant:create'], auth: ['system:tenant:create'],
onClick: onCreate, onClick: handleCreate,
}, },
{ {
label: $t('ui.actionTitle.export'), label: $t('ui.actionTitle.export'),
type: 'primary', type: 'primary',
icon: ACTION_ICON.DOWNLOAD, icon: ACTION_ICON.DOWNLOAD,
auth: ['system:tenant:export'], auth: ['system:tenant:export'],
onClick: onExport, onClick: handleExport,
}, },
{ {
label: $t('ui.actionTitle.deleteBatch'), label: $t('ui.actionTitle.deleteBatch'),
@ -180,7 +168,32 @@ onMounted(async () => {
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,
disabled: isEmpty(checkedIds), disabled: isEmpty(checkedIds),
auth: ['system:tenant:delete'], auth: ['system:tenant:delete'],
onClick: onDeleteBatch, onClick: handleDeleteBatch,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: $t('common.edit'),
type: 'primary',
link: true,
icon: ACTION_ICON.EDIT,
auth: ['system:tenant:update'],
onClick: handleEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'danger',
link: true,
icon: ACTION_ICON.DELETE,
auth: ['system:tenant:delete'],
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
confirm: handleDelete.bind(null, row),
},
}, },
]" ]"
/> />

View File

@ -26,9 +26,8 @@ const [Form, formApi] = useVbenForm({
componentProps: { componentProps: {
class: 'w-full', class: 'w-full',
}, },
formItemClass: 'col-span-2',
labelWidth: 80,
}, },
wrapperClass: 'grid-cols-1',
layout: 'horizontal', layout: 'horizontal',
schema: useFormSchema(), schema: useFormSchema(),
showDefaultActions: false, showDefaultActions: false,
@ -42,16 +41,7 @@ const [Modal, modalApi] = useVbenModal({
} }
modalApi.lock(); modalApi.lock();
// //
const formValues = (await formApi.getValues()) as SystemTenantApi.Tenant & { const data = (await formApi.getValues()) as SystemTenantApi.Tenant;
websites: string;
};
//
const data: SystemTenantApi.Tenant = {
...formValues,
websites: formValues.websites
? formValues.websites.split('\n').filter((item) => item.trim())
: [],
};
try { try {
await (formData.value ? updateTenant(data) : createTenant(data)); await (formData.value ? updateTenant(data) : createTenant(data));
// //
@ -75,15 +65,8 @@ const [Modal, modalApi] = useVbenModal({
modalApi.lock(); modalApi.lock();
try { try {
formData.value = await getTenant(data.id); formData.value = await getTenant(data.id);
//
const formValues = {
...formData.value,
websites: Array.isArray(formData.value.websites)
? formData.value.websites.join('\n')
: formData.value.websites || '',
};
// values // values
await formApi.setValues(formValues); await formApi.setValues(formData.value);
} finally { } finally {
modalApi.unlock(); modalApi.unlock();
} }
@ -91,7 +74,7 @@ const [Modal, modalApi] = useVbenModal({
}); });
</script> </script>
<template> <template>
<Modal :title="getTitle" class="w-1/2"> <Modal :title="getTitle">
<Form class="mx-4" /> <Form class="mx-4" />
</Modal> </Modal>
</template> </template>