fangmingyue 2 年 前
コミット
443f74f95c
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2
    2
      src/pages/SystemManagement/Classification/index.jsx

+ 2
- 2
src/pages/SystemManagement/Classification/index.jsx ファイルの表示

@@ -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}