This commit is contained in:
xingyu4j
2025-09-23 14:52:15 +08:00
50 changed files with 185 additions and 232 deletions

View File

@@ -366,8 +366,8 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '表名称', label: '表名称',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入表名称',
allowClear: true, allowClear: true,
placeholder: '请输入表名称',
}, },
}, },
{ {
@@ -375,8 +375,8 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '表描述', label: '表描述',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入表描述',
allowClear: true, allowClear: true,
placeholder: '请输入表描述',
}, },
}, },
{ {

View File

@@ -154,8 +154,8 @@ getDetail();
</div> </div>
<div class="mt-4 flex justify-end space-x-2"> <div class="mt-4 flex justify-end space-x-2">
<Button v-show="currentStep > 0" @click="prevStep">上一步</Button> <Button :disabled="currentStep === 0" @click="prevStep">上一步</Button>
<Button v-show="currentStep < steps.length - 1" @click="nextStep"> <Button :disabled="currentStep === steps.length - 1" @click="nextStep">
下一步 下一步
</Button> </Button>
<Button type="primary" :loading="loading" @click="submitForm"> <Button type="primary" :loading="loading" @click="submitForm">

View File

@@ -27,7 +27,7 @@ const [FormModal, formModalApi] = useVbenModal({
}); });
/** 刷新表格 */ /** 刷新表格 */
function onRefresh() { function handleRefresh() {
gridApi.query(); gridApi.query();
} }
@@ -56,7 +56,7 @@ async function handleDelete(row: InfraConfigApi.Config) {
try { try {
await deleteConfig(row.id as number); await deleteConfig(row.id as number);
message.success($t('ui.actionMessage.deleteSuccess', [row.name])); message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
onRefresh(); handleRefresh();
} finally { } finally {
hideLoading(); hideLoading();
} }
@@ -73,7 +73,7 @@ async function handleDeleteBatch() {
await deleteConfigList(checkedIds.value); await deleteConfigList(checkedIds.value);
checkedIds.value = []; checkedIds.value = [];
message.success($t('ui.actionMessage.deleteSuccess')); message.success($t('ui.actionMessage.deleteSuccess'));
onRefresh(); handleRefresh();
} finally { } finally {
hideLoading(); hideLoading();
} }
@@ -125,7 +125,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
<template> <template>
<Page auto-content-height> <Page auto-content-height>
<FormModal @success="onRefresh" /> <FormModal @success="handleRefresh" />
<Grid table-title="参数列表"> <Grid table-title="参数列表">
<template #toolbar-tools> <template #toolbar-tools>
<TableAction <TableAction

View File

@@ -55,26 +55,31 @@ export function useFormSchema(): VbenFormSchema[] {
/** 列表的字段 */ /** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions['columns'] { export function useGridColumns(): VxeTableGridOptions['columns'] {
return [ return [
{ type: 'checkbox', width: 50 }, { type: 'checkbox', width: 40 },
{ {
field: 'id', field: 'id',
title: '主键编号', title: '主键编号',
minWidth: 100,
}, },
{ {
field: 'name', field: 'name',
title: '数据源名称', title: '数据源名称',
minWidth: 150,
}, },
{ {
field: 'url', field: 'url',
title: '数据源连接', title: '数据源连接',
minWidth: 300,
}, },
{ {
field: 'username', field: 'username',
title: '用户名', title: '用户名',
minWidth: 120,
}, },
{ {
field: 'createTime', field: 'createTime',
title: '创建时间', title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime', formatter: 'formatDateTime',
}, },
{ {

View File

@@ -2,7 +2,7 @@
import type { VxeTableGridOptions } from '#/adapter/vxe-table'; import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { InfraDataSourceConfigApi } from '#/api/infra/data-source-config'; import type { InfraDataSourceConfigApi } from '#/api/infra/data-source-config';
import { onMounted, ref } from 'vue'; import { ref } from 'vue';
import { confirm, Page, useVbenModal } from '@vben/common-ui'; import { confirm, Page, useVbenModal } from '@vben/common-ui';
import { isEmpty } from '@vben/utils'; import { isEmpty } from '@vben/utils';
@@ -25,6 +25,11 @@ const [FormModal, formModalApi] = useVbenModal({
destroyOnClose: true, destroyOnClose: true,
}); });
/** 刷新表格 */
function handleRefresh() {
gridApi.query();
}
/** 创建数据源 */ /** 创建数据源 */
function handleCreate() { function handleCreate() {
formModalApi.setData(null).open(); formModalApi.setData(null).open();
@@ -43,10 +48,8 @@ async function handleDelete(row: InfraDataSourceConfigApi.DataSourceConfig) {
}); });
try { try {
await deleteDataSourceConfig(row.id as number); await deleteDataSourceConfig(row.id as number);
message.success({ message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
content: $t('ui.actionMessage.deleteSuccess', [row.name]), handleRefresh();
});
await handleLoadData();
} finally { } finally {
hideLoading(); hideLoading();
} }
@@ -63,7 +66,7 @@ async function handleDeleteBatch() {
await deleteDataSourceConfigList(checkedIds.value); await deleteDataSourceConfigList(checkedIds.value);
checkedIds.value = []; checkedIds.value = [];
message.success($t('ui.actionMessage.deleteSuccess')); message.success($t('ui.actionMessage.deleteSuccess'));
await handleLoadData(); handleRefresh();
} finally { } finally {
hideLoading(); hideLoading();
} }
@@ -101,21 +104,11 @@ const [Grid, gridApi] = useVbenVxeGrid({
checkboxChange: handleRowCheckboxChange, checkboxChange: handleRowCheckboxChange,
}, },
}); });
/** 加载数据 */
async function handleLoadData() {
await gridApi.query();
}
/** 初始化 */
onMounted(() => {
handleLoadData();
});
</script> </script>
<template> <template>
<Page auto-content-height> <Page auto-content-height>
<FormModal @success="handleLoadData" /> <FormModal @success="handleRefresh" />
<Grid table-title="数据源列表"> <Grid table-title="数据源列表">
<template #toolbar-tools> <template #toolbar-tools>
<TableAction <TableAction

