117 lines
3.0 KiB
Vue
117 lines
3.0 KiB
Vue
<script lang="ts" setup>
|
||
import type { OnActionClickParams, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||
import type { SystemOAuth2ClientApi } from '#/api/system/oauth2/client';
|
||
|
||
import { Page, useVbenModal } from '@vben/common-ui';
|
||
import { Button, message } from 'ant-design-vue';
|
||
import { Plus } from '@vben/icons';
|
||
import Form from './modules/form.vue';
|
||
import { DocAlert } from '#/components/doc-alert';
|
||
|
||
import { $t } from '#/locales';
|
||
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||
import { getOAuth2ClientPage, deleteOAuth2Client } from '#/api/system/oauth2/client';
|
||
import { useGridColumns, useGridFormSchema } from './data';
|
||
|
||
const [FormModal, formModalApi] = useVbenModal({
|
||
connectedComponent: Form,
|
||
destroyOnClose: true,
|
||
});
|
||
|
||
/** 刷新表格 */
|
||
function onRefresh() {
|
||
gridApi.query();
|
||
}
|
||
|
||
/** 创建 OAuth2 客户端 */
|
||
function onCreate() {
|
||
formModalApi.setData(null).open();
|
||
}
|
||
|
||
/** 编辑 OAuth2 客户端 */
|
||
function onEdit(row: SystemOAuth2ClientApi.SystemOAuth2Client) {
|
||
formModalApi.setData(row).open();
|
||
}
|
||
|
||
/** 删除 OAuth2 客户端 */
|
||
async function onDelete(row: SystemOAuth2ClientApi.SystemOAuth2Client) {
|
||
const hideLoading = message.loading({
|
||
content: $t('ui.actionMessage.deleting', [row.name]),
|
||
duration: 0,
|
||
key: 'action_process_msg',
|
||
});
|
||
try {
|
||
await deleteOAuth2Client(row.id as number);
|
||
message.success({
|
||
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
|
||
key: 'action_process_msg',
|
||
});
|
||
onRefresh();
|
||
} catch (error) {
|
||
hideLoading();
|
||
}
|
||
}
|
||
|
||
/** 表格操作按钮的回调函数 */
|
||
function onActionClick({
|
||
code,
|
||
row,
|
||
}: OnActionClickParams<SystemOAuth2ClientApi.SystemOAuth2Client>) {
|
||
switch (code) {
|
||
case 'edit': {
|
||
onEdit(row);
|
||
break;
|
||
}
|
||
case 'delete': {
|
||
onDelete(row);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
const [Grid, gridApi] = useVbenVxeGrid({
|
||
formOptions: {
|
||
schema: useGridFormSchema()
|
||
},
|
||
gridOptions: {
|
||
columns: useGridColumns(onActionClick),
|
||
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,
|
||
},
|
||
} as VxeTableGridOptions<SystemOAuth2ClientApi.SystemOAuth2Client>,
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<Page auto-content-height>
|
||
<DocAlert title="OAuth 2.0(SSO 单点登录)" url="https://doc.iocoder.cn/oauth2/" />
|
||
|
||
<FormModal @success="onRefresh" />
|
||
<Grid table-title="OAuth2 客户端列表">
|
||
<template #toolbar-tools>
|
||
<Button type="primary" @click="onCreate" v-access:code="['system:oauth2-client:create']">
|
||
<Plus class="size-5" />
|
||
{{ $t('ui.actionTitle.create', [' OAuth2.0 客户端']) }}
|
||
</Button>
|
||
</template>
|
||
</Grid>
|
||
</Page>
|
||
</template>
|