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