View File

@@ -83,7 +83,7 @@ const [Modal, modalApi] = useVbenModal({
</script> </script>
<template> <template>
<Modal class="w-2/5" :title="getTitle"> <Modal :title="getTitle">
<Form class="mx-4" /> <Form class="mx-4" />
</Modal> </Modal>
</template> </template>

View File

@@ -159,7 +159,7 @@ onMounted(async () => {
onClick: handleExpand, onClick: handleExpand,
}, },
{ {
label: '批量删除', label: $t('ui.actionTitle.deleteBatch'),
type: 'primary', type: 'primary',
danger: true, danger: true,
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,

View File

@@ -292,9 +292,7 @@ export function useDataGridFormSchema(): VbenFormSchema[] {
]; ];
} }
/** /** 字典数据表格列 */
* 字典数据表格列
*/
export function useDataGridColumns(): VxeTableGridOptions['columns'] { export function useDataGridColumns(): VxeTableGridOptions['columns'] {
return [ return [
{ type: 'checkbox', width: 40 }, { type: 'checkbox', width: 40 },

View File

@@ -1,8 +1,5 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { import type { VxeTableGridOptions } from '#/adapter/vxe-table';
VxeGridListeners,
VxeTableGridOptions,
} from '#/adapter/vxe-table';
import type { SystemDictTypeApi } from '#/api/system/dict/type'; import type { SystemDictTypeApi } from '#/api/system/dict/type';
import { ref } from 'vue'; import { ref } from 'vue';

View File

@@ -44,6 +44,7 @@ function handleEdit(row: SystemMailAccountApi.MailAccount) {
async function handleDelete(row: SystemMailAccountApi.MailAccount) { async function handleDelete(row: SystemMailAccountApi.MailAccount) {
const hideLoading = message.loading({ const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.mail]), content: $t('ui.actionMessage.deleting', [row.mail]),
duration: 0,
}); });
try { try {
await deleteMailAccount(row.id as number); await deleteMailAccount(row.id as number);

View File

@@ -119,28 +119,31 @@ export function useSendMailFormSchema(): VbenFormSchema[] {
{ {
fieldName: 'toMails', fieldName: 'toMails',
label: '收件邮箱', label: '收件邮箱',
component: 'Textarea', component: 'Select',
componentProps: { componentProps: {
placeholder: '请输入收件邮箱,每行一个邮箱地址', mode: 'tags',
rows: 3, allowClear: true,
placeholder: '请输入收件邮箱,按 Enter 添加',
}, },
}, },
{ {
fieldName: 'ccMails', fieldName: 'ccMails',
label: '抄送邮箱', label: '抄送邮箱',
component: 'Textarea', component: 'Select',
componentProps: { componentProps: {
placeholder: '请输入抄送邮箱,每行一个邮箱地址', mode: 'tags',
rows: 2, allowClear: true,
placeholder: '请输入抄送邮箱,按 Enter 添加',
}, },
}, },
{ {
fieldName: 'bccMails', fieldName: 'bccMails',
label: '密送邮箱', label: '密送邮箱',
component: 'Textarea', component: 'Select',
componentProps: { componentProps: {
placeholder: '请输入密送邮箱,每行一个邮箱地址', mode: 'tags',
rows: 2, allowClear: true,
placeholder: '请输入密送邮箱,按 Enter 添加',
}, },
}, },
]; ];

View File

@@ -42,17 +42,10 @@ const [Modal, modalApi] = useVbenModal({
paramsObj[param] = values[`param_${param}`]; paramsObj[param] = values[`param_${param}`];
}); });
} }
const parseEmails = (text: string): string[] => {
if (!text) return [];
return text
.split('\n')
.map((email) => email.trim())
.filter((email) => email.length > 0);
};
const data: SystemMailTemplateApi.MailSendReqVO = { const data: SystemMailTemplateApi.MailSendReqVO = {
toMails: parseEmails(values.toMails || ''), toMails: values.toMails,
ccMails: parseEmails(values.ccMails || ''), ccMails: values.ccMails,
bccMails: parseEmails(values.bccMails || ''), bccMails: values.bccMails,
templateCode: formData.value?.code || '', templateCode: formData.value?.code || '',
templateParams: paramsObj, templateParams: paramsObj,
}; };
@@ -64,8 +57,6 @@ const [Modal, modalApi] = useVbenModal({
await modalApi.close(); await modalApi.close();
emit('success'); emit('success');
message.success('邮件发送成功'); message.success('邮件发送成功');
} catch (error) {
console.error('发送邮件失败', error);
} finally { } finally {
modalApi.unlock(); modalApi.unlock();
} }

View File

@@ -21,8 +21,8 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'Select', component: 'Select',
componentProps: { componentProps: {
options: getDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING, 'boolean'), options: getDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING, 'boolean'),
placeholder: '请选择是否已读',
allowClear: true, allowClear: true,
placeholder: '请选择是否已读',
}, },
}, },
{ {

View File

@@ -185,7 +185,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
{ {
label: '测试', label: '测试',
type: 'link', type: 'link',
icon: ACTION_ICON.ADD, icon: ACTION_ICON.VIEW,
auth: ['system:sms-template:send-sms'], auth: ['system:sms-template:send-sms'],
onClick: handleSend.bind(null, row), onClick: handleSend.bind(null, row),
}, },

View File

@@ -47,7 +47,7 @@ async function handleDelete(row: SystemSocialClientApi.SocialClient) {
duration: 0, duration: 0,
}); });
try { try {
await deleteSocialClient(row.id as number); await deleteSocialClient(row.id!);
message.success($t('ui.actionMessage.deleteSuccess', [row.name])); message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
handleRefresh(); handleRefresh();
} finally { } finally {

View File

@@ -8,9 +8,8 @@ import { h } from 'vue';
import { DICT_TYPE } from '@vben/constants'; import { DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks'; import { getDictOptions } from '@vben/hooks';
import { getRangePickerDefaultProps } from '#/utils';
import { DictTag } from '#/components/dict-tag'; import { DictTag } from '#/components/dict-tag';
import { getRangePickerDefaultProps } from '#/utils';
/** 列表的搜索表单 */ /** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] { export function useGridFormSchema(): VbenFormSchema[] {
@@ -126,9 +125,9 @@ export function useDetailSchema(): DescriptionItemSchema[] {
{ {
field: 'avatar', field: 'avatar',
label: '用户头像', label: '用户头像',
// TODO @芋艿:使用 antd 的 Image 组件
content: (data: SystemSocialUserApi.SocialUser) => { content: (data: SystemSocialUserApi.SocialUser) => {
if (data?.avatar) { if (data?.avatar) {
// TODO @芋艿:使用 antd 的 Image 组件
return h('img', { return h('img', {
src: data.avatar, src: data.avatar,
style: 'width: 30px; height: 30px; cursor: pointer;', style: 'width: 30px; height: 30px; cursor: pointer;',

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { InfraApiAccessLogApi } from '#/api/infra/api-access-log'; import type { InfraApiAccessLogApi } from '#/api/infra/api-access-log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 110,
title: '', title: '',
extra: '', extra: '',
labelWidth: 110,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { InfraApiErrorLogApi } from '#/api/infra/api-error-log'; import type { InfraApiErrorLogApi } from '#/api/infra/api-error-log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 110,
title: '', title: '',
extra: '', extra: '',
labelWidth: 110,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -87,6 +87,7 @@ function showTemplate() {
formData.value = makeTemplate(); formData.value = makeTemplate();
} }
/** 生成组件 */
function makeTemplate() { function makeTemplate() {
const rule = designer.value.getRule(); const rule = designer.value.getRule();
const opt = designer.value.getOption(); const opt = designer.value.getOption();

View File

@@ -42,8 +42,8 @@ export function useImportTableFormSchema(): VbenFormSchema[] {
label: '表名称', label: '表名称',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入表名称',
clearable: true, clearable: true,
placeholder: '请输入表名称',
}, },
}, },
{ {
@@ -51,8 +51,8 @@ export function useImportTableFormSchema(): VbenFormSchema[] {
label: '表描述', label: '表描述',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入表描述',
clearable: true, clearable: true,
placeholder: '请输入表描述',
}, },
}, },
]; ];
@@ -366,8 +366,8 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '表名称', label: '表名称',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入表名称',
clearable: true, clearable: true,
placeholder: '请输入表名称',
}, },
}, },
{ {
@@ -375,8 +375,8 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '表描述', label: '表描述',
component: 'Input', component: 'Input',
componentProps: { componentProps: {
placeholder: '请输入表描述',
clearable: true, clearable: true,
placeholder: '请输入表描述',
}, },
}, },
{ {

View File

@@ -151,8 +151,13 @@ getDetail();
</div> </div>
<div class="mt-4 flex justify-end space-x-2"> <div class="mt-4 flex justify-end space-x-2">
<ElButton v-show="currentStep > 0" @click="prevStep">上一步</ElButton> <ElButton :disabled="currentStep === 0" @click="prevStep">
<ElButton v-show="currentStep < steps.length - 1" @click="nextStep"> 上一步
</ElButton>
<ElButton
:disabled="currentStep === steps.length - 1"
@click="nextStep"
>
下一步 下一步
</ElButton> </ElButton>
<ElButton type="primary" :loading="loading" @click="submitForm"> <ElButton type="primary" :loading="loading" @click="submitForm">

View File

@@ -176,6 +176,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
}); });
/** 获取数据源配置列表 */ /** 获取数据源配置列表 */
// TODO @芋艿:这种场景的最佳实践;
async function initDataSourceConfig() { async function initDataSourceConfig() {
try { try {
dataSourceConfigList.value = await getDataSourceConfigList(); dataSourceConfigList.value = await getDataSourceConfigList();

View File

@@ -1,10 +1,5 @@
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 { InfraDataSourceConfigApi } from '#/api/infra/data-source-config';
import { useAccess } from '@vben/access';
const { hasAccessByCodes } = useAccess();
/** 新增/修改的表单 */ /** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] { export function useFormSchema(): VbenFormSchema[] {
@@ -58,9 +53,7 @@ export function useFormSchema(): VbenFormSchema[] {
} }
/** 列表的字段 */ /** 列表的字段 */
export function useGridColumns<T = InfraDataSourceConfigApi.DataSourceConfig>( export function useGridColumns(): VxeTableGridOptions['columns'] {
onActionClick: OnActionClickFn<T>,
): VxeTableGridOptions['columns'] {
return [ return [
{ type: 'checkbox', width: 40 }, { type: 'checkbox', width: 40 },
{ {
@@ -90,31 +83,10 @@ export function useGridColumns<T = InfraDataSourceConfigApi.DataSourceConfig>(
formatter: 'formatDateTime', formatter: 'formatDateTime',
}, },
{ {
field: 'operation',
title: '操作', title: '操作',
minWidth: 130, width: 160,
align: 'center',
fixed: 'right', fixed: 'right',
cellRender: { slots: { default: 'actions' },
attrs: {
nameField: 'name',
nameTitle: '数据源',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'edit',
show: hasAccessByCodes(['infra:data-source-config:update']),
disabled: (row: any) => row.id === 0,
},
{
code: 'delete',
show: hasAccessByCodes(['infra:data-source-config:delete']),
disabled: (row: any) => row.id === 0,
},
],
},
}, },
]; ];
} }

View File

@@ -1,11 +1,8 @@
<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 { InfraDataSourceConfigApi } from '#/api/infra/data-source-config'; import type { InfraDataSourceConfigApi } from '#/api/infra/data-source-config';
import { onMounted, ref } from 'vue'; import { ref } from 'vue';
import { confirm, Page, useVbenModal } from '@vben/common-ui'; import { confirm, Page, useVbenModal } from '@vben/common-ui';
import { isEmpty } from '@vben/utils'; import { isEmpty } from '@vben/utils';
@@ -28,37 +25,49 @@ const [FormModal, formModalApi] = useVbenModal({
destroyOnClose: true, destroyOnClose: true,
}); });
/** 刷新表格 */
function handleRefresh() {
gridApi.query();
}
/** 创建数据源 */ /** 创建数据源 */
function onCreate() { function handleCreate() {
formModalApi.setData(null).open(); formModalApi.setData(null).open();
} }
/** 编辑数据源 */ /** 编辑数据源 */
function onEdit(row: InfraDataSourceConfigApi.DataSourceConfig) { function handleEdit(row: InfraDataSourceConfigApi.DataSourceConfig) {
formModalApi.setData(row).open(); formModalApi.setData(row).open();
} }
/** 删除数据源 */ /** 删除数据源 */
async function onDelete(row: InfraDataSourceConfigApi.DataSourceConfig) { async function handleDelete(row: InfraDataSourceConfigApi.DataSourceConfig) {
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 deleteDataSourceConfig(row.id as number); await deleteDataSourceConfig(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 deleteDataSourceConfigList(checkedIds.value); const loadingInstance = ElLoading.service({
checkedIds.value = []; text: $t('ui.actionMessage.deletingBatch'),
ElMessage.success($t('ui.actionMessage.deleteSuccess')); });
await onRefresh(); try {
await deleteDataSourceConfigList(checkedIds.value);
checkedIds.value = [];
ElMessage.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally {
loadingInstance.close();
}
} }
const checkedIds = ref<number[]>([]); const checkedIds = ref<number[]>([]);
@@ -70,30 +79,14 @@ function handleRowCheckboxChange({
checkedIds.value = records.map((item) => item.id!); checkedIds.value = records.map((item) => item.id!);
} }
/** 表格操作按钮的回调函数 */
function onActionClick({
code,
row,
}: OnActionClickParams<InfraDataSourceConfigApi.DataSourceConfig>) {
switch (code) {
case 'delete': {
onDelete(row);
break;
}
case 'edit': {
onEdit(row);
break;
}
}
}
const [Grid, gridApi] = useVbenVxeGrid({ const [Grid, gridApi] = useVbenVxeGrid({
gridOptions: { gridOptions: {
columns: useGridColumns(onActionClick), columns: useGridColumns(),
height: 'auto', height: 'auto',
keepSource: true, keepSource: true,
rowConfig: { rowConfig: {
keyField: 'id', keyField: 'id',
isHover: true,
}, },
pagerConfig: { pagerConfig: {
enabled: false, enabled: false,
@@ -109,26 +102,11 @@ const [Grid, gridApi] = useVbenVxeGrid({
checkboxChange: handleRowCheckboxChange, checkboxChange: handleRowCheckboxChange,
}, },
}); });
/** 加载数据 */
async function handleLoadData() {
await gridApi.query();
}
/** 刷新表格 */
async function onRefresh() {
await handleLoadData();
}
/** 初始化 */
onMounted(() => {
handleLoadData();
});
</script> </script>
<template> <template>
<Page auto-content-height> <Page auto-content-height>
<FormModal @success="onRefresh" /> <FormModal @success="handleRefresh" />
<Grid table-title="数据源列表"> <Grid table-title="数据源列表">
<template #toolbar-tools> <template #toolbar-tools>
<TableAction <TableAction
@@ -138,7 +116,7 @@ onMounted(() => {
type: 'primary', type: 'primary',
icon: ACTION_ICON.ADD, icon: ACTION_ICON.ADD,
auth: ['infra:data-source-config:create'], auth: ['infra:data-source-config:create'],
onClick: onCreate, onClick: handleCreate,
}, },
{ {
label: $t('ui.actionTitle.deleteBatch'), label: $t('ui.actionTitle.deleteBatch'),
@@ -146,7 +124,32 @@ onMounted(() => {
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,
disabled: isEmpty(checkedIds), disabled: isEmpty(checkedIds),
auth: ['infra:data-source-config:delete'], auth: ['infra:data-source-config:delete'],
onClick: onDeleteBatch, onClick: handleDeleteBatch,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: $t('common.edit'),
type: 'primary',
link: true,
icon: ACTION_ICON.EDIT,
auth: ['infra:data-source-config:update'],
onClick: handleEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'danger',
link: true,
icon: ACTION_ICON.DELETE,
auth: ['infra:data-source-config:delete'],
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
confirm: handleDelete.bind(null, row),
},
}, },
]" ]"
/> />

View File

@@ -150,21 +150,8 @@ const [Grid, gridApi] = useVbenVxeGrid({
</template> </template>
<template #file-content="{ row }"> <template #file-content="{ row }">
<ElImage v-if="row.type && row.type.includes('image')" :src="row.url" /> <ElImage v-if="row.type && row.type.includes('image')" :src="row.url" />
<ElButton <ElButton type="primary" link @click="() => openWindow(row.url!)">
v-else-if="row.type && row.type.includes('pdf')" {{ row.type && row.type.includes('pdf') ? '预览' : '下载' }}
type="primary"
link
@click="() => openWindow(row.url!)"
>
预览
</ElButton>
<ElButton
v-else
type="primary"
link
@click="() => openWindow(row.url!)"
>
下载
</ElButton> </ElButton>
</template> </template>
<template #actions="{ row }"> <template #actions="{ row }">

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { InfraJobLogApi } from '#/api/infra/job-log'; import type { InfraJobLogApi } from '#/api/infra/job-log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -17,9 +17,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 140,
title: '', title: '',
extra: '', extra: '',
labelWidth: 140,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { InfraJobApi } from '#/api/infra/job'; import type { InfraJobApi } from '#/api/infra/job';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -18,9 +18,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 140,
title: '', title: '',
extra: '', extra: '',
labelWidth: 140,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -76,7 +76,7 @@ const [Modal, modalApi] = useVbenModal({
</script> </script>
<template> <template>
<Modal :title="getTitle" class="w-[40%]"> <Modal :title="getTitle" class="w-2/5">
<Form class="mx-4" /> <Form class="mx-4" />
</Modal> </Modal>
</template> </template>

View File

@@ -157,7 +157,7 @@ onMounted(async () => {
onClick: handleExpand, onClick: handleExpand,
}, },
{ {
label: '批量删除', label: $t('ui.actionTitle.deleteBatch'),
type: 'danger', type: 'danger',
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,
auth: ['system:dept:delete'], auth: ['system:dept:delete'],

View File

@@ -151,9 +151,7 @@ export function useTypeGridColumns(): VxeTableGridOptions['columns'] {
// ============================== 字典数据 ============================== // ============================== 字典数据 ==============================
// TODO @芋艿:后续针对 antd增加 // TODO @芋艿:后续针对 antd增加
/** /** 颜色选项 */
* 颜色选项
*/
const colorOptions = [ const colorOptions = [
{ value: '', label: '无' }, { value: '', label: '无' },
{ value: 'processing', label: '主要' }, { value: 'processing', label: '主要' },

View File

@@ -55,7 +55,7 @@ async function handleDelete(row: SystemDictTypeApi.DictType) {
text: $t('ui.actionMessage.deleting', [row.name]), text: $t('ui.actionMessage.deleting', [row.name]),
}); });
try { try {
await deleteDictType(row.id as number); await deleteDictType(row.id!);
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name])); ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
handleRefresh(); handleRefresh();
} finally { } finally {

View File

@@ -3,11 +3,11 @@ import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { SystemLoginLogApi } from '#/api/system/login-log'; import type { SystemLoginLogApi } from '#/api/system/login-log';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui'; import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { $t } from '@vben/locales';
import { downloadFileFromBlobPart } from '@vben/utils'; import { downloadFileFromBlobPart } from '@vben/utils';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table'; import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import { exportLoginLog, getLoginLogPage } from '#/api/system/login-log'; import { exportLoginLog, getLoginLogPage } from '#/api/system/login-log';
import { $t } from '#/locales';
import { useGridColumns, useGridFormSchema } from './data'; import { useGridColumns, useGridFormSchema } from './data';
import Detail from './modules/detail.vue'; import Detail from './modules/detail.vue';

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { SystemLoginLogApi } from '#/api/system/login-log'; import type { SystemLoginLogApi } from '#/api/system/login-log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 110,
title: '', title: '',
extra: '', extra: '',
labelWidth: 110,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -135,8 +135,8 @@ const [Grid, gridApi] = useVbenVxeGrid({
label: $t('ui.actionTitle.deleteBatch'), label: $t('ui.actionTitle.deleteBatch'),
type: 'danger', type: 'danger',
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,
disabled: isEmpty(checkedIds),
auth: ['system:mail-account:delete'], auth: ['system:mail-account:delete'],
disabled: isEmpty(checkedIds),
onClick: handleDeleteBatch, onClick: handleDeleteBatch,
}, },
]" ]"

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { SystemMailLogApi } from '#/api/system/mail/log'; import type { SystemMailLogApi } from '#/api/system/mail/log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 2, column: 2,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 140,
title: '', title: '',
extra: '', extra: '',
labelWidth: 140,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -119,28 +119,25 @@ export function useSendMailFormSchema(): VbenFormSchema[] {
{ {
fieldName: 'toMails', fieldName: 'toMails',
label: '收件邮箱', label: '收件邮箱',
component: 'Textarea', component: 'InputTag',
componentProps: { componentProps: {
placeholder: '请输入收件邮箱,每行一个邮箱地址', placeholder: '请输入收件邮箱,按 Enter 添加',
rows: 3,
}, },
}, },
{ {
fieldName: 'ccMails', fieldName: 'ccMails',
label: '抄送邮箱', label: '抄送邮箱',
component: 'Textarea', component: 'InputTag',
componentProps: { componentProps: {
placeholder: '请输入抄送邮箱,每行一个邮箱地址', placeholder: '请输入抄送邮箱,按 Enter 添加',
rows: 2,
}, },
}, },
{ {
fieldName: 'bccMails', fieldName: 'bccMails',
label: '密送邮箱', label: '密送邮箱',
component: 'Textarea', component: 'InputTag',
componentProps: { componentProps: {
placeholder: '请输入密送邮箱,每行一个邮箱地址', placeholder: '请输入密送邮箱,按 Enter 添加',
rows: 2,
}, },
}, },
]; ];

View File

@@ -160,8 +160,8 @@ onMounted(async () => {
label: $t('ui.actionTitle.deleteBatch'), label: $t('ui.actionTitle.deleteBatch'),
type: 'danger', type: 'danger',
icon: ACTION_ICON.DELETE, icon: ACTION_ICON.DELETE,
disabled: isEmpty(checkedIds),
auth: ['system:mail-template:delete'], auth: ['system:mail-template:delete'],
disabled: isEmpty(checkedIds),
onClick: handleDeleteBatch, onClick: handleDeleteBatch,
}, },
]" ]"

View File

@@ -42,17 +42,10 @@ const [Modal, modalApi] = useVbenModal({
paramsObj[param] = values[`param_${param}`]; paramsObj[param] = values[`param_${param}`];
}); });
} }
const parseEmails = (text: string): string[] => {
if (!text) return [];
return text
.split('\n')
.map((email) => email.trim())
.filter((email) => email.length > 0);
};
const data: SystemMailTemplateApi.MailSendReqVO = { const data: SystemMailTemplateApi.MailSendReqVO = {
toMails: parseEmails(values.toMails || ''), toMails: values.toMails,
ccMails: parseEmails(values.ccMails || ''), ccMails: values.ccMails,
bccMails: parseEmails(values.bccMails || ''), bccMails: values.bccMails,
templateCode: formData.value?.code || '', templateCode: formData.value?.code || '',
templateParams: paramsObj, templateParams: paramsObj,
}; };
@@ -64,8 +57,6 @@ const [Modal, modalApi] = useVbenModal({
await modalApi.close(); await modalApi.close();
emit('success'); emit('success');
ElMessage.success('邮件发送成功'); ElMessage.success('邮件发送成功');
} catch (error) {
console.error('发送邮件失败', error);
} finally { } finally {
modalApi.unlock(); modalApi.unlock();
} }

View File

@@ -59,7 +59,6 @@ export function useFormSchema(): VbenFormSchema[] {
}, },
showSearch: true, showSearch: true,
treeDefaultExpandedKeys: [0], treeDefaultExpandedKeys: [0],
allowClear: true,
}, },
rules: 'selectRequired', rules: 'selectRequired',
renderComponentContent() { renderComponentContent() {
@@ -168,7 +167,6 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'AutoComplete', component: 'AutoComplete',
componentProps: { componentProps: {
clearable: true, clearable: true,
allowClear: true,
filterOption(input: string, option: { value: string }) { filterOption(input: string, option: { value: string }) {
return option.value.toLowerCase().includes(input.toLowerCase()); return option.value.toLowerCase().includes(input.toLowerCase());
}, },

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { SystemNotifyMessageApi } from '#/api/system/notify/message'; import type { SystemNotifyMessageApi } from '#/api/system/notify/message';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 140,
title: '', title: '',
extra: '', extra: '',
labelWidth: 140,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -30,8 +30,8 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '发送时间', label: '发送时间',
component: 'RangePicker', component: 'RangePicker',
componentProps: { componentProps: {
clearable: true,
...getRangePickerDefaultProps(), ...getRangePickerDefaultProps(),
clearable: true,
}, },
}, },
]; ];

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { SystemNotifyMessageApi } from '#/api/system/notify/message'; import type { SystemNotifyMessageApi } from '#/api/system/notify/message';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 140,
title: '', title: '',
extra: '', extra: '',
labelWidth: 140,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { SystemOperateLogApi } from '#/api/system/operate-log'; import type { SystemOperateLogApi } from '#/api/system/operate-log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 1, column: 1,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 110,
title: '', title: '',
extra: '', extra: '',
labelWidth: 110,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -164,6 +164,12 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
props: { type: DICT_TYPE.SYSTEM_SMS_TEMPLATE_TYPE }, props: { type: DICT_TYPE.SYSTEM_SMS_TEMPLATE_TYPE },
}, },
}, },
{
field: 'createTime',
title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{ {
title: '操作', title: '操作',
width: 80, width: 80,

View File

@@ -1,4 +1,4 @@
<script setup lang="ts"> <script lang="ts" setup>
import type { SystemSmsLogApi } from '#/api/system/sms/log'; import type { SystemSmsLogApi } from '#/api/system/sms/log';
import { ref } from 'vue'; import { ref } from 'vue';
@@ -16,9 +16,9 @@ const [Descriptions] = useDescription({
border: true, border: true,
column: 2, column: 2,
direction: 'horizontal', direction: 'horizontal',
labelWidth: 140,
title: '', title: '',
extra: '', extra: '',
labelWidth: 140,
}, },
schema: useDetailSchema(), schema: useDetailSchema(),
}); });

