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