shenwu 5 月之前
父節點
當前提交
ad61814072
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      src/pages/distribution/readLog/long/index.tsx

+ 3 - 2
src/pages/distribution/readLog/long/index.tsx

@@ -1,8 +1,9 @@
 import { useAjax } from '@/Hook/useAjax';
 import { apiLongBookReadLogListOfPage } from '@/services/distribution/readLog';
-import { ActionType, PageContainer, ProTable } from '@ant-design/pro-components';
+import { ActionType, PageContainer } from '@ant-design/pro-components';
 import { useRef } from 'react';
 import { columns } from './tableConfig';
+import MyProTable from '@/components/MyProTable';
 
 const Page: React.FC = () => {
   const actionRef = useRef<ActionType>();
@@ -12,7 +13,7 @@ const Page: React.FC = () => {
 
   return (
     <PageContainer>
-      <ProTable<any, any>
+      <MyProTable<any, any>
         headerTitle={'长篇小说阅读记录列表'}
         actionRef={actionRef}
         rowKey={(r) => r.id}