修复每页数量无效的问题
This commit is contained in:
parent
a0ee283f25
commit
ad9a8e5ccf
@ -101,8 +101,8 @@ const AssetUser = ({active, id}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="授权的用户列表"
|
headerTitle="授权的用户列表"
|
||||||
toolBarRender={() => [
|
toolBarRender={() => [
|
||||||
|
@ -102,8 +102,8 @@ const AssetUserGroup = ({id, active}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="授权的用户组列表"
|
headerTitle="授权的用户组列表"
|
||||||
toolBarRender={() => [
|
toolBarRender={() => [
|
||||||
|
@ -102,8 +102,8 @@ const LoginPolicyBind = ({visible, loginPolicyId}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="用户列表"
|
headerTitle="用户列表"
|
||||||
/>
|
/>
|
||||||
|
@ -95,8 +95,8 @@ const LoginPolicyUser = ({active, loginPolicyId}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="绑定用户列表"
|
headerTitle="绑定用户列表"
|
||||||
toolBarRender={() => [
|
toolBarRender={() => [
|
||||||
|
@ -114,8 +114,8 @@ const SessionCommandRecord = ({visible, sessionId}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="命令记录"
|
headerTitle="命令记录"
|
||||||
/>
|
/>
|
||||||
|
@ -101,8 +101,8 @@ const UserAsset = ({active, id, type}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="授权的资产列表"
|
headerTitle="授权的资产列表"
|
||||||
toolBarRender={() => [
|
toolBarRender={() => [
|
||||||
|
@ -109,8 +109,8 @@ const UserLoginPolicy = ({active, userId}) => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="用户登录策略"
|
headerTitle="用户登录策略"
|
||||||
toolBarRender={() => [
|
toolBarRender={() => [
|
||||||
|
@ -191,7 +191,7 @@ const MyAsset = () => {
|
|||||||
labelWidth: 'auto',
|
labelWidth: 'auto',
|
||||||
}}
|
}}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
defaultPageSize: 10,
|
||||||
}}
|
}}
|
||||||
dateFormatter="string"
|
dateFormatter="string"
|
||||||
headerTitle="资产列表"
|
headerTitle="资产列表"
|
||||||
|
Loading…
Reference in New Issue
Block a user