CET-vue-3.0/src/views/system/notice/index.vue

169 lines
4.5 KiB
Vue
Raw Normal View History

2022-03-10 09:47:29 +08:00
<template>
2022-06-10 10:44:44 +08:00
<div>
<BasicTable @register="registerTable" :rowSelection="rowSelection">
<template #tableTitle>
<a-button preIcon="ant-design:plus-outlined" type="primary" @click="handleAdd">新增</a-button>
2023-10-24 20:22:34 +08:00
<!-- <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>-->
<!-- <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>-->
2022-06-10 10:44:44 +08:00
<a-dropdown v-if="selectedRowKeys.length > 0">
<template #overlay>
<a-menu>
<a-menu-item key="1" @click="batchHandleDelete">
<Icon icon="ant-design:delete-outlined"></Icon>
删除
</a-menu-item>
</a-menu>
</template>
<a-button
>批量操作
<Icon style="fontsize: 12px" icon="ant-design:down-outlined"></Icon>
</a-button>
</a-dropdown>
</template>
<template #action="{ record }">
<TableAction :actions="getActions(record)" :dropDownActions="getDropDownAction(record)" />
</template>
</BasicTable>
<NoticeModal @register="registerModal" @success="reload" />
<DetailModal @register="register" :frameSrc="iframeUrl" />
</div>
2022-03-10 09:47:29 +08:00
</template>
<script lang="ts" name="system-notice" setup>
2022-06-10 10:44:44 +08:00
import { ref } from 'vue';
import { BasicTable, TableAction } from '/@/components/Table';
import { useModal } from '/@/components/Modal';
import NoticeModal from './NoticeModal.vue';
import DetailModal from './DetailModal.vue';
import { useMethods } from '/@/hooks/system/useMethods';
import { useGlobSetting } from '/@/hooks/setting';
import { getToken } from '/@/utils/auth';
import { columns, searchFormSchema } from './notice.data';
import { getList, deleteNotice, batchDeleteNotice, getExportUrl, getImportUrl, doReleaseData, doReovkeData } from './notice.api';
import { useListPage } from '/@/hooks/system/useListPage';
const glob = useGlobSetting();
const [registerModal, { openModal }] = useModal();
const [register, { openModal: openDetail }] = useModal();
const iframeUrl = ref('');
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
// 列表页面公共参数、方法
const { prefixCls, onExportXls, onImportXls, tableContext, doRequest } = useListPage({
2022-06-10 10:44:44 +08:00
designScope: 'notice-template',
tableProps: {
title: '消息通知',
api: getList,
columns: columns,
formConfig: {
schemas: searchFormSchema,
2022-03-10 09:47:29 +08:00
},
2022-06-10 10:44:44 +08:00
},
exportConfig: {
name: '消息通知列表',
url: getExportUrl,
},
importConfig: {
url: getImportUrl,
},
});
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
/**
* 新增事件
*/
function handleAdd() {
openModal(true, {
isUpdate: false,
});
}
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
/**
* 编辑事件
*/
function handleEdit(record) {
openModal(true, {
record,
isUpdate: true,
});
}
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
/**
* 删除事件
*/
async function handleDelete(record) {
await deleteNotice({ id: record.id }, reload);
}
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
/**
* 批量删除事件
*/
async function batchHandleDelete() {
doRequest(() => batchDeleteNotice({ ids: selectedRowKeys.value }));
2022-06-10 10:44:44 +08:00
}
/**
* 发布
*/
async function handleRelease(id) {
await doReleaseData({ id });
reload();
}
/**
* 撤销
*/
async function handleReovke(id) {
await doReovkeData({ id });
reload();
}
/**
* 查看
*/
function handleDetail(record) {
iframeUrl.value = `${glob.uploadUrl}/sys/annountCement/show/${record.id}?token=${getToken()}`;
openDetail(true);
}
/**
* 操作列定义
* @param record
*/
function getActions(record) {
return [
{
label: '编辑',
onClick: handleEdit.bind(null, record),
ifShow: record.sendStatus == 0,
},
];
}
/**
* 下拉操作栏
*/
function getDropDownAction(record) {
return [
{
label: '删除',
ifShow: record.sendStatus != 1,
popConfirm: {
title: '是否确认删除',
confirm: handleDelete.bind(null, record),
2022-03-10 09:47:29 +08:00
},
2022-06-10 10:44:44 +08:00
},
{
label: '发布',
ifShow: record.sendStatus == 0,
onClick: handleRelease.bind(null, record.id),
},
{
label: '撤销',
ifShow: record.sendStatus == 1,
popConfirm: {
title: '确定要撤销吗?',
confirm: handleReovke.bind(null, record.id),
2022-03-10 09:47:29 +08:00
},
2022-06-10 10:44:44 +08:00
},
{
label: '查看',
onClick: handleDetail.bind(null, record),
},
];
}
2022-03-10 09:47:29 +08:00
</script>