+
采购类型
+ {typeList.map((item) => (
+
{
+ tabChange(item);
}}
>
- {intl.formatMessage({ id: '查看' })}
-
- }
- >
-
{item.content}
-
-
- ))}
-
-
-
- {tabList.map((item) => (
-
- ))}
-
-
-
-
-
-
- {intl.formatMessage({ id: '加载更多' })}
-
-
-
-
-
- 紧急问题咨询
-
-
-
- 北京市前门大街173号
-
-
-
- 17676373746
-
-
-
- i723648723@383.com
+ {item.label}
+
+ ))}
-
-
CA服务
-
-
- CA办理
-
-
- CA客服
-
-
-
-
联系方式
-
客服1: 400-300-9989
-
客服1: 400-300-9989
-
客服1: 400-300-9989
-
客服1: 400-300-9989
+
+
+
+
+
+
+ 问题咨询
+
+
})
+
+
+ 北京市前门大街173号
+
+
+
+ 17676373746
+
+
+
+ i723648723@383.com
+
+
+
+
+
+
CA服务
+
+
+
+ CA办理
+
+
+
+ CA客服
+
+
+
-
-
+
+
联系方式
+
+
客服1: 400-300-9989
+
客服1: 400-300-9989
+
客服1: 400-300-9989
+
客服1: 400-300-9989
+
+
+
+
+
+
+
+
+
+
友情链接
+
+ {Array.from({ length: 12 }).map((item, index) => (
+
+
+
+ ))}
+
+
);
diff --git a/src/utils/tableProps.tsx b/src/utils/tableProps.tsx
new file mode 100644
index 0000000..16a6660
--- /dev/null
+++ b/src/utils/tableProps.tsx
@@ -0,0 +1,27 @@
+import React from 'react';
+import type { TablePaginationConfig } from 'antd';
+import LeftIcon from '@/assets/arrow-left.svg';
+import RightIcon from '@/assets/arrow-right.svg';
+
+type TableProps = {
+ pagination: TablePaginationConfig;
+};
+
+const tableProps: TableProps = {
+ pagination: {
+ position: ['bottomLeft'],
+ defaultPageSize: 10,
+ showQuickJumper: true,
+ showSizeChanger: true,
+ showTotal: (total) => `共 ${total} 条`,
+ size: 'default',
+ locale: {
+ jump_to: '前往',
+ },
+ className: 'pagination-container',
+ prevIcon:

,
+ nextIcon:

,
+ },
+};
+
+export default tableProps;