fix
parent
1a9a2b30f5
commit
b573b0947f
|
|
@ -12,8 +12,9 @@ function EnterpriseInfo(props) {
|
|||
if (!orgInfoId) {
|
||||
props.orgInfoGet().then((res) => {
|
||||
if (res?.data?.id) {
|
||||
setOrgInfoId(res?.data?.id);
|
||||
// 下方两行切勿更换顺序
|
||||
sessionStorage.setItem("orgInfoId", res?.data?.id);
|
||||
setOrgInfoId(res?.data?.id);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ function FilingChangeListPage(props) {
|
|||
onPageChange={handlePageChange}
|
||||
onChangeCountClick={(record) => setHistoryRecord(record)}
|
||||
extraActions={(record) =>
|
||||
[ 3,5].includes(record.filingStatusCode) ? (
|
||||
[ 1,3].includes(record.filingStatusCode) ? (
|
||||
<Button
|
||||
type="link"
|
||||
size="small"
|
||||
|
|
|
|||
|
|
@ -12,8 +12,10 @@ function QualApplication(props) {
|
|||
if (!orgInfoId) {
|
||||
props.orgInfoGet().then((res) => {
|
||||
if (res?.data?.id) {
|
||||
setOrgInfoId(res?.data?.id);
|
||||
// 下方两行切勿更换顺序
|
||||
sessionStorage.setItem("orgInfoId", res?.data?.id);
|
||||
setOrgInfoId(res?.data?.id);
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue