vue3【client】:1)review 样式
This commit is contained in:
parent
20fc9cfb83
commit
2c32289c4a
@ -49,21 +49,21 @@ const crudSchemas = reactive<VxeCrudSchema>({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '访问令牌的有效期',
|
title: '访问令牌的有效期',
|
||||||
field: 'accessTokenValiditySeconds',
|
field: 'accessTokenValiditySeconds', // TODO 星语:展示时,要有 xxx 秒
|
||||||
form: {
|
form: {
|
||||||
component: 'InputNumber'
|
component: 'InputNumber'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '刷新令牌的有效期',
|
title: '刷新令牌的有效期',
|
||||||
field: 'refreshTokenValiditySeconds',
|
field: 'refreshTokenValiditySeconds', // TODO 星语:展示时,要有 xxx 秒
|
||||||
form: {
|
form: {
|
||||||
component: 'InputNumber'
|
component: 'InputNumber'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '授权类型',
|
title: '授权类型',
|
||||||
field: 'authorizedGrantTypes',
|
field: 'authorizedGrantTypes', // TODO 星语:详情展示时,应该类似 table 也是多个 tag
|
||||||
table: {
|
table: {
|
||||||
width: 300,
|
width: 300,
|
||||||
slots: {
|
slots: {
|
||||||
@ -74,17 +74,17 @@ const crudSchemas = reactive<VxeCrudSchema>({
|
|||||||
{
|
{
|
||||||
title: '授权范围',
|
title: '授权范围',
|
||||||
field: 'scopes', // TODO @星语:带输入的 SELECT
|
field: 'scopes', // TODO @星语:带输入的 SELECT
|
||||||
isTable: false
|
isTable: false // TODO 星语:详情展示时,应该类似 table 也是多个 tag
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '自动授权范围',
|
title: '自动授权范围',
|
||||||
field: 'autoApproveScopes', // TODO @星语:带输入的 SELECT
|
field: 'autoApproveScopes', // TODO @星语:带输入的 SELECT
|
||||||
isTable: false
|
isTable: false // TODO 星语:详情展示时,应该类似 table 也是多个 tag
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '可重定向的 URI 地址',
|
title: '可重定向的 URI 地址',
|
||||||
field: 'redirectUris', // TODO @星语:带输入的 SELECT
|
field: 'redirectUris', // TODO @星语:带输入的 SELECT
|
||||||
isTable: false
|
isTable: false // TODO 星语:详情展示时,应该类似 table 也是多个 tag
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '权限',
|
title: '权限',
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<vxe-grid ref="xGrid" v-bind="gridOptions" class="xtable-scrollbar">
|
<vxe-grid ref="xGrid" v-bind="gridOptions" class="xtable-scrollbar">
|
||||||
<!-- 操作:新增 -->
|
|
||||||
<template #toolbar_buttons>
|
<template #toolbar_buttons>
|
||||||
|
<!-- 操作:新增 -->
|
||||||
<XButton
|
<XButton
|
||||||
type="primary"
|
type="primary"
|
||||||
preIcon="ep:zoom-in"
|
preIcon="ep:zoom-in"
|
||||||
|
Loading…
Reference in New Issue
Block a user