204 lines
5.6 KiB
Vue
204 lines
5.6 KiB
Vue
<script setup lang="ts">
|
|
|
|
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui'
|
|
import { getVxePopupContainer } from '@vben/utils'
|
|
|
|
import { Avatar, Modal, Popconfirm, Space } from 'ant-design-vue'
|
|
|
|
import {
|
|
useVbenVxeGrid,
|
|
vxeCheckboxChecked,
|
|
type VxeGridProps
|
|
} from '#/adapter/vxe-table'
|
|
|
|
import {
|
|
personExport,
|
|
personList,
|
|
personRemove, personUpdate,
|
|
} from '#/api/property/resident/person'
|
|
import type { PersonForm } from '#/api/property/resident/person/model'
|
|
import { commonDownloadExcel } from '#/utils/file/download'
|
|
|
|
import personModal from './person-modal.vue'
|
|
import personDetail from './person-detail.vue'
|
|
import personImportModal from './person-import-modal.vue'
|
|
import faceImportModal from './face-import-modal.vue'
|
|
import { columns, querySchema } from './data'
|
|
import { useAccess } from "@vben/access"
|
|
import { TableSwitch } from "#/components/table"
|
|
|
|
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',
|
|
},
|
|
columns,
|
|
height: 'auto',
|
|
keepSource: true,
|
|
pagerConfig: {},
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues = {}) => {
|
|
// return await personList({
|
|
// pageNum: page.currentPage,
|
|
// pageSize: page.pageSize,
|
|
// ...formValues,
|
|
// })
|
|
const res = await personList({
|
|
pageNum: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
console.log(res);
|
|
|
|
return res;
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
},
|
|
// 表格全局唯一表示 保存列配置需要用到
|
|
id: 'property-person-index'
|
|
}
|
|
|
|
const [BasicTable, tableApi] = useVbenVxeGrid({
|
|
formOptions,
|
|
gridOptions,
|
|
})
|
|
|
|
const [PersonModal, modalApi] = useVbenModal({
|
|
connectedComponent: personModal,
|
|
})
|
|
const [PersonDetail, personDetailApi] = useVbenModal({
|
|
connectedComponent: personDetail,
|
|
})
|
|
const [PersonImportModal, personImportModalApi] = useVbenModal({
|
|
connectedComponent: personImportModal,
|
|
})
|
|
const [FaceImportModal, faceImportModalApi] = useVbenModal({
|
|
connectedComponent: faceImportModal,
|
|
})
|
|
|
|
const { hasAccessByCodes } = useAccess()
|
|
|
|
function handleAdd() {
|
|
modalApi.setData({})
|
|
modalApi.open()
|
|
}
|
|
|
|
function handleImport() {
|
|
personImportModalApi.open()
|
|
}
|
|
|
|
function handleFaceImport() {
|
|
faceImportModalApi.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,
|
|
})
|
|
}
|
|
|
|
function handleInfo(row: Required<PersonForm>) {
|
|
personDetailApi.setData({ id: row.id })
|
|
personDetailApi.open()
|
|
}
|
|
</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 v-access:code="['system:user:import']" @click="handleImport">
|
|
{{ $t('pages.common.import') }}
|
|
</a-button>
|
|
<a-button @click="handleFaceImport">
|
|
人脸导入
|
|
</a-button>
|
|
<a-button :disabled="!vxeCheckboxChecked(tableApi)" danger type="primary"
|
|
v-access:code="['property:person:remove']" @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>
|
|
<template #img="{ row }">
|
|
<Avatar :src="row.img" v-if="row.img" />
|
|
<span v-else>无</span>
|
|
</template>
|
|
<template #action="{ row }">
|
|
<Space>
|
|
<ghost-button @click.stop="handleInfo(row)">
|
|
{{ $t('pages.common.info') }}
|
|
</ghost-button>
|
|
<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()" />
|
|
<PersonDetail></PersonDetail>
|
|
<PersonImportModal />
|
|
<FaceImportModal />
|
|
</Page>
|
|
</template>
|
|
<style scoped>
|
|
:where(.css-dev-only-do-not-override-aza1th).ant-avatar {
|
|
border-radius: 0;
|
|
}
|
|
</style>
|