|
|
@@ -269,6 +269,11 @@ export const SubmissionRecordsPage: React.FC = () => {
|
|
|
showTotal: (total) => `共 ${total} 条记录`,
|
|
|
}}
|
|
|
onChange={(p) => setPagination({ ...pagination, current: p.current || 1, pageSize: p.pageSize || 10 })}
|
|
|
+ bordered
|
|
|
+ scroll={{ x: 'max-content' }}
|
|
|
+ headerCellStyle={{ backgroundColor: '#f9fafb' }}
|
|
|
+ rowClassName={(record, index) => index % 2 === 0 ? 'bg-white' : 'bg-gray-50'}
|
|
|
+ rowKey="id"
|
|
|
/>
|
|
|
|
|
|
<Modal
|