|
|
@@ -125,6 +125,10 @@ export default function SearchPublicNoticeTable({ recordList }) { |
|
|
|
var zero = places - num.toString().length + 1; |
|
|
|
return Array(+(zero > 0 && zero)).join("0") + num; |
|
|
|
} |
|
|
|
|
|
|
|
function handleRowDoubleClick(params) { |
|
|
|
navigate('/proof/reply/' + params.row.id); |
|
|
|
} |
|
|
|
|
|
|
|
return ( |
|
|
|
<div style={{ height: 400, width: '100%' }}> |
|
|
@@ -138,6 +142,7 @@ export default function SearchPublicNoticeTable({ recordList }) { |
|
|
|
paginationModel: { page: 0, pageSize: 5 }, |
|
|
|
}, |
|
|
|
}} |
|
|
|
onRowDoubleClick={handleRowDoubleClick} |
|
|
|
/> |
|
|
|
</div> |
|
|
|
); |
|
|
|