fixed: 课程课件组价的缓存

This commit is contained in:
xxx 2023-08-03 09:07:44 +08:00
parent c0af8d165e
commit 354bd23fc9

View File

@ -152,11 +152,12 @@ export const CourseAttachmentUpdate: React.FC<PropInterface> = ({
return ( return (
<> <>
{open ? (
<Drawer <Drawer
title="课件管理" title="课件管理"
onClose={onCancel} onClose={onCancel}
maskClosable={false} maskClosable={false}
open={open} open={true}
width={634} width={634}
> >
<div className={styles["top-content"]}> <div className={styles["top-content"]}>
@ -216,6 +217,7 @@ export const CourseAttachmentUpdate: React.FC<PropInterface> = ({
</Form> </Form>
</div> </div>
</Drawer> </Drawer>
) : null}
</> </>
); );
}; };