diff --git a/console-ui/src/components/Page/TotalRender.js b/console-ui/src/components/Page/TotalRender.js
new file mode 100644
index 00000000000..1fa0e01f942
--- /dev/null
+++ b/console-ui/src/components/Page/TotalRender.js
@@ -0,0 +1,8 @@
+import React from 'react';
+
+const TotalRender = ({ total, range }) => {
+ // const [start, end] = range;
+ return 总数 : {total};
+};
+
+export default TotalRender;
diff --git a/console-ui/src/pages/ConfigurationManagement/ConfigurationManagement/ConfigurationManagement.js b/console-ui/src/pages/ConfigurationManagement/ConfigurationManagement/ConfigurationManagement.js
index 9db70c8481a..1094c2dedee 100644
--- a/console-ui/src/pages/ConfigurationManagement/ConfigurationManagement/ConfigurationManagement.js
+++ b/console-ui/src/pages/ConfigurationManagement/ConfigurationManagement/ConfigurationManagement.js
@@ -51,6 +51,7 @@ import QueryResult from '../../../components/QueryResult';
import './index.scss';
import { LANGUAGE_KEY, GLOBAL_PAGE_SIZE_LIST, LOGINPAGE_ENABLED } from '../../../constants';
+import TotalRender from '../../../components/Page/TotalRender';
const { Item } = MenuButton;
const { Panel } = Collapse;
@@ -1405,6 +1406,7 @@ class ConfigurationManagement extends React.Component {
onPageSizeChange={val => this.handlePageSizeChange(val)}
current={configurations.pageNumber}
total={configurations.totalCount}
+ totalRender={(total, range) =>