fix
parent
1a9a2b30f5
commit
b573b0947f
|
|
@ -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);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue