@@ -45,7 +45,7 @@ const AnthologyTocTreeWidget = ({
if (typeof onArticleSelect !== "undefined") {
onArticleSelect(keys);
} else {
- navigate(`/article/article/${keys[0]}/read`);
+ navigate(`/article/article/${keys[0]}?mode=read`);
}
}}
/>
@@ -83,7 +83,7 @@ const AnthologyDetailWidget = ({
@@ -18,7 +18,7 @@ const TextBookWidget = ({ anthologyId, courseId }: IWidget) => {
<AnthologyDetail
aid={anthologyId}
onArticleSelect={(keys: string[]) => {
- navigate(`/article/textbook/${courseId}_${keys[0]}/read`);
+ navigate(`/article/textbook/${courseId}_${keys[0]}?mode=read`);
</Col>