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.
58 lines
1.6 KiB
58 lines
1.6 KiB
<template> |
|
<div> |
|
<BasicTable @register="registerTable"> |
|
<template #bodyCell="{ column, record }"> |
|
<template v-if="column.key === 'action'"> |
|
<TableAction |
|
:actions="[ |
|
{ |
|
icon: 'ant-design:delete-outlined', |
|
color: 'error', |
|
label: '强退', |
|
popConfirm: { |
|
title: '是否确认强退', |
|
placement: 'left', |
|
confirm: handleDelete.bind(null, record) |
|
} |
|
} |
|
]" |
|
/> |
|
</template> |
|
</template> |
|
</BasicTable> |
|
</div> |
|
</template> |
|
<script lang="ts" setup name="Token"> |
|
import { useI18n } from '@/hooks/web/useI18n' |
|
import { BasicTable, useTable, TableAction } from '@/components/Table' |
|
import { deleteAccessTokenApi, getAccessTokenPageApi } from '@/api/system/oauth2/token' |
|
import { columns, searchFormSchema } from './token.data' |
|
import { useMessage } from '@/hooks/web/useMessage' |
|
|
|
const { t } = useI18n() |
|
const { createMessage } = useMessage() |
|
const [registerTable, { reload }] = useTable({ |
|
title: 'Token列表', |
|
api: getAccessTokenPageApi, |
|
columns, |
|
formConfig: { |
|
labelWidth: 120, |
|
schemas: searchFormSchema |
|
}, |
|
useSearchForm: true, |
|
showTableSetting: true, |
|
showIndexColumn: false, |
|
actionColumn: { |
|
width: 100, |
|
title: t('common.action'), |
|
dataIndex: 'action', |
|
fixed: 'right' |
|
} |
|
}) |
|
|
|
async function handleDelete(record: Recordable) { |
|
await deleteAccessTokenApi(record.id) |
|
createMessage.success(t('common.delSuccessText')) |
|
reload() |
|
} |
|
</script>
|
|
|