View File

@@ -75,10 +75,17 @@ async function handleDelete(row: SystemSmsTemplateApi.SmsTemplate) {
/** 批量删除短信模板 */ /** 批量删除短信模板 */
async function handleDeleteBatch() { async function handleDeleteBatch() {
await confirm($t('ui.actionMessage.deleteBatchConfirm')); await confirm($t('ui.actionMessage.deleteBatchConfirm'));
await deleteSmsTemplateList(checkedIds.value); const loadingInstance = ElLoading.service({
checkedIds.value = []; text: $t('ui.actionMessage.deletingBatch'),
ElMessage.success($t('ui.actionMessage.deleteSuccess')); });
handleRefresh(); try {
await deleteSmsTemplateList(checkedIds.value);
checkedIds.value = [];
ElMessage.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally {
loadingInstance.close();
}
} }
const checkedIds = ref<number[]>([]); const checkedIds = ref<number[]>([]);

View File

@@ -42,22 +42,22 @@ function handleEdit(row: SystemSocialClientApi.SocialClient) {
/** 删除社交客户端 */ /** 删除社交客户端 */
async function handleDelete(row: SystemSocialClientApi.SocialClient) { async function handleDelete(row: SystemSocialClientApi.SocialClient) {
const hideLoading = ElLoading.service({ const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deleting', [row.name]), text: $t('ui.actionMessage.deleting', [row.name]),
}); });
try { try {
await deleteSocialClient(row.id as number); await deleteSocialClient(row.id!);
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name])); ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
handleRefresh(); handleRefresh();
} finally { } finally {
hideLoading.close(); loadingInstance.close();
} }
} }
/** 批量删除社交客户端 */ /** 批量删除社交客户端 */
async function handleDeleteBatch() { async function handleDeleteBatch() {
await confirm($t('ui.actionMessage.deleteBatchConfirm')); await confirm($t('ui.actionMessage.deleteBatchConfirm'));
const hideLoading = ElLoading.service({ const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deletingBatch'), text: $t('ui.actionMessage.deletingBatch'),
}); });
try { try {
@@ -66,7 +66,7 @@ async function handleDeleteBatch() {
ElMessage.success($t('ui.actionMessage.deleteSuccess')); ElMessage.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh(); handleRefresh();
} finally { } finally {
hideLoading.close(); loadingInstance.close();
} }
} }

