|
@@ -49,7 +49,7 @@ U.MD.D.I.schoolDeskIcon = [
|
|
{ "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
|
|
{ "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
|
|
{ "Name": "评价管理", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
|
|
{ "Name": "评价管理", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
|
|
{ "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
|
|
{ "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
|
|
- { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
|
|
|
|
|
|
+ { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
|
|
{ "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
|
|
{ "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
|
|
{ "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
|
|
{ "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
|
|
{ "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
|
|
{ "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
|
|
@@ -409,6 +409,8 @@ window.addEventListener('message', function(e) { // 监听 message 事件
|
|
U.MD.D.I.openApplication("mindNetwork")
|
|
U.MD.D.I.openApplication("mindNetwork")
|
|
} else if (e.data.tools && e.data.tools == "8") {
|
|
} else if (e.data.tools && e.data.tools == "8") {
|
|
U.MD.D.I.openApplication("library")
|
|
U.MD.D.I.openApplication("library")
|
|
|
|
+ } else if (e.data.tools && e.data.tools == "17") {
|
|
|
|
+ U.MD.D.I.openApplication("stuLibrary")
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
@@ -897,18 +899,18 @@ U.MD.D.I.openApplication = function(str, obj, info) {
|
|
_taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
|
|
_taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
|
|
break;
|
|
break;
|
|
|
|
|
|
- case "library":
|
|
|
|
|
|
+ case "stuLibrary":
|
|
|
|
|
|
_formdiv = new U.UF.UI.form(
|
|
_formdiv = new U.UF.UI.form(
|
|
- "素材库",
|
|
|
|
- $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/library?userid=" + _userid }), {
|
|
|
|
- "id": "library",
|
|
|
|
|
|
+ "学习资料",
|
|
|
|
+ $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid }), {
|
|
|
|
+ "id": "stuLibrary",
|
|
"style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
|
|
"style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
|
|
"onresize": function() {}
|
|
"onresize": function() {}
|
|
}, {
|
|
}, {
|
|
closecallback: function() {}
|
|
closecallback: function() {}
|
|
}, { "style": { "height": "36px" } }).form; //创建窗体
|
|
}, { "style": { "height": "36px" } }).form; //创建窗体
|
|
- _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
|
|
|
|
|
|
+ _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
|
|
break;
|
|
break;
|
|
case "whiteboard":
|
|
case "whiteboard":
|
|
|
|
|