dev_1.0.1
tangjie 2026-07-07 17:51:09 +08:00
parent c046210d80
commit 487459a567
2 changed files with 3 additions and 2 deletions

View File

@ -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)}
/>
</>

View File

@ -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);