View File

@@ -8,9 +8,8 @@ import { h } from 'vue';
import { DICT_TYPE } from '@vben/constants'; import { DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks'; import { getDictOptions } from '@vben/hooks';
import { getRangePickerDefaultProps } from '#/utils';
import { DictTag } from '#/components/dict-tag'; import { DictTag } from '#/components/dict-tag';
import { getRangePickerDefaultProps } from '#/utils';
/** 列表的搜索表单 */ /** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] { export function useGridFormSchema(): VbenFormSchema[] {
@@ -126,6 +125,7 @@ export function useDetailSchema(): DescriptionItemSchema[] {
{ {
field: 'avatar', field: 'avatar',
label: '用户头像', label: '用户头像',
// TODO @芋艿:使用 antd 的 Image 组件
content: (data: SystemSocialUserApi.SocialUser) => { content: (data: SystemSocialUserApi.SocialUser) => {
if (data?.avatar) { if (data?.avatar) {
return h('img', { return h('img', {

View File

@@ -76,7 +76,7 @@ const [Modal, modalApi] = useVbenModal({
</script> </script>
<template> <template>
<Modal :title="getTitle"> <Modal :title="getTitle" class="w-1/3">
<Form class="mx-4" /> <Form class="mx-4" />
</Modal> </Modal>
</template> </template>

View File

@@ -59,7 +59,7 @@ async function handleDownload() {
</script> </script>
<template> <template>
<Modal title="导入用户"> <Modal title="导入用户" class="w-1/3">
<Form class="mx-4"> <Form class="mx-4">
<template #file> <template #file>
<div class="w-full"> <div class="w-full">