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