refactor: oauth2 vxe

This commit is contained in:
xingyu4j
2022-11-13 14:40:51 +08:00
parent bdc988e5b7
commit 7250e23df3
9 changed files with 348 additions and 436 deletions

View File

@ -1,10 +1,9 @@
import { reactive } from 'vue'
import { useI18n } from '@/hooks/web/useI18n'
import { required } from '@/utils/formRules'
import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas'
import { DICT_TYPE } from '@/utils/dict'
const { t } = useI18n()
// 国际化
import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas'
const { t } = useI18n() // 国际化
// 表单校验
export const rules = reactive({
@ -20,122 +19,92 @@ export const rules = reactive({
})
// CrudSchema
const crudSchemas = reactive<CrudSchema[]>([
{
label: '客户端编号',
field: 'clientId',
form: {
show: false
const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'clientId',
primaryType: 'seq',
action: true,
columns: [
{
title: '客户端密钥',
field: 'secret'
},
detail: {
show: false
}
},
{
label: '客户端密钥',
field: 'secret'
},
{
label: '应用名',
field: 'name',
search: {
show: true
}
},
{
label: '应用图标',
field: 'logo'
},
{
label: t('common.status'),
field: 'status',
dictType: DICT_TYPE.COMMON_STATUS,
search: {
show: true
}
},
{
label: '访问令牌的有效期',
field: 'accessTokenValiditySeconds'
},
{
label: '刷新令牌的有效期',
field: 'refreshTokenValiditySeconds'
},
{
label: '授权类型',
field: 'authorizedGrantTypes',
dictType: DICT_TYPE.SYSTEM_OAUTH2_GRANT_TYPE
},
{
label: '授权范围',
field: 'scopes',
table: {
show: false
}
},
{
label: '自动授权范围',
field: 'autoApproveScopes',
table: {
show: false
}
},
{
label: '可重定向的 URI 地址',
field: 'redirectUris',
table: {
show: false
}
},
{
label: '权限',
field: 'authorities',
table: {
show: false
}
},
{
label: '资源',
field: 'resourceIds',
table: {
show: false
}
},
{
label: '附加信息',
field: 'additionalInformation',
table: {
show: false
{
title: '应用名',
field: 'name',
isSearch: true
},
form: {
component: 'Input',
componentProps: {
type: 'textarea',
rows: 4
},
colProps: {
span: 24
{
title: '应用图标',
field: 'logo'
},
{
title: t('common.status'),
field: 'status',
dictType: DICT_TYPE.COMMON_STATUS,
isSearch: true
},
{
title: '访问令牌的有效期',
field: 'accessTokenValiditySeconds'
},
{
title: '刷新令牌的有效期',
field: 'refreshTokenValiditySeconds'
},
{
title: '授权类型',
field: 'authorizedGrantTypes',
dictType: DICT_TYPE.SYSTEM_OAUTH2_GRANT_TYPE,
form: {
component: 'Select'
}
}
},
{
label: t('common.createTime'),
field: 'createTime',
form: {
show: false
}
},
{
label: t('table.action'),
field: 'action',
width: '240px',
form: {
show: false
},
detail: {
show: false
{
title: '授权范围',
field: 'scopes',
isTable: false
},
{
title: '自动授权范围',
field: 'autoApproveScopes',
isTable: false
},
{
title: '可重定向的 URI 地址',
field: 'redirectUris',
isTable: false
},
{
title: '权限',
field: 'authorities',
isTable: false
},
{
title: '资源',
field: 'resourceIds',
isTable: false
},
{
title: '附加信息',
field: 'additionalInformation',
isTable: false,
form: {
component: 'Input',
componentProps: {
type: 'textarea',
rows: 4
},
colProps: {
span: 24
}
}
},
{
title: t('common.createTime'),
field: 'createTime',
formatter: 'formatDate',
isForm: false
}
}
])
export const { allSchemas } = useCrudSchemas(crudSchemas)
]
})
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)