dev_1.0.1
tangjie 2026-07-09 11:21:39 +08:00
parent 1a9a2b30f5
commit b573b0947f
3 changed files with 6 additions and 3 deletions

View File

@ -12,8 +12,9 @@ function EnterpriseInfo(props) {
if (!orgInfoId) { if (!orgInfoId) {
props.orgInfoGet().then((res) => { props.orgInfoGet().then((res) => {
if (res?.data?.id) { if (res?.data?.id) {
setOrgInfoId(res?.data?.id); // 下方两行切勿更换顺序
sessionStorage.setItem("orgInfoId", res?.data?.id); sessionStorage.setItem("orgInfoId", res?.data?.id);
setOrgInfoId(res?.data?.id);
} }
}); });
} }

View File

@ -91,7 +91,7 @@ function FilingChangeListPage(props) {
onPageChange={handlePageChange} onPageChange={handlePageChange}
onChangeCountClick={(record) => setHistoryRecord(record)} onChangeCountClick={(record) => setHistoryRecord(record)}
extraActions={(record) => extraActions={(record) =>
[ 3,5].includes(record.filingStatusCode) ? ( [ 1,3].includes(record.filingStatusCode) ? (
<Button <Button
type="link" type="link"
size="small" size="small"

View File

@ -12,8 +12,10 @@ function QualApplication(props) {
if (!orgInfoId) { if (!orgInfoId) {
props.orgInfoGet().then((res) => { props.orgInfoGet().then((res) => {
if (res?.data?.id) { if (res?.data?.id) {
setOrgInfoId(res?.data?.id); // 下方两行切勿更换顺序
sessionStorage.setItem("orgInfoId", res?.data?.id); sessionStorage.setItem("orgInfoId", res?.data?.id);
setOrgInfoId(res?.data?.id);
} }
}); });
} }