2024-08-07 08:57:56 +08:00
|
|
|
<script setup lang="ts">
|
2024-10-05 16:02:02 +08:00
|
|
|
import type { Recordable } from '@vben/types';
|
2024-09-13 15:27:29 +08:00
|
|
|
|
2024-10-05 16:02:02 +08:00
|
|
|
import { ref } from 'vue';
|
2024-09-24 11:23:02 +08:00
|
|
|
|
2024-10-05 16:02:02 +08:00
|
|
|
import { Page, useVbenDrawer, type VbenFormProps } from '@vben/common-ui';
|
2024-09-24 11:23:02 +08:00
|
|
|
|
2024-10-05 16:02:02 +08:00
|
|
|
import { Modal, Popconfirm, Space } from 'ant-design-vue';
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
|
|
|
import { useVbenVxeGrid, type VxeGridProps } from '#/adapter';
|
|
|
|
import { postExport, postList, postRemove } from '#/api/system/post';
|
|
|
|
import { downloadExcel } from '#/utils/file/download';
|
|
|
|
import DeptTree from '#/views/system/user/dept-tree.vue';
|
|
|
|
|
|
|
|
import { columns, querySchema } from './data';
|
2024-09-13 15:27:29 +08:00
|
|
|
import postDrawer from './post-drawer.vue';
|
|
|
|
|
2024-10-05 16:02:02 +08:00
|
|
|
const formOptions: VbenFormProps = {
|
|
|
|
schema: querySchema(),
|
|
|
|
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
|
|
|
|
};
|
|
|
|
|
|
|
|
// 左边部门用
|
|
|
|
const selectDeptId = ref<string[]>([]);
|
|
|
|
const gridOptions: VxeGridProps = {
|
|
|
|
checkboxConfig: {
|
|
|
|
// 高亮
|
|
|
|
highlight: true,
|
|
|
|
// 翻页时保留选中状态
|
|
|
|
reserve: true,
|
|
|
|
// 点击行选中
|
|
|
|
// trigger: 'row',
|
|
|
|
},
|
|
|
|
columns,
|
|
|
|
height: 'auto',
|
|
|
|
keepSource: true,
|
|
|
|
pagerConfig: {},
|
|
|
|
proxyConfig: {
|
|
|
|
ajax: {
|
|
|
|
query: async ({ page }, formValues) => {
|
|
|
|
// 区间选择器处理
|
|
|
|
if (formValues?.createTime) {
|
|
|
|
formValues.params = {
|
|
|
|
beginTime: dayjs(formValues.createTime[0]).format(
|
|
|
|
'YYYY-MM-DD 00:00:00',
|
|
|
|
),
|
|
|
|
endTime: dayjs(formValues.createTime[1]).format(
|
|
|
|
'YYYY-MM-DD 23:59:59',
|
|
|
|
),
|
|
|
|
};
|
|
|
|
Reflect.deleteProperty(formValues, 'createTime');
|
|
|
|
} else {
|
|
|
|
Reflect.deleteProperty(formValues, 'params');
|
|
|
|
}
|
|
|
|
|
|
|
|
// 部门树选择处理
|
|
|
|
if (selectDeptId.value.length === 1) {
|
|
|
|
formValues.deptId = selectDeptId.value[0];
|
|
|
|
} else {
|
|
|
|
Reflect.deleteProperty(formValues, 'deptId');
|
|
|
|
}
|
|
|
|
|
|
|
|
return await postList({
|
|
|
|
pageNum: page.currentPage,
|
|
|
|
pageSize: page.pageSize,
|
|
|
|
...formValues,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
rowConfig: {
|
|
|
|
isHover: true,
|
|
|
|
keyField: 'postId',
|
|
|
|
},
|
|
|
|
round: true,
|
|
|
|
align: 'center',
|
|
|
|
showOverflow: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
const [BasicTable, tableApi] = useVbenVxeGrid({ formOptions, gridOptions });
|
2024-09-13 15:27:29 +08:00
|
|
|
const [PostDrawer, drawerApi] = useVbenDrawer({
|
|
|
|
connectedComponent: postDrawer,
|
|
|
|
});
|
|
|
|
|
|
|
|
function handleAdd() {
|
2024-10-05 16:02:02 +08:00
|
|
|
drawerApi.setData({});
|
2024-09-13 15:27:29 +08:00
|
|
|
drawerApi.open();
|
|
|
|
}
|
2024-09-24 11:23:02 +08:00
|
|
|
|
2024-10-05 16:02:02 +08:00
|
|
|
async function handleEdit(record: Recordable<any>) {
|
|
|
|
drawerApi.setData({ id: record.postId });
|
|
|
|
drawerApi.open();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleDelete(row: Recordable<any>) {
|
|
|
|
await postRemove(row.postId);
|
|
|
|
await tableApi.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleMultiDelete() {
|
|
|
|
const rows = tableApi.grid.getCheckboxRecords();
|
|
|
|
const ids = rows.map((row: any) => row.postId);
|
|
|
|
Modal.confirm({
|
|
|
|
title: '提示',
|
|
|
|
okType: 'danger',
|
|
|
|
content: `确认删除选中的${ids.length}条记录吗?`,
|
|
|
|
onOk: async () => {
|
|
|
|
await postRemove(ids);
|
|
|
|
await tableApi.reload();
|
2024-09-24 11:23:02 +08:00
|
|
|
},
|
2024-10-05 16:02:02 +08:00
|
|
|
});
|
|
|
|
}
|
2024-08-07 08:57:56 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-10-05 16:02:02 +08:00
|
|
|
<Page :auto-content-height="true" content-class="flex gap-[8px]">
|
|
|
|
<DeptTree
|
|
|
|
v-model:select-dept-id="selectDeptId"
|
|
|
|
:height="300"
|
|
|
|
class="w-[260px]"
|
|
|
|
@select="() => tableApi.reload()"
|
|
|
|
/>
|
2024-10-05 18:26:40 +08:00
|
|
|
<BasicTable class="flex-1">
|
2024-10-05 16:02:02 +08:00
|
|
|
<template #toolbar-actions>
|
|
|
|
<span class="pl-[7px] text-[16px]">岗位列表</span>
|
|
|
|
</template>
|
|
|
|
<template #toolbar-tools>
|
|
|
|
<Space>
|
|
|
|
<a-button
|
|
|
|
v-access:code="['system:post:export']"
|
|
|
|
@click="downloadExcel(postExport, '岗位信息数据', {})"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.export') }}
|
|
|
|
</a-button>
|
|
|
|
<a-button
|
|
|
|
danger
|
|
|
|
type="primary"
|
|
|
|
v-access:code="['system:post:delete']"
|
|
|
|
@click="handleMultiDelete"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.delete') }}
|
|
|
|
</a-button>
|
|
|
|
<a-button
|
|
|
|
type="primary"
|
|
|
|
v-access:code="['system:post:add']"
|
|
|
|
@click="handleAdd"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.add') }}
|
|
|
|
</a-button>
|
|
|
|
</Space>
|
|
|
|
</template>
|
|
|
|
<template #action="{ row }">
|
|
|
|
<Space>
|
|
|
|
<a-button
|
|
|
|
size="small"
|
|
|
|
type="link"
|
|
|
|
v-access:code="['system:post:edit']"
|
|
|
|
@click="handleEdit(row)"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.edit') }}
|
|
|
|
</a-button>
|
|
|
|
<Popconfirm
|
|
|
|
placement="left"
|
|
|
|
title="确认删除?"
|
|
|
|
@confirm="handleDelete(row)"
|
|
|
|
>
|
|
|
|
<a-button
|
|
|
|
danger
|
|
|
|
size="small"
|
|
|
|
type="link"
|
|
|
|
v-access:code="['system:post:delete']"
|
|
|
|
@click.stop=""
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.delete') }}
|
|
|
|
</a-button>
|
|
|
|
</Popconfirm>
|
|
|
|
</Space>
|
|
|
|
</template>
|
|
|
|
</BasicTable>
|
|
|
|
<PostDrawer @reload="tableApi.reload()" />
|
2024-09-13 15:27:29 +08:00
|
|
|
</Page>
|
2024-08-07 08:57:56 +08:00
|
|
|
</template>
|