antd-management-fast-framework 2.11.43 → 2.11.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/ModalExtra/index.d.ts +17 -0
- package/es/framework/DataMultiPageView/MultiPageModal/index.d.ts +74 -0
- package/es/framework/DataMultiPageView/MultiPageSelectModal/index.d.ts +39 -0
- package/es/framework/DataMultiPageView/index.d.ts +4 -0
- package/es/framework/DataSinglePageView/SinglePageModal/index.d.ts +77 -0
- package/es/framework/DataSinglePageView/SinglePageSelectModal/index.d.ts +32 -0
- package/es/framework/DataSinglePageView/index.d.ts +4 -0
- package/es/index.css +4 -2
- package/es/index.js +2 -2
- package/package.json +32 -31
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
export class ModalExtra extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
buildBodyStyle: () => {
|
|
5
|
+
position?: undefined;
|
|
6
|
+
overflowX?: undefined;
|
|
7
|
+
} | {
|
|
8
|
+
position: string;
|
|
9
|
+
overflowX: string;
|
|
10
|
+
};
|
|
11
|
+
renderPresetTitle: () => string;
|
|
12
|
+
renderOverlayControlButton: () => React.JSX.Element | null;
|
|
4
13
|
render(): React.JSX.Element;
|
|
5
14
|
}
|
|
15
|
+
export namespace ModalExtra {
|
|
16
|
+
namespace defaultProps {
|
|
17
|
+
let icon: null;
|
|
18
|
+
let titlePrefix: null;
|
|
19
|
+
let title: null;
|
|
20
|
+
let subtitle: null;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
6
23
|
import React from 'react';
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
export class MultiPageModal extends MultiPage {
|
|
2
|
+
static getDerivedStateFromProps(nextProperties: any, previousState: any): {
|
|
3
|
+
externalData: any;
|
|
4
|
+
};
|
|
5
|
+
constructor(properties: any, visibleFlag: any);
|
|
6
|
+
visibleFlag: string;
|
|
7
|
+
contentWrapperType: string;
|
|
8
|
+
loadRemoteRequestAfterMount: boolean;
|
|
9
|
+
resetDataAfterLoad: boolean;
|
|
10
|
+
reloadWhenShow: boolean;
|
|
11
|
+
reloadAnimalPromptComplete: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* 构建附加的分页配置
|
|
14
|
+
* @returns
|
|
15
|
+
*/
|
|
16
|
+
establishTableAdditionalConfig: () => {
|
|
17
|
+
style: {
|
|
18
|
+
padding: string;
|
|
19
|
+
height: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
getVisibleFlag(): any;
|
|
23
|
+
adjustAfterCloseParameter: () => null;
|
|
24
|
+
/**
|
|
25
|
+
* 当可见性变为显示时执行
|
|
26
|
+
*/
|
|
27
|
+
doOtherWhenChangeVisibleToShow: () => void;
|
|
28
|
+
/**
|
|
29
|
+
* 当可见性变为显示时附加的执行
|
|
30
|
+
*/
|
|
31
|
+
executeAfterDoOtherWhenChangeVisibleToShow: () => void;
|
|
32
|
+
/**
|
|
33
|
+
* 当可见性变为隐藏时执行
|
|
34
|
+
*/
|
|
35
|
+
doOtherWhenChangeVisibleToHide: () => void;
|
|
36
|
+
/**
|
|
37
|
+
* 当可见性变为隐藏后附加的执行
|
|
38
|
+
*/
|
|
39
|
+
executeAfterDoOtherWhenChangeVisibleToHide: () => void;
|
|
40
|
+
/**
|
|
41
|
+
* 当可见性变更后的附加执行
|
|
42
|
+
*/
|
|
43
|
+
executeOtherAfterDoOtherWhenChangeVisible: () => void;
|
|
44
|
+
/**
|
|
45
|
+
* 当可见性发生变化时执行
|
|
46
|
+
*/
|
|
47
|
+
doOtherWhenChangeVisible: (currentVisible: any) => void;
|
|
48
|
+
onCancel: () => void;
|
|
49
|
+
/**
|
|
50
|
+
* 选择数据
|
|
51
|
+
* @param {*} handleData
|
|
52
|
+
*/
|
|
53
|
+
selectRecord: ({ handleData }: any) => void;
|
|
54
|
+
renderPresetTitleIcon: () => React.JSX.Element;
|
|
55
|
+
buildTitlePrevText: () => string;
|
|
56
|
+
buildTitleText: () => any;
|
|
57
|
+
buildTitleSubText: () => string;
|
|
58
|
+
hideModal: () => void;
|
|
59
|
+
renderPresetListMainViewContainor: () => React.JSX.Element;
|
|
60
|
+
renderPresetContentContainor: () => React.JSX.Element;
|
|
61
|
+
renderPresetModalInner: () => React.JSX.Element;
|
|
62
|
+
renderOverlayContent: () => null;
|
|
63
|
+
renderFurther(): React.JSX.Element;
|
|
64
|
+
}
|
|
65
|
+
export namespace MultiPageModal {
|
|
66
|
+
namespace defaultProps {
|
|
67
|
+
let title: string;
|
|
68
|
+
let hideModalAfterSelect: boolean;
|
|
69
|
+
let confirmSelect: boolean;
|
|
70
|
+
let width: number;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
import { MultiPage } from '../MultiPage';
|
|
74
|
+
import React from 'react';
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export class MultiPageSelectModal extends MultiPageModal {
|
|
2
|
+
/**
|
|
3
|
+
* 指定使用选择确认模式, 默认 false, 不使用二次选择确认时可不用特殊指定
|
|
4
|
+
*/
|
|
5
|
+
confirmSelect: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* 已选择的数据集合
|
|
8
|
+
*/
|
|
9
|
+
selectListData: any[];
|
|
10
|
+
/**
|
|
11
|
+
* 选择状态是否发生变化
|
|
12
|
+
*/
|
|
13
|
+
selectChanged: boolean;
|
|
14
|
+
establishListItemDropdownConfig: (record: any) => {
|
|
15
|
+
size: string;
|
|
16
|
+
text: string;
|
|
17
|
+
placement: string;
|
|
18
|
+
icon: import("react").JSX.Element;
|
|
19
|
+
handleButtonClick: ({ handleData }: {
|
|
20
|
+
handleData: any;
|
|
21
|
+
}) => void;
|
|
22
|
+
handleData: any;
|
|
23
|
+
confirm: boolean;
|
|
24
|
+
title: string;
|
|
25
|
+
};
|
|
26
|
+
buildSelectNotificationDescription: (data: any) => string;
|
|
27
|
+
selectRecord: ({ handleData }: {
|
|
28
|
+
handleData: any;
|
|
29
|
+
}) => void;
|
|
30
|
+
renderPresetListViewItemActionSelect: (item: any, index: any) => import("react").JSX.Element;
|
|
31
|
+
}
|
|
32
|
+
export namespace MultiPageSelectModal {
|
|
33
|
+
namespace defaultProps {
|
|
34
|
+
let width: number;
|
|
35
|
+
let multiSelect: boolean;
|
|
36
|
+
let hideAfterSelect: boolean;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
import { MultiPageModal } from '../MultiPageModal';
|
|
@@ -3,8 +3,12 @@ export namespace DataMultiPageView {
|
|
|
3
3
|
export { MultiPage };
|
|
4
4
|
export { MultiPageDrawer };
|
|
5
5
|
export { MultiPageSelectDrawer };
|
|
6
|
+
export { MultiPageModal };
|
|
7
|
+
export { MultiPageSelectModal };
|
|
6
8
|
}
|
|
7
9
|
import { InnerMultiPage } from './InnerMultiPage';
|
|
8
10
|
import { MultiPage } from './MultiPage';
|
|
9
11
|
import { MultiPageDrawer } from './MultiPageDrawer';
|
|
10
12
|
import { MultiPageSelectDrawer } from './MultiPageSelectDrawer';
|
|
13
|
+
import { MultiPageModal } from './MultiPageModal';
|
|
14
|
+
import { MultiPageSelectModal } from './MultiPageSelectModal';
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
export class SinglePageModal extends SinglePage {
|
|
2
|
+
static getDerivedStateFromProps(nextProperties: any, previousState: any): {
|
|
3
|
+
externalData: any;
|
|
4
|
+
};
|
|
5
|
+
constructor(properties: any, visibleFlag: any);
|
|
6
|
+
visibleFlag: string;
|
|
7
|
+
contentWrapperType: string;
|
|
8
|
+
loadRemoteRequestAfterMount: boolean;
|
|
9
|
+
resetDataAfterLoad: boolean;
|
|
10
|
+
reloadWhenShow: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* 构建附加的分页配置
|
|
13
|
+
* @returns
|
|
14
|
+
*/
|
|
15
|
+
establishTableAdditionalConfig: () => {
|
|
16
|
+
style: {
|
|
17
|
+
padding: string;
|
|
18
|
+
height: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
getVisibleFlag(): any;
|
|
22
|
+
adjustAfterCloseParameter: () => null;
|
|
23
|
+
/**
|
|
24
|
+
* 当可见性变为显示时执行
|
|
25
|
+
*/
|
|
26
|
+
doOtherWhenChangeVisibleToShow: () => void;
|
|
27
|
+
/**
|
|
28
|
+
* 当可见性变为显示时附加的执行
|
|
29
|
+
*/
|
|
30
|
+
executeAfterDoOtherWhenChangeVisibleToShow: () => void;
|
|
31
|
+
/**
|
|
32
|
+
* 当可见性变为隐藏时执行
|
|
33
|
+
*/
|
|
34
|
+
doOtherWhenChangeVisibleToHide: () => void;
|
|
35
|
+
/**
|
|
36
|
+
* 当可见性变为隐藏后附加的执行
|
|
37
|
+
*/
|
|
38
|
+
executeAfterDoOtherWhenChangeVisibleToHide: () => void;
|
|
39
|
+
/**
|
|
40
|
+
* 当可见性变更后的附加执行
|
|
41
|
+
*/
|
|
42
|
+
executeOtherAfterDoOtherWhenChangeVisible: () => void;
|
|
43
|
+
/**
|
|
44
|
+
* 当可见性变为显示时附加的执行
|
|
45
|
+
*/
|
|
46
|
+
executeModalClassNames: () => any[];
|
|
47
|
+
/**
|
|
48
|
+
* 当可见性发生变化时执行
|
|
49
|
+
*/
|
|
50
|
+
doOtherWhenChangeVisible: (currentVisible: any) => void;
|
|
51
|
+
onCancel: () => void;
|
|
52
|
+
/**
|
|
53
|
+
* 选择数据
|
|
54
|
+
* @param {*} handleData
|
|
55
|
+
*/
|
|
56
|
+
selectRecord: ({ handleData }: any) => void;
|
|
57
|
+
renderPresetTitleIcon: () => React.JSX.Element;
|
|
58
|
+
buildTitlePrevText: () => string;
|
|
59
|
+
buildTitleText: () => any;
|
|
60
|
+
buildTitleSubText: () => string;
|
|
61
|
+
hideModal: () => void;
|
|
62
|
+
renderPresetListMainViewContainor: () => React.JSX.Element;
|
|
63
|
+
renderPresetContentContainor: () => React.JSX.Element;
|
|
64
|
+
renderPresetModalInner: () => React.JSX.Element;
|
|
65
|
+
renderOverlayContent: () => null;
|
|
66
|
+
renderFurther(): React.JSX.Element;
|
|
67
|
+
}
|
|
68
|
+
export namespace SinglePageModal {
|
|
69
|
+
namespace defaultProps {
|
|
70
|
+
let title: string;
|
|
71
|
+
let hideModalAfterSelect: boolean;
|
|
72
|
+
let confirmSelect: boolean;
|
|
73
|
+
let width: number;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
import { SinglePage } from '../SinglePage';
|
|
77
|
+
import React from 'react';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export class SinglePageSelectModal extends SinglePageModal {
|
|
2
|
+
/**
|
|
3
|
+
* 指定使用选择确认模式, 默认 false, 不使用二次选择确认时可不用特殊指定
|
|
4
|
+
*/
|
|
5
|
+
confirmSelect: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* 已选择的数据集合
|
|
8
|
+
*/
|
|
9
|
+
selectListData: any[];
|
|
10
|
+
/**
|
|
11
|
+
* 选择状态是否发生变化
|
|
12
|
+
*/
|
|
13
|
+
selectChanged: boolean;
|
|
14
|
+
establishListItemDropdownConfig: (record: any) => {
|
|
15
|
+
size: string;
|
|
16
|
+
text: string;
|
|
17
|
+
placement: string;
|
|
18
|
+
icon: import("react").JSX.Element;
|
|
19
|
+
handleButtonClick: ({ handleData }: {
|
|
20
|
+
handleData: any;
|
|
21
|
+
}) => void;
|
|
22
|
+
handleData: any;
|
|
23
|
+
confirm: boolean;
|
|
24
|
+
title: string;
|
|
25
|
+
};
|
|
26
|
+
buildSelectNotificationDescription: (data: any) => string;
|
|
27
|
+
selectRecord: ({ handleData }: {
|
|
28
|
+
handleData: any;
|
|
29
|
+
}) => void;
|
|
30
|
+
renderPresetListViewItemActionSelect: (item: any, index: any) => import("react").JSX.Element;
|
|
31
|
+
}
|
|
32
|
+
import { SinglePageModal } from '../SinglePageModal';
|
|
@@ -3,8 +3,12 @@ export namespace DataSinglePageView {
|
|
|
3
3
|
export { SinglePage };
|
|
4
4
|
export { SinglePageDrawer };
|
|
5
5
|
export { SinglePageSelectDrawer };
|
|
6
|
+
export { SinglePageModal };
|
|
7
|
+
export { SinglePageSelectModal };
|
|
6
8
|
}
|
|
7
9
|
import { InnerSinglePage } from './InnerSinglePage';
|
|
8
10
|
import { SinglePage } from './SinglePage';
|
|
9
11
|
import { SinglePageDrawer } from './SinglePageDrawer';
|
|
10
12
|
import { SinglePageSelectDrawer } from './SinglePageSelectDrawer';
|
|
13
|
+
import { SinglePageModal } from './SinglePageModal';
|
|
14
|
+
import { SinglePageSelectModal } from './SinglePageSelectModal';
|
package/es/index.css
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
.index_antd-management-fast-framework-test__fJi5r{color:#fff}.ant-pro .ant-pro-layout .ant-pro-layout-bg-list{background:#f0f2f5}.ant-pro .ant-pro-layout .ant-pro-layout-container{background-color:#f0f2f5}.ant-pro-top-nav-header .ant-pro-top-nav-header-logo .ant-typography h1{font-size:16px;height:auto;margin-bottom:0}.ant-pro-layout a .amf-header-logo-title-box h1{font-size:16px;height:auto;margin:0}.antd-management-fast>.ant-pro-layout>.ant-layout.ant-layout-has-sider>.ant-layout-sider.ant-layout-sider-collapsed>.ant-layout-sider-children .ant-menu.ant-menu-root.ant-menu-vertical.ant-pro-sider-menu.ant-pro-base-menu-inline-collapsed.ant-menu-inline-collapsed .ant-menu-item.ant-menu-item-only-child.ant-pro-base-menu-inline-menu-item:has(.ant-pro-base-menu-inline-item-collapsed-show-title){height:48px}.antd-management-fast>.ant-pro-layout>.ant-layout.ant-layout-has-sider>.ant-layout-sider.ant-layout-sider-collapsed>.ant-layout-sider-children .ant-menu.ant-menu-root.ant-menu-vertical.ant-pro-sider-menu.ant-pro-base-menu-inline-collapsed.ant-menu-inline-collapsed .ant-pro-base-menu-inline-item-text.ant-pro-base-menu-inline-item-text-has-icon{font-size:12px;margin-top:0;text-align:center}.antd-management-fast>.ant-pro-layout>.ant-layout.ant-layout-has-sider>.ant-layout-sider.ant-layout-sider-collapsed>.ant-layout-sider-children .ant-menu-submenu-title:has(.ant-pro-base-menu-inline-item-collapsed-show-title){height:48px}.ant-layout-sider-children .ant-pro-sider-extra.ant-pro-sider-extra-no-logo{margin-top:0}
|
|
1
|
+
.index_antd-management-fast-framework-test__fJi5r{color:#fff}.ant-pro .ant-pro-layout .ant-pro-layout-bg-list{background:#f0f2f5}.ant-pro .ant-pro-layout .ant-pro-layout-container{background-color:#f0f2f5}.ant-pro-top-nav-header .ant-pro-top-nav-header-logo .ant-typography h1{font-size:16px;height:auto;margin-bottom:0}.ant-pro-layout a .amf-header-logo-title-box h1{font-size:16px;height:auto;margin:0}.antd-management-fast>.ant-pro-layout>.ant-layout.ant-layout-has-sider>.ant-layout-sider.ant-layout-sider-collapsed>.ant-layout-sider-children .ant-menu.ant-menu-root.ant-menu-vertical.ant-pro-sider-menu.ant-pro-base-menu-inline-collapsed.ant-menu-inline-collapsed .ant-menu-item.ant-menu-item-only-child.ant-pro-base-menu-inline-menu-item:has(.ant-pro-base-menu-inline-item-collapsed-show-title){height:48px}.antd-management-fast>.ant-pro-layout>.ant-layout.ant-layout-has-sider>.ant-layout-sider.ant-layout-sider-collapsed>.ant-layout-sider-children .ant-menu.ant-menu-root.ant-menu-vertical.ant-pro-sider-menu.ant-pro-base-menu-inline-collapsed.ant-menu-inline-collapsed .ant-pro-base-menu-inline-item-text.ant-pro-base-menu-inline-item-text-has-icon{font-size:12px;margin-top:0;text-align:center}.antd-management-fast>.ant-pro-layout>.ant-layout.ant-layout-has-sider>.ant-layout-sider.ant-layout-sider-collapsed>.ant-layout-sider-children .ant-menu-submenu-title:has(.ant-pro-base-menu-inline-item-collapsed-show-title){height:48px}.ant-layout-sider-children .ant-pro-sider-extra.ant-pro-sider-extra-no-logo{margin-top:0}.ant-select-selection-item{height:100%}
|
|
2
2
|
.index_titleText__fh-tY{margin-left:2px}
|
|
3
3
|
.index_fill__a7Wq9,.index_fill__a7Wq9 .ant-spin-container{height:100%;width:100%}
|
|
4
4
|
.index_cardContainor__9hPAi,.index_cardContainor__9hPAi .ant-card-head:before{display:block}
|
|
5
5
|
.index_mainContainor__OlU-H{height:100%}.index_mainContainor__OlU-H .index_contentContainor__Ghkie{background-color:#f0f2f5;height:100%;overflow:auto}.index_mainContainor__OlU-H .index_titleText__teFu7{margin-left:2px}.index_mainContainor__OlU-H .index_bottomBar__xN76n{background-color:#fff;border-top:1px solid #e8e8e8;box-shadow:inset 0 9px 8px -5px rgba(5,5,5,.06);padding:10px}.index_mainContainor__OlU-H .ant-layout{background-color:#fff}.index_mainContainor__OlU-H .ant-layout-footer{padding:0}.index_mainContainor__OlU-H .ant-card{border-radius:0;box-shadow:none}
|
|
6
6
|
.index_previewContainor__S8pdu{width:100%}.index_contentContainor__g0How{background-color:#f0f2f5;height:100%;overflow:auto}
|
|
7
|
+
.index_titleText__KCvZ-{margin-left:2px}
|
|
7
8
|
.index_cardTitle__8PcER{margin-left:4px}
|
|
8
9
|
.index_batchAction__oUDJ-{width:auto}
|
|
9
10
|
.index_columnSetting__3pXyD{width:auto}.index_topTitle__DukWj{align-items:center;display:flex;height:32px;justify-content:space-between}.index_list__Sawo5{display:flex;flex-direction:column;width:168px}.index_list__Sawo5 .index_title__6PP8V{color:#8c8c8c;font-size:12px;margin-bottom:8px}.index_list__Sawo5 .index_item__26IUr{display:block;width:100%}.index_list__Sawo5 .index_item__26IUr .index_option__fh9qw{cursor:pointer;display:none;float:right}.index_list__Sawo5 .index_item__26IUr .index_option__fh9qw>span>i.index_anticon__rcn9B{color:var(--amf-primary-color)}.index_list__Sawo5 .index_item__26IUr .index_option__fh9qw>span+span{margin-left:8px}.index_list__Sawo5 .index_item__26IUr:hover .index_columnSettingList-item-option__WVIeN{display:block}.index_list__Sawo5 .index_checkbox__NKL4Z{margin-bottom:8px;margin-left:0}.index_list__Sawo5 .index_checkbox__NKL4Z :last-child{margin-bottom:0}
|
|
10
11
|
@media screen and (min-width:var(--amf-screen-lg )){.index_amf-data-list-view-base_containorSearch__Peuxu .ant-card-body{padding-bottom:0}}@media screen and (min-width:var(--amf-screen-md )){.index_amf-data-list-view-base_containorSearch__Peuxu .ant-card-body{padding-bottom:0}}@media screen and (min-width:var(--amf-screen-xl )){.index_amf-data-list-view-base_containorSearch__Peuxu .ant-card-body{padding-bottom:0}}@media screen and (min-width:var(--amf-screen-xxl )){.index_amf-data-list-view-base_containorSearch__Peuxu .ant-card-body{padding-bottom:0}}.index_amf-data-list-view-base_containorTable_alertContainor__Pwdgj{margin:0 0 16px}.index_amf-data-list-view-base_containorTable_alertContainor_alertInfo__Ola2i{display:flex}.index_amf-data-list-view-base_containorTable_alertContainor_alertInfo_alertContent__KJoeG{flex:1}.index_amf-data-list-view-base_containorTable_alertContainor_alertInfo_alertOption__AjD2E{min-width:48px;padding-left:16px}.index_amf-data-list-view-base_tableListForm__U4Ev2 .ant-form-item{display:flex;margin-right:0}.index_amf-data-list-view-base_tableListForm__U4Ev2 .ant-form-item>.ant-form-item-label{line-height:32px;padding-right:8px;width:auto}.index_amf-data-list-view-base_tableListForm__U4Ev2 .ant-form-item .ant-form-item-control{flex:1;line-height:32px}.index_amf-data-list-view-base_tableListForm_submitButtons__1uoXF{margin-bottom:24px;white-space:nowrap}.ant-page-header-heading-title{font-size:16px}.ant-page-header{padding-bottom:12px}.amf-data-list-view-base_containorTable.ant-card{border-radius:0;box-shadow:none}@media screen and (max-width:var(--amf-screen-lg )){.index_tableListForm__j6880 .ant-form-item{margin-right:24px}}@media screen and (max-width:var(--amf-screen-md )){.index_tableListForm__j6880 .ant-form-item{margin-right:8px}}
|
|
11
12
|
.index_buttonText__n69Cb{margin-left:10px}.index_modalExtraInner__Moowl .ant-card{border-radius:0;box-shadow:none}
|
|
12
13
|
.index_containorBox__Jpyhm{max-height:380px;overflow-y:auto}.index_containorBox__Jpyhm .index_ant-upload-list-text__ty-1w{display:none}.index_containorBox__Jpyhm .index_ant-upload-select-picture-card__ymVAA i{color:#999;font-size:32px}.index_containorBox__Jpyhm .index_ant-upload-select-picture-card__ymVAA .index_ant-upload-text__Ay6FS{color:#666;margin-top:8px}.index_containorBox__Jpyhm .index_imageItem__ygOa9{height:48px;width:48px}
|
|
13
|
-
.index_containorBox__fgRQw .index_titleIcon__tkFlu{margin-right:10px}.index_containorBox__fgRQw .index_titleText__WYAKq{margin-left:2px}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_contentContainor__nqqOe{padding:24px}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_containorTable__4LcOW .index_iconAction__OAVDt{border:0;color:#000}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_backendPagination__kPEj8 .ant-table,.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_frontendPagination__hD81U .ant-table{height:calc(100% - 52px)}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_noneFrontendPagination__xrLoA .ant-table{height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-layout{background-color:#fff;min-height:calc(100vh - 55px)}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-layout-footer{padding:0}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-card{border-radius:0;box-shadow:none}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper,.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading{height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container{height:100%;overflow-x:hidden}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container{display:flex;flex-direction:column;height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-content,.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container:before{height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header{flex:0 1 auto}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header .ant-table-thead{max-height:47px}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-body{flex:1 1 auto}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-pagination{box-shadow:inset 0 9px 8px -5px rgba(5,5,5,.06);margin-bottom:0;margin-top:0;padding-bottom:10px;padding-top:10px}
|
|
14
|
+
.index_containorBox__fgRQw .index_titleIcon__tkFlu{margin-right:10px}.index_containorBox__fgRQw .index_titleText__WYAKq{margin-left:2px}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_contentContainor__nqqOe{padding:24px}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_containorTable__4LcOW .index_iconAction__OAVDt{border:0;color:#000}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_backendPagination__kPEj8 .ant-table,.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_frontendPagination__hD81U .ant-table{height:calc(100% - 52px)}.index_containorBox__fgRQw .index_mainContainor__4lPyG .index_noneFrontendPagination__xrLoA .ant-table{height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-layout{background-color:#fff;min-height:calc(100vh - 55px)}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-layout-footer{padding:0}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-card{border-radius:0;box-shadow:none}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper,.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading{height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container{height:100%;overflow-x:hidden}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container{display:flex;flex-direction:column;height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-content,.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container:before{height:100%}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header{flex:0 1 auto}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header .ant-table-thead{max-height:47px}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-body{flex:1 1 auto}.index_containorBox__fgRQw .index_mainContainor__4lPyG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-pagination{box-shadow:inset 0 9px 8px -5px rgba(5,5,5,.06);margin-bottom:0;margin-top:0;padding-bottom:10px;padding-top:10px}
|
|
15
|
+
.index_containorBox__I-m6k .index_titleIcon__YiBCb{margin-right:10px}.index_containorBox__I-m6k .index_titleText__hE4xt{margin-left:2px}.index_containorBox__I-m6k .index_mainContainor__RhaGK .index_contentContainor__wVKb5{border-top:1px solid #f0f2f5;padding:22px 0 0}.index_containorBox__I-m6k .index_mainContainor__RhaGK .index_containorTable__QiLwK .index_iconAction__PmKrp{border:0;color:#000}.index_containorBox__I-m6k .index_mainContainor__RhaGK .index_backendPagination__-k2bN .ant-table,.index_containorBox__I-m6k .index_mainContainor__RhaGK .index_frontendPagination__rfIUS .ant-table{height:calc(100% - 52px)}.index_containorBox__I-m6k .index_mainContainor__RhaGK .index_noneFrontendPagination__kr8Ra .ant-table{height:100%}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-layout{background-color:#fff;min-height:calc(100vh - 55px)}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-layout-footer{padding:0}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-card{border-radius:0;box-shadow:none}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper,.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading{height:100%}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container{height:100%;overflow-x:hidden}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container{display:flex;flex-direction:column;height:100%}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-content,.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container:before{height:100%}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header{flex:0 1 auto}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header .ant-table-thead{max-height:47px}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-body{flex:1 1 auto}.index_containorBox__I-m6k .index_mainContainor__RhaGK .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container .ant-pagination{box-shadow:inset 0 9px 8px -5px rgba(5,5,5,.06);margin-bottom:0;margin-top:0;padding-bottom:10px;padding-top:10px}.index_singlePageContainorBox__hooXM .ant-modal-content{padding-bottom:16px}.index_multiPageContainorBox__C6WJJ .ant-modal-content{padding-bottom:2px}
|