Commit c3332100 authored by liujiangnan's avatar liujiangnan

fix: 解锁文件夹

parent 39fdacc2
......@@ -242,8 +242,11 @@ export default class NewClass extends middleLayerBase {
return;
}
let syllabusid = this.getData('NJ_game_select').nextFolderId || this.getData('nextLevelId');
if (!syllabusid) {
let syllabusid = this.getData('NJ_game_select').nextFolderId;
if (syllabusid == -1) {
syllabusid = this.getData('nextLevelId');
}
if (!syllabusid || syllabusid == -1) {
return;
}
const kidid = kidData.data.id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment