2025-06-19 14:26:08 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
|
|
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
|
|
|
|
import { getVxePopupContainer } from '@vben/utils';
|
|
|
|
|
2025-06-23 09:39:53 +08:00
|
|
|
import {Avatar, Modal, Popconfirm, Space} from 'ant-design-vue';
|
2025-06-19 14:26:08 +08:00
|
|
|
|
2025-06-19 16:55:06 +08:00
|
|
|
import {
|
2025-06-19 14:26:08 +08:00
|
|
|
useVbenVxeGrid,
|
|
|
|
vxeCheckboxChecked,
|
2025-06-19 16:55:06 +08:00
|
|
|
type VxeGridProps
|
2025-06-19 14:26:08 +08:00
|
|
|
} from '#/adapter/vxe-table';
|
|
|
|
|
|
|
|
import {
|
|
|
|
personExport,
|
|
|
|
personList,
|
|
|
|
personRemove,
|
2025-06-19 16:55:06 +08:00
|
|
|
} from '#/api/property/resident/person';
|
|
|
|
import type { PersonForm } from '#/api/property/resident/person/model';
|
2025-06-19 14:26:08 +08:00
|
|
|
import { commonDownloadExcel } from '#/utils/file/download';
|
|
|
|
|
|
|
|
import personModal from './person-modal.vue';
|
2025-06-23 09:39:53 +08:00
|
|
|
import personDetail from './person-detail.vue';
|
2025-06-19 14:26:08 +08:00
|
|
|
import { columns, querySchema } from './data';
|
2025-06-23 09:39:53 +08:00
|
|
|
// import {TableSwitch} from "#/components/table";
|
2025-06-19 14:26:08 +08:00
|
|
|
|
|
|
|
const formOptions: VbenFormProps = {
|
|
|
|
commonConfig: {
|
|
|
|
labelWidth: 80,
|
|
|
|
componentProps: {
|
|
|
|
allowClear: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
schema: querySchema(),
|
|
|
|
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
|
|
|
|
};
|
|
|
|
|
|
|
|
const gridOptions: VxeGridProps = {
|
|
|
|
checkboxConfig: {
|
|
|
|
// 高亮
|
|
|
|
highlight: true,
|
|
|
|
// 翻页时保留选中状态
|
|
|
|
reserve: true,
|
|
|
|
// 点击行选中
|
|
|
|
// trigger: 'row',
|
|
|
|
},
|
|
|
|
// 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新
|
|
|
|
// columns: columns(),
|
|
|
|
columns,
|
|
|
|
height: 'auto',
|
|
|
|
keepSource: true,
|
|
|
|
pagerConfig: {},
|
|
|
|
proxyConfig: {
|
|
|
|
ajax: {
|
|
|
|
query: async ({ page }, formValues = {}) => {
|
|
|
|
return await personList({
|
|
|
|
pageNum: page.currentPage,
|
|
|
|
pageSize: page.pageSize,
|
|
|
|
...formValues,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
rowConfig: {
|
|
|
|
keyField: 'id',
|
|
|
|
},
|
|
|
|
// 表格全局唯一表示 保存列配置需要用到
|
|
|
|
id: 'property-person-index'
|
|
|
|
};
|
|
|
|
|
|
|
|
const [BasicTable, tableApi] = useVbenVxeGrid({
|
|
|
|
formOptions,
|
|
|
|
gridOptions,
|
|
|
|
});
|
|
|
|
|
|
|
|
const [PersonModal, modalApi] = useVbenModal({
|
|
|
|
connectedComponent: personModal,
|
|
|
|
});
|
2025-06-23 09:39:53 +08:00
|
|
|
const [PersonDetail, personDetailApi] = useVbenModal({
|
|
|
|
connectedComponent: personDetail,
|
|
|
|
});
|
|
|
|
|
2025-06-19 14:26:08 +08:00
|
|
|
|
|
|
|
function handleAdd() {
|
|
|
|
modalApi.setData({});
|
|
|
|
modalApi.open();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleEdit(row: Required<PersonForm>) {
|
|
|
|
modalApi.setData({ id: row.id });
|
|
|
|
modalApi.open();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleDelete(row: Required<PersonForm>) {
|
|
|
|
await personRemove(row.id);
|
|
|
|
await tableApi.query();
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleMultiDelete() {
|
|
|
|
const rows = tableApi.grid.getCheckboxRecords();
|
|
|
|
const ids = rows.map((row: Required<PersonForm>) => row.id);
|
|
|
|
Modal.confirm({
|
|
|
|
title: '提示',
|
|
|
|
okType: 'danger',
|
|
|
|
content: `确认删除选中的${ids.length}条记录吗?`,
|
|
|
|
onOk: async () => {
|
|
|
|
await personRemove(ids);
|
|
|
|
await tableApi.query();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleDownloadExcel() {
|
|
|
|
commonDownloadExcel(personExport, '入驻员工数据', tableApi.formApi.form.values, {
|
|
|
|
fieldMappingTime: formOptions.fieldMappingTime,
|
|
|
|
});
|
|
|
|
}
|
2025-06-23 09:39:53 +08:00
|
|
|
|
|
|
|
function handleInfo(row: Required<PersonForm>) {
|
|
|
|
personDetailApi.setData({ id: row.id });
|
|
|
|
personDetailApi.open();
|
|
|
|
}
|
|
|
|
|
2025-06-19 14:26:08 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<Page :auto-content-height="true">
|
|
|
|
<BasicTable table-title="入驻员工列表">
|
|
|
|
<template #toolbar-tools>
|
|
|
|
<Space>
|
|
|
|
<a-button
|
|
|
|
v-access:code="['property:person:export']"
|
|
|
|
@click="handleDownloadExcel"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.export') }}
|
|
|
|
</a-button>
|
|
|
|
<a-button
|
|
|
|
:disabled="!vxeCheckboxChecked(tableApi)"
|
|
|
|
danger
|
2025-06-19 16:55:06 +08:00
|
|
|
type="primary"
|
|
|
|
v-access:code="['property:person:remove']"
|
2025-06-19 14:26:08 +08:00
|
|
|
@click="handleMultiDelete">
|
|
|
|
{{ $t('pages.common.delete') }}
|
|
|
|
</a-button>
|
|
|
|
<a-button
|
|
|
|
type="primary"
|
|
|
|
v-access:code="['property:person:add']"
|
|
|
|
@click="handleAdd"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.add') }}
|
|
|
|
</a-button>
|
|
|
|
</Space>
|
|
|
|
</template>
|
2025-06-23 09:39:53 +08:00
|
|
|
<template #img="{ row }">
|
|
|
|
<Avatar :src="row.img" />
|
|
|
|
</template>
|
|
|
|
<!-- <template #state="{ row }">-->
|
|
|
|
<!-- <TableSwitch-->
|
|
|
|
<!-- v-model:value="row.status"-->
|
|
|
|
<!-- :api="() => personStatusChange(row)"-->
|
|
|
|
<!-- :disabled="-->
|
|
|
|
<!-- row.userId === 1 || !hasAccessByCodes(['system:user:edit'])-->
|
|
|
|
<!-- "-->
|
|
|
|
<!-- @reload="() => tableApi.query()"-->
|
|
|
|
<!-- />-->
|
|
|
|
<!-- </template>-->
|
2025-06-19 14:26:08 +08:00
|
|
|
<template #action="{ row }">
|
|
|
|
<Space>
|
2025-06-23 09:39:53 +08:00
|
|
|
<ghost-button
|
|
|
|
@click.stop="handleInfo(row)"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.info') }}
|
|
|
|
</ghost-button>
|
2025-06-19 14:26:08 +08:00
|
|
|
<ghost-button
|
|
|
|
v-access:code="['property:person:edit']"
|
|
|
|
@click.stop="handleEdit(row)"
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.edit') }}
|
|
|
|
</ghost-button>
|
|
|
|
<Popconfirm
|
|
|
|
:get-popup-container="getVxePopupContainer"
|
|
|
|
placement="left"
|
|
|
|
title="确认删除?"
|
|
|
|
@confirm="handleDelete(row)"
|
|
|
|
>
|
|
|
|
<ghost-button
|
|
|
|
danger
|
|
|
|
v-access:code="['property:person:remove']"
|
|
|
|
@click.stop=""
|
|
|
|
>
|
|
|
|
{{ $t('pages.common.delete') }}
|
|
|
|
</ghost-button>
|
|
|
|
</Popconfirm>
|
|
|
|
</Space>
|
|
|
|
</template>
|
|
|
|
</BasicTable>
|
|
|
|
<PersonModal @reload="tableApi.query()" />
|
2025-06-23 09:39:53 +08:00
|
|
|
<PersonDetail></PersonDetail>
|
2025-06-19 14:26:08 +08:00
|
|
|
</Page>
|
|
|
|
</template>
|