update src/views/infra/apiAccessLog/index.vue.
Signed-off-by: yanchangshan <5333290+yanchangshan@user.noreply.gitee.com>pull/2/head
parent
4115d7f7ba
commit
54f97dcbc3
|
@ -2,18 +2,12 @@
|
|||
<div>
|
||||
<BasicTable @register="registerTable">
|
||||
<template #toolbar>
|
||||
<a-button type="primary" @click="handleCreate"> 新增 </a-button>
|
||||
<a-button type="warning" @click="handleExport"> 导出 </a-button>
|
||||
</template>
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="column.key === 'action'">
|
||||
<TableAction
|
||||
:actions="[
|
||||
{
|
||||
icon: 'clarity:note-edit-line',
|
||||
label: '修改',
|
||||
onClick: handleEdit.bind(null, record)
|
||||
},
|
||||
{
|
||||
icon: 'ant-design:delete-outlined',
|
||||
color: 'error',
|
||||
|
@ -45,7 +39,7 @@ const { t } = useI18n()
|
|||
const { createConfirm, createMessage } = useMessage()
|
||||
const [registerModal, { openModal }] = useModal()
|
||||
const [registerTable, { getForm, reload }] = useTable({
|
||||
title: 'API 访问日志表列表',
|
||||
title: 'API访问日志列表',
|
||||
api: getApiAccessLogPageApi,
|
||||
columns,
|
||||
formConfig: {
|
||||
|
@ -63,19 +57,6 @@ const [registerTable, { getForm, reload }] = useTable({
|
|||
}
|
||||
})
|
||||
|
||||
function handleCreate() {
|
||||
openModal(true, {
|
||||
isUpdate: false
|
||||
})
|
||||
}
|
||||
|
||||
function handleEdit(record: Recordable) {
|
||||
openModal(true, {
|
||||
record,
|
||||
isUpdate: true
|
||||
})
|
||||
}
|
||||
|
||||
async function handleExport() {
|
||||
createConfirm({
|
||||
title: '导出',
|
||||
|
@ -93,5 +74,4 @@ async function handleDelete(record: Recordable) {
|
|||
createMessage.success(t('common.delSuccessText'))
|
||||
reload()
|
||||
}
|
||||
|
||||
</script>
|
Loading…
Reference in New Issue