shenwu 5 ay önce
ebeveyn
işleme
72b1bc7ccd

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

@@ -1,8 +1,9 @@
 import { useAjax } from '@/Hook/useAjax';
 import { apiLongBookOrderListOfPage } from '@/services/distribution/orderLog';
-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';
 
 type DataItem = {
   name: string;
@@ -16,7 +17,7 @@ const Page: React.FC = () => {
 
   return (
     <PageContainer>
-      <ProTable<any, any>
+      <MyProTable<any, any>
         headerTitle={'长篇小说订单记录列表'}
         actionRef={actionRef}
         rowKey={(r) => r.id}