From 487459a5673e62d4b2278f23214d7e51ba239747 Mon Sep 17 00:00:00 2001 From: tangjie <122778500@qq.com> Date: Tue, 7 Jul 2026 17:51:09 +0800 Subject: [PATCH] feat --- .../Container/QualApplication/FilingChange/List/index.js | 4 ++-- .../FilingForm/components/ChangeHistoryModal.jsx | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/Container/QualApplication/FilingChange/List/index.js b/src/pages/Container/QualApplication/FilingChange/List/index.js index f45c48e..57934db 100644 --- a/src/pages/Container/QualApplication/FilingChange/List/index.js +++ b/src/pages/Container/QualApplication/FilingChange/List/index.js @@ -67,7 +67,7 @@ function FilingChangeListPage(props) { } }; - +console.log(historyRecord); return ( <> setHistoryRecord(null)} /> diff --git a/src/pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal.jsx b/src/pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal.jsx index 8d2460f..6280586 100644 --- a/src/pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal.jsx +++ b/src/pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal.jsx @@ -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);