fangmingyue 2 years ago
parent
commit
443f74f95c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/pages/SystemManagement/Classification/index.jsx

+ 2
- 2
src/pages/SystemManagement/Classification/index.jsx View File

@@ -1,6 +1,6 @@
1 1
 import React, { useState, useEffect, useRef } from 'react';
2 2
 import { PageHeaderWrapper } from '@ant-design/pro-layout';
3
-import PageTable from '@/components/PageTable';
3
+import { Table } from 'antd';
4 4
 
5 5
 export default (props) => {
6 6
   const actionRef = useRef();
@@ -41,7 +41,7 @@ export default (props) => {
41 41
 
42 42
   return (
43 43
     <PageHeaderWrapper>
44
-      <PageTable
44
+      <Table
45 45
         search={false}
46 46
         columns={columns}
47 47
         dataSource={dataSource}