shenwu il y a 5 mois
Parent
commit
ad61814072
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  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}