Files
iot-device-management-frontend/apps/web-antd/src/views/system/oauth2/client/index.vue

135 lines
3.4 KiB
Vue
Raw Normal View History

2025-04-06 19:49:21 +08:00
<script lang="ts" setup>
2025-05-19 17:58:06 +08:00
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
2025-04-06 19:49:21 +08:00
import type { SystemOAuth2ClientApi } from '#/api/system/oauth2/client';
import { Page, useVbenModal } from '@vben/common-ui';
2025-05-19 17:58:06 +08:00
import { message } from 'ant-design-vue';
2025-04-22 11:25:11 +08:00
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
2025-04-22 11:25:11 +08:00
import {
deleteOAuth2Client,
getOAuth2ClientPage,
} from '#/api/system/oauth2/client';
import { DocAlert } from '#/components/doc-alert';
import { $t } from '#/locales';
2025-04-06 19:49:21 +08:00
import { useGridColumns, useGridFormSchema } from './data';
2025-04-22 11:25:11 +08:00
import Form from './modules/form.vue';
2025-04-06 19:49:21 +08:00
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 创建 OAuth2 客户端 */
function onCreate() {
formModalApi.setData(null).open();
}
/** 编辑 OAuth2 客户端 */
2025-04-22 22:10:33 +08:00
function onEdit(row: SystemOAuth2ClientApi.OAuth2Client) {
2025-04-06 19:49:21 +08:00
formModalApi.setData(row).open();
}
/** 删除 OAuth2 客户端 */
2025-04-22 22:10:33 +08:00
async function onDelete(row: SystemOAuth2ClientApi.OAuth2Client) {
2025-05-19 17:58:06 +08:00
message.loading({
2025-04-06 19:49:21 +08:00
content: $t('ui.actionMessage.deleting', [row.name]),
2025-05-19 17:58:06 +08:00
key: 'action_key_msg',
2025-04-06 19:49:21 +08:00
});
2025-05-19 17:58:06 +08:00
await deleteOAuth2Client(row.id as number);
message.success({
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
key: 'action_key_msg',
});
onRefresh();
2025-04-06 19:49:21 +08:00
}
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
2025-04-22 11:25:11 +08:00
schema: useGridFormSchema(),
2025-04-06 19:49:21 +08:00
},
gridOptions: {
2025-05-19 17:58:06 +08:00
columns: useGridColumns(),
2025-04-06 19:49:21 +08:00
height: 'auto',
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getOAuth2ClientPage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
toolbarConfig: {
refresh: { code: 'query' },
search: true,
},
2025-04-22 22:10:33 +08:00
} as VxeTableGridOptions<SystemOAuth2ClientApi.OAuth2Client>,
2025-04-06 19:49:21 +08:00
});
</script>
<template>
<Page auto-content-height>
<template #doc>
<DocAlert
title="OAuth 2.0SSO 单点登录)"
url="https://doc.iocoder.cn/oauth2/"
/>
</template>
2025-04-06 19:49:21 +08:00
<FormModal @success="onRefresh" />
<Grid table-title="OAuth2 客户端列表">
<template #toolbar-tools>
2025-05-19 17:58:06 +08:00
<TableAction
:actions="[
{
label: $t('ui.actionTitle.create', [' OAuth2.0 客户端']),
type: 'primary',
icon: ACTION_ICON.ADD,
auth: ['system:oauth2-client:create'],
onClick: onCreate,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: $t('common.edit'),
type: 'link',
icon: ACTION_ICON.EDIT,
auth: ['system:oauth2-client:update'],
onClick: onEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'link',
danger: true,
icon: ACTION_ICON.DELETE,
auth: ['system:oauth2-client:delete'],
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
confirm: onDelete.bind(null, row),
},
},
]"
/>
2025-04-06 19:49:21 +08:00
</template>
</Grid>
</Page>
</template>