<script lang="ts" setup>
|
import type { ActionItem, BasicColumn } from '@jnpf/ui/vxeTable';
|
|
import { onMounted } from 'vue';
|
|
import { useMessage } from '@jnpf/hooks';
|
import { useModal } from '@jnpf/ui/modal';
|
import { usePopup } from '@jnpf/ui/popup';
|
import { BasicVxeTable, TableAction, useVxeTable } from '@jnpf/ui/vxeTable';
|
|
import dayjs from 'dayjs';
|
|
import { delNotice, getNoticeList, release } from '#/api/system/message';
|
import { $t } from '#/locales';
|
import { useBaseStore } from '#/store';
|
|
import Detail from './Detail.vue';
|
import Form from './Form.vue';
|
|
defineOptions({ name: 'MsgCenterNotice' });
|
|
const { createMessage } = useMessage();
|
const baseStore = useBaseStore();
|
const columns: BasicColumn[] = [
|
{ title: '标题', dataIndex: 'title', minWidth: 200 },
|
{ title: '类型', dataIndex: 'category', width: 60, align: 'center' },
|
{ title: '失效时间', dataIndex: 'expirationTime', width: 150, format: 'date|YYYY-MM-DD HH:mm:ss' },
|
{ title: '创建人', dataIndex: 'creatorUser', width: 120 },
|
{ title: '创建时间', dataIndex: 'creatorTime', width: 150, format: 'date|YYYY-MM-DD HH:mm:ss' },
|
{ title: '发布人', dataIndex: 'releaseUser', width: 120 },
|
{ title: '发布时间', dataIndex: 'releaseTime', width: 150, format: 'date|YYYY-MM-DD HH:mm:ss' },
|
{ title: '状态', dataIndex: 'enabledMark', width: 80, align: 'center', slots: { default: 'enabledMark' } },
|
];
|
const [registerDetail, { openModal: openDetailModal }] = useModal();
|
const [registerForm, { openPopup: openFormPopup }] = usePopup();
|
const [registerTable, { reload, getForm }] = useVxeTable({
|
api: getNoticeList,
|
columns,
|
useSearchForm: true,
|
formConfig: {
|
schemas: [
|
{
|
field: 'keyword',
|
label: $t('common.keyword'),
|
component: 'Input',
|
componentProps: {
|
placeholder: $t('common.enterKeyword'),
|
submitOnPressEnter: true,
|
},
|
},
|
{
|
field: 'type',
|
label: '类型',
|
component: 'Select',
|
componentProps: { multiple: true, showSearch: true, fieldNames: { value: 'enCode' } },
|
},
|
{
|
field: 'enabledMark',
|
label: '状态',
|
component: 'Select',
|
componentProps: {
|
multiple: true,
|
options: [
|
{ id: '0', fullName: '存草稿' },
|
{ id: '1', fullName: '已发送' },
|
{ id: '2', fullName: '已过期' },
|
],
|
},
|
},
|
{
|
field: 'releaseUser',
|
label: '发布人',
|
component: 'UserSelect',
|
componentProps: { multiple: true },
|
},
|
{
|
field: 'releaseTime',
|
label: '发布时间',
|
component: 'DateRange',
|
componentProps: {
|
format: 'YYYY-MM-DD HH:mm:ss',
|
showTime: { defaultValue: [dayjs('00:00:00', 'HH:mm:ss'), dayjs('23:59:59', 'HH:mm:ss')] },
|
placeholder: ['开始时间', '结束时间'],
|
},
|
},
|
{
|
field: 'expirationTime',
|
label: '失效时间',
|
component: 'DateRange',
|
componentProps: {
|
format: 'YYYY-MM-DD HH:mm:ss',
|
showTime: { defaultValue: [dayjs('00:00:00', 'HH:mm:ss'), dayjs('23:59:59', 'HH:mm:ss')] },
|
placeholder: ['开始时间', '结束时间'],
|
},
|
},
|
{
|
field: 'creatorUser',
|
label: '创建人',
|
component: 'UserSelect',
|
componentProps: { multiple: true },
|
},
|
{
|
field: 'creatorTime',
|
label: '创建时间',
|
component: 'DateRange',
|
componentProps: {
|
format: 'YYYY-MM-DD HH:mm:ss',
|
showTime: { defaultValue: [dayjs('00:00:00', 'HH:mm:ss'), dayjs('23:59:59', 'HH:mm:ss')] },
|
placeholder: ['开始时间', '结束时间'],
|
},
|
},
|
],
|
},
|
actionColumn: {
|
width: 150,
|
title: '操作',
|
dataIndex: 'action',
|
},
|
});
|
|
function getTableActions(record): ActionItem[] {
|
return [
|
{
|
label: $t('common.editText'),
|
disabled: record.enabledMark != 0,
|
onClick: addOrUpdateHandle.bind(null, record.id),
|
},
|
{
|
label: $t('common.delText'),
|
color: 'error',
|
modelConfirm: {
|
onOk: handleDelete.bind(null, record.id),
|
},
|
},
|
];
|
}
|
function getDropDownActions(record): ActionItem[] {
|
return [
|
{
|
label: $t('common.detailText'),
|
onClick: handleDetail.bind(null, record.id),
|
},
|
{
|
label: '发布',
|
ifShow: record.enabledMark == 0,
|
modelConfirm: {
|
content: '您确定要发布当前公告, 是否继续?',
|
onOk: handleRelease.bind(null, record.id),
|
},
|
},
|
];
|
}
|
function handleDelete(id) {
|
delNotice(id).then((res) => {
|
createMessage.success(res.msg);
|
reload();
|
});
|
}
|
function handleRelease(id) {
|
release(id).then((res) => {
|
createMessage.success(res.msg);
|
reload();
|
});
|
}
|
function handleDetail(id) {
|
openDetailModal(true, { id });
|
}
|
function addOrUpdateHandle(id = '') {
|
openFormPopup(true, { id });
|
}
|
async function getOptions() {
|
const res = (await baseStore.getDictionaryData('NoticeType')) as any[];
|
getForm().updateSchema({ field: 'type', componentProps: { options: res } });
|
}
|
|
onMounted(() => {
|
getOptions();
|
});
|
</script>
|
<template>
|
<div class="jnpf-content-wrapper">
|
<div class="jnpf-content-wrapper-center">
|
<div class="jnpf-content-wrapper-content">
|
<BasicVxeTable @register="registerTable">
|
<template #tableTitle>
|
<a-button type="primary" pre-icon="icon-ym icon-ym-btn-add" @click="addOrUpdateHandle()">{{ $t('common.addText') }}</a-button>
|
</template>
|
<template #enabledMark="{ record }">
|
<a-tag :color="record.enabledMark == 1 ? 'success' : record.enabledMark == 0 ? 'warning' : ''">
|
{{ record.enabledMark == 1 ? '已发送' : record.enabledMark == 0 ? '存草稿' : '已过期' }}
|
</a-tag>
|
</template>
|
<template #action="{ record }">
|
<TableAction :actions="getTableActions(record)" :drop-down-actions="getDropDownActions(record)" />
|
</template>
|
</BasicVxeTable>
|
</div>
|
</div>
|
<Detail @register="registerDetail" />
|
<Form @register="registerForm" @reload="reload" />
|
</div>
|
</template>
|