You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.9 KiB
107 lines
2.9 KiB
<script lang="ts" setup> |
|
import { PlusOutlined } from '@ant-design/icons-vue' |
|
import DeptFormModal from './DeptFormModal.vue' |
|
import { columns, searchFormSchema } from './data' |
|
import { useI18n } from '@/hooks/web/useI18n' |
|
import { useMessage } from '@/hooks/web/useMessage' |
|
import { useModal } from '@/components/Modal' |
|
import { IconEnum } from '@/enums/appEnum' |
|
import { BasicTable, TableAction, useTable } from '@/components/Table' |
|
import { deleteDept, lazyGetDeptList } from '@/api/system/dept' |
|
import type { Department, LazyGetDeptListParams } from '@/api/system/dept/types' |
|
import { usePermission } from '@/hooks/web/usePermission' |
|
|
|
defineOptions({ name: 'SystemDept' }) |
|
|
|
const { t } = useI18n() |
|
|
|
const [registerModal, { openModal }] = useModal<Department>() |
|
|
|
const { hasPermission } = usePermission() |
|
|
|
async function lazyGetDeptListWrap(params: LazyGetDeptListParams) { |
|
try { |
|
const list = await lazyGetDeptList(params) |
|
return list.map(item => ({ |
|
...item, |
|
children: item.hasChildren ? [] : undefined, |
|
})) |
|
} |
|
catch { |
|
return [] |
|
} |
|
} |
|
|
|
const [register, { reload }] = useTable<Department>({ |
|
api: lazyGetDeptListWrap, |
|
load(record) { |
|
return lazyGetDeptListWrap({ parentId: record.id }) |
|
}, |
|
columns, |
|
formConfig: { |
|
labelWidth: 80, |
|
schemas: searchFormSchema, |
|
}, |
|
bordered: true, |
|
canResize: false, |
|
useSearchForm: true, |
|
pagination: false, |
|
actionColumn: { |
|
width: 140, |
|
title: t('common.action'), |
|
dataIndex: 'action', |
|
fixed: 'right', |
|
auth: ['dept_delete', 'dept_edit'], |
|
}, |
|
}) |
|
|
|
async function handleDelete(id: string) { |
|
try { |
|
await deleteDept(id) |
|
useMessage().createMessage.success(t('common.delSuccessText')) |
|
reload() |
|
} |
|
catch {} |
|
} |
|
</script> |
|
|
|
<template> |
|
<div> |
|
<BasicTable :api="async () => ([] as Department[])" @register="register"> |
|
<template v-if="hasPermission('dept_add')" #tableTitle> |
|
<a-button type="primary" @click="openModal"> |
|
<PlusOutlined /> |
|
{{ t('action.create') }} |
|
</a-button> |
|
</template> |
|
|
|
<template #bodyCell="{ column, record }"> |
|
<template v-if="column.key === 'action'"> |
|
<TableAction |
|
:actions="[ |
|
{ |
|
icon: IconEnum.EDIT, |
|
label: t('action.edit'), |
|
auth: 'dept_edit', |
|
onClick: () => openModal(true, record), |
|
}, |
|
{ |
|
icon: IconEnum.DELETE, |
|
danger: true, |
|
label: t('action.delete'), |
|
auth: 'dept_delete', |
|
popConfirm: { |
|
title: t('common.delMessage'), |
|
placement: 'left', |
|
confirm: handleDelete.bind(null, record.id), |
|
}, |
|
}, |
|
]" |
|
/> |
|
</template> |
|
</template> |
|
</BasicTable> |
|
|
|
<DeptFormModal @register="registerModal" @success="reload()" /> |
|
</div> |
|
</template>
|
|
|