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.
74 lines
2.1 KiB
74 lines
2.1 KiB
<template> |
|
<div> |
|
<BasicTable @register="registerTable"> |
|
<template #toolbar> |
|
<a-button type="primary" v-auth="['system:post:create']" :preIcon="IconEnum.ADD" @click="handleCreate"> |
|
{{ 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: 'system:post:update', onClick: handleEdit.bind(null, record) }, |
|
{ |
|
icon: IconEnum.DELETE, |
|
color: 'error', |
|
label: t('action.delete'), |
|
auth: 'system:post:delete', |
|
popConfirm: { |
|
title: t('common.delMessage'), |
|
placement: 'left', |
|
confirm: handleDelete.bind(null, record) |
|
} |
|
} |
|
]" |
|
/> |
|
</template> |
|
</template> |
|
</BasicTable> |
|
</div> |
|
</template> |
|
<script lang="ts" setup> |
|
import { useI18n } from '@/hooks/web/useI18n' |
|
import { useMessage } from '@/hooks/web/useMessage' |
|
import { IconEnum } from '@/enums/appEnum' |
|
import { BasicTable, useTable, TableAction } from '@/components/Table' |
|
import { deleteForm, getFormPage } from '@/api/bpm/form' |
|
import { columns, searchFormSchema } from './form.data' |
|
|
|
defineOptions({ name: 'BpmForm' }) |
|
|
|
const { t } = useI18n() |
|
const { createMessage } = useMessage() |
|
|
|
const [registerTable, { reload }] = useTable({ |
|
title: '流程表单列表', |
|
api: getFormPage, |
|
columns, |
|
formConfig: { labelWidth: 120, schemas: searchFormSchema }, |
|
useSearchForm: true, |
|
showTableSetting: true, |
|
actionColumn: { |
|
width: 140, |
|
title: t('common.action'), |
|
dataIndex: 'action', |
|
fixed: 'right' |
|
} |
|
}) |
|
|
|
function handleCreate() { |
|
// openModal(true, { isUpdate: false }) |
|
} |
|
|
|
function handleEdit(record: Recordable) { |
|
console.info(record) |
|
// openModal(true, { record, isUpdate: true }) |
|
} |
|
|
|
async function handleDelete(record: Recordable) { |
|
await deleteForm(record.id) |
|
createMessage.success(t('common.delSuccessText')) |
|
reload() |
|
} |
|
</script>
|
|
|