208 lines
5.6 KiB
Vue
208 lines
5.6 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { SystemNotifyTemplateApi } from '#/api/system/notify/template';
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import { confirm, DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
|
import { downloadFileFromBlobPart, isEmpty } from '@vben/utils';
|
|
|
|
import { ElLoading, ElMessage } from 'element-plus';
|
|
|
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import {
|
|
deleteNotifyTemplate,
|
|
deleteNotifyTemplateList,
|
|
exportNotifyTemplate,
|
|
getNotifyTemplatePage,
|
|
} from '#/api/system/notify/template';
|
|
import { $t } from '#/locales';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import Form from './modules/form.vue';
|
|
import SendForm from './modules/send-form.vue';
|
|
|
|
const [FormModal, formModalApi] = useVbenModal({
|
|
connectedComponent: Form,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
const [SendModal, sendModalApi] = useVbenModal({
|
|
connectedComponent: SendForm,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
function handleRefresh() {
|
|
gridApi.query();
|
|
}
|
|
|
|
/** 导出表格 */
|
|
async function handleExport() {
|
|
const data = await exportNotifyTemplate(await gridApi.formApi.getValues());
|
|
downloadFileFromBlobPart({ fileName: '站内信模板.xls', source: data });
|
|
}
|
|
|
|
/** 创建站内信模板 */
|
|
function handleCreate() {
|
|
formModalApi.setData(null).open();
|
|
}
|
|
|
|
/** 编辑站内信模板 */
|
|
function handleEdit(row: SystemNotifyTemplateApi.NotifyTemplate) {
|
|
formModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 发送测试站内信 */
|
|
function handleSend(row: SystemNotifyTemplateApi.NotifyTemplate) {
|
|
sendModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 删除站内信模板 */
|
|
async function handleDelete(row: SystemNotifyTemplateApi.NotifyTemplate) {
|
|
const loadingInstance = ElLoading.service({
|
|
text: $t('ui.actionMessage.deleting', [row.name]),
|
|
});
|
|
try {
|
|
await deleteNotifyTemplate(row.id!);
|
|
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
|
|
handleRefresh();
|
|
} finally {
|
|
loadingInstance.close();
|
|
}
|
|
}
|
|
|
|
/** 批量删除站内信模板 */
|
|
async function handleDeleteBatch() {
|
|
await confirm($t('ui.actionMessage.deleteBatchConfirm'));
|
|
const loadingInstance = ElLoading.service({
|
|
text: $t('ui.actionMessage.deletingBatch'),
|
|
});
|
|
try {
|
|
await deleteNotifyTemplateList(checkedIds.value);
|
|
checkedIds.value = [];
|
|
ElMessage.success($t('ui.actionMessage.deleteSuccess'));
|
|
handleRefresh();
|
|
} finally {
|
|
loadingInstance.close();
|
|
}
|
|
}
|
|
|
|
const checkedIds = ref<number[]>([]);
|
|
function handleRowCheckboxChange({
|
|
records,
|
|
}: {
|
|
records: SystemNotifyTemplateApi.NotifyTemplate[];
|
|
}) {
|
|
checkedIds.value = records.map((item) => item.id!);
|
|
}
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
formOptions: {
|
|
schema: useGridFormSchema(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getNotifyTemplatePage({
|
|
pageNo: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
isHover: true,
|
|
},
|
|
toolbarConfig: {
|
|
refresh: true,
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<SystemNotifyTemplateApi.NotifyTemplate>,
|
|
gridEvents: {
|
|
checkboxAll: handleRowCheckboxChange,
|
|
checkboxChange: handleRowCheckboxChange,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #doc>
|
|
<DocAlert title="站内信" url="https://doc.iocoder.cn/notify/" />
|
|
</template>
|
|
|
|
<FormModal @success="handleRefresh" />
|
|
<SendModal />
|
|
<Grid table-title="站内信模板列表">
|
|
<template #toolbar-tools>
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('ui.actionTitle.create', ['站内信模板']),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.ADD,
|
|
auth: ['system:notify-template:create'],
|
|
onClick: handleCreate,
|
|
},
|
|
{
|
|
label: $t('ui.actionTitle.export'),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.DOWNLOAD,
|
|
auth: ['system:notify-template:export'],
|
|
onClick: handleExport,
|
|
},
|
|
{
|
|
label: $t('ui.actionTitle.deleteBatch'),
|
|
type: 'danger',
|
|
icon: ACTION_ICON.DELETE,
|
|
disabled: isEmpty(checkedIds),
|
|
auth: ['system:notify-template:delete'],
|
|
onClick: handleDeleteBatch,
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
<template #actions="{ row }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('common.edit'),
|
|
type: 'primary',
|
|
link: true,
|
|
icon: ACTION_ICON.EDIT,
|
|
auth: ['system:notify-template:update'],
|
|
onClick: handleEdit.bind(null, row),
|
|
},
|
|
{
|
|
label: '测试',
|
|
type: 'primary',
|
|
link: true,
|
|
icon: ACTION_ICON.VIEW,
|
|
auth: ['system:notify-template:send-notify'],
|
|
onClick: handleSend.bind(null, row),
|
|
},
|
|
{
|
|
label: $t('common.delete'),
|
|
type: 'danger',
|
|
link: true,
|
|
icon: ACTION_ICON.DELETE,
|
|
auth: ['system:notify-template:delete'],
|
|
popConfirm: {
|
|
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
|
confirm: handleDelete.bind(null, row),
|
|
},
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|