Compare commits

..

No commits in common. "ca3f2658a7d5576a4e78ee595c36b8d14c2b1dde" and "727299aac91bf5519be3201338701c60ff807e11" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -1698,7 +1698,7 @@ watch(() => props.bookobj.levelSecondId, async (newVal, oldVal) => {
* 2. 其他: 获取当前章节下的所有知识点
*/
let id = props.bookobj.levelSecondId;
if( props.bookobj.node.edustage == '高中' && (props.bookobj.node.edusubject == '语文' || props.bookobj.node.edusubject == '英语') ){
if(props.bookobj.node.edusubject == '语文' || props.bookobj.node.edusubject == '英语'){
id = props.bookobj.node.rootid;
const res = await listEvaluation({ edusubject: props.bookobj.node.edusubject, edustage: props.bookobj.node.edustage, itemkey: "subject", pageSize: 10 });
id = res.rows[0]?.id;