CEES-manage/src/views/system/position/index.vue

126 lines
3.6 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 type="primary" preIcon="ant-design:plus-outlined" @click="handleAdd">新增</a-button>
<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>
<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 icon="ant-design:down-outlined"></Icon>
</a-button>
</a-dropdown>
</template>
<template #action="{ record }">
<TableAction :actions="getActions(record)" />
</template>
</BasicTable>
<PositionModal @register="registerModal" @success="reload" />
</div>
2022-03-10 09:47:29 +08:00
</template>
<script lang="ts" name="system-position" 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 { getPositionList, deletePosition, batchDeletePosition, customUpload, getExportUrl, getImportUrl } from './position.api';
import { columns, searchFormSchema } from './position.data';
import PositionModal from './PositionModal.vue';
import { useMessage } from '/@/hooks/web/useMessage';
import { useListPage } from '/@/hooks/system/useListPage';
const { createMessage } = useMessage();
const [registerModal, { openModal }] = useModal();
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
// 列表页面公共参数、方法
const { prefixCls, onExportXls, onImportXls, tableContext } = useListPage({
designScope: 'position-template',
tableProps: {
title: '职务列表',
api: getPositionList,
columns: columns,
formConfig: {
schemas: searchFormSchema,
2022-03-10 09:47:29 +08:00
},
actionColumn: {
width: 180,
},
showIndexColumn: true,
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
/**
* 操作列定义
* @param record
*/
function getActions(record) {
return [
{
label: '编辑',
onClick: handleEdit.bind(null, record),
},
{
label: '删除',
popConfirm: {
title: '是否确认删除',
confirm: handleDelete.bind(null, record),
},
},
];
}
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 deletePosition({ id: record.id }, reload);
}
2022-03-10 09:47:29 +08:00
2022-06-10 10:44:44 +08:00
/**
* 批量删除事件
*/
async function batchHandleDelete() {
2024-03-06 16:33:03 +08:00
await batchDeletePosition({ ids: selectedRowKeys.value }, () => {
// update-begin--author:liaozhiyang---date:20240223---for【QQYUN-8334】批量删除之后按钮未隐藏选中记录还在
selectedRowKeys.value = [];
reload();
// update-end--author:liaozhiyang---date:20240223---for【QQYUN-8334】批量删除之后按钮未隐藏选中记录还在
});
2022-06-10 10:44:44 +08:00
}
2022-03-10 09:47:29 +08:00
</script>