feat
parent
c046210d80
commit
487459a567
|
|
@ -67,7 +67,7 @@ function FilingChangeListPage(props) {
|
|||
|
||||
}
|
||||
};
|
||||
|
||||
console.log(historyRecord);
|
||||
return (
|
||||
<>
|
||||
<FilingListTable
|
||||
|
|
@ -99,7 +99,7 @@ function FilingChangeListPage(props) {
|
|||
/>
|
||||
<ChangeHistoryModal
|
||||
open={!!historyRecord}
|
||||
originFilingId={historyRecord?.id}
|
||||
originFilingId={historyRecord?.filingId}
|
||||
onCancel={() => setHistoryRecord(null)}
|
||||
/>
|
||||
</>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import { useEffect, useState } from "react";
|
|||
import { fetchQualFilingChangeHistory } from "~/api/qualFiling";
|
||||
|
||||
export default function ChangeHistoryModal({ open, originFilingId, onCancel }) {
|
||||
console.log(originFilingId);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [records, setRecords] = useState([]);
|
||||
const [changeCount, setChangeCount] = useState(0);
|
||||
|
|
|
|||
Loading…
Reference in New Issue