Bladeren bron

学校权限

zengyicheng 2 jaren geleden
bovenliggende
commit
0da772fd57
1 gewijzigde bestanden met toevoegingen van 439 en 345 verwijderingen
  1. 439 345
      js/Desktop/DeskTop.js

+ 439 - 345
js/Desktop/DeskTop.js

@@ -44,13 +44,26 @@ U.MD.D.I.studentDeskIcon = [
     { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } }
 ];
 
+U.MD.D.I.schoolDeskIcon = [
+    { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.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": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
+    { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.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": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
+    { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
+    { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
+];
+
 //#region 桌面初始化a
 
 /**
  * 初始化桌面的起始函数
  *
  */
-U.MD.D.I.init = function () {
+U.MD.D.I.init = function() {
     if ($("#U_MD_D_K")[0]) {
         //初始化桌面图标
         U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0]);
@@ -71,7 +84,7 @@ U.MD.D.I.init = function () {
  *
  * @param  {element} 桌面元素
  */
-U.MD.D.I.hiddenTaskbar = function (el) {
+U.MD.D.I.hiddenTaskbar = function(el) {
     //任务栏位置变小
     U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
     //桌面的位置变大
@@ -84,7 +97,7 @@ U.MD.D.I.hiddenTaskbar = function (el) {
  *
  * @param  {element} 桌面元素
  */
-U.MD.D.I.hiddenTaskbarout = function (el) {
+U.MD.D.I.hiddenTaskbarout = function(el) {
     //任务栏位置变小
     if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
         //任务栏位置变化
@@ -100,26 +113,28 @@ U.MD.D.I.hiddenTaskbarout = function (el) {
  *
  * @param  {element} 桌面元素
  */
-U.MD.D.I.initDesktopIcons = function (el) {
+U.MD.D.I.initDesktopIcons = function(el) {
     var i, //用于循环
         _content, //桌面图标元素
         _iconcontent, //桌面图标元素
         _frag = $$("frag"), //定义一个碎片元素
         _type = US.userInfo.type,
-        _teacherDesktopIconInfo = U.MD.D.I.teacherDeskIcon, //获取教师端桌面图标
-        _studentDesktopIconInfo = U.MD.D.I.studentDeskIcon; //获取桌面图标
+        _oid = US.userInfo.organizeid;
+    _teacherDesktopIconInfo = U.MD.D.I.teacherDeskIcon, //获取教师端桌面图标
+        _studentDesktopIconInfo = U.MD.D.I.studentDeskIcon, //获取学生端桌面图标
+        _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon; //获取测试学校桌面图标
     //清楚桌面图标
     el.innerHTML = "";
     //循环创建桌面图标
-    if (_type == 2) {
+    if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
         for (i = 0; i < _studentDesktopIconInfo.length; i++) {
             _content = $$("div", {
                 className: "U_MD_D_KO",
-                "onmousedown": U.UF.C.closure(function (obj) {
+                "onmousedown": U.UF.C.closure(function(obj) {
                     //防止拖动图标即打开了桌面应用
                     U.MD.D.click(this, obj);
                 }, [_studentDesktopIconInfo[i]]),
-                "onclick": U.UF.C.closure(function (obj) {
+                "onclick": U.UF.C.closure(function(obj) {
                     //防止拖动图标即打开了桌面应用
                     U.MD.D.click(this, obj);
                 }, [_studentDesktopIconInfo[i]])
@@ -128,15 +143,49 @@ U.MD.D.I.initDesktopIcons = function (el) {
             $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
             $$("div", { className: "U_MD_D_KOX", "style": { "cssText": "text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; -webkit-text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; -moz-text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; filter: Glow(color=#777777, strength=1)\9;" }, "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
         }
+    } else if (_type == 1 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
+        for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
+            _content = $$("div", {
+                className: "U_MD_D_KO",
+                "onmousedown": U.UF.C.closure(function(obj) {
+                    //防止拖动图标即打开了桌面应用
+                    U.MD.D.click(this, obj);
+                }, [_teacherDesktopIconInfo[i]]),
+                "onclick": U.UF.C.closure(function(obj) {
+                    //防止拖动图标即打开了桌面应用
+                    U.MD.D.click(this, obj);
+                }, [_teacherDesktopIconInfo[i]])
+            }, _frag); // 
+            _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
+            $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
+            $$("div", { className: "U_MD_D_KOX", "style": { "cssText": "text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; -webkit-text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; -moz-text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; filter: Glow(color=#777777, strength=1)\9;" }, "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
+        }
+    } else if (_type == 1 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
+        for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
+            _content = $$("div", {
+                className: "U_MD_D_KO",
+                "onmousedown": U.UF.C.closure(function(obj) {
+                    //防止拖动图标即打开了桌面应用
+                    U.MD.D.click(this, obj);
+                }, [_schoolDesktopIconInfo[i]]),
+                "onclick": U.UF.C.closure(function(obj) {
+                    //防止拖动图标即打开了桌面应用
+                    U.MD.D.click(this, obj);
+                }, [_schoolDesktopIconInfo[i]])
+            }, _frag); // 
+            _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
+            $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
+            $$("div", { className: "U_MD_D_KOX", "style": { "cssText": "text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; -webkit-text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; -moz-text-shadow: rgb(100 100 100) 2px 1px 3px, rgb(102 102 102) 0px 1px 0px, rgb(85 85 85) -1px 0px 0px, rgb(153 153 153) 0px -1px 0px; filter: Glow(color=#777777, strength=1)\9;" }, "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
+        }
     } else {
         for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
             _content = $$("div", {
                 className: "U_MD_D_KO",
-                "onmousedown": U.UF.C.closure(function (obj) {
+                "onmousedown": U.UF.C.closure(function(obj) {
                     //防止拖动图标即打开了桌面应用
                     U.MD.D.click(this, obj);
                 }, [_teacherDesktopIconInfo[i]]),
-                "onclick": U.UF.C.closure(function (obj) {
+                "onclick": U.UF.C.closure(function(obj) {
                     //防止拖动图标即打开了桌面应用
                     U.MD.D.click(this, obj);
                 }, [_teacherDesktopIconInfo[i]])
@@ -158,7 +207,7 @@ U.MD.D.I.initDesktopIcons = function (el) {
  *
  * @param  {element} 桌面元素
  */
-U.MD.D.I.displayTaskbar = function (el) {
+U.MD.D.I.displayTaskbar = function(el) {
     //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
     if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
         //任务栏位置变化
@@ -178,7 +227,7 @@ U.MD.D.I.displayTaskbar = function (el) {
  * @param  {object} 左右相距的距离
  * @return  {object} 命名空间
  */
-U.MD.D.iconPostion = function (childs, top, left) {
+U.MD.D.iconPostion = function(childs, top, left) {
     var i; //用于循环处理
     top = top || 15; //如果没有设置元素的间距处理默认上间距为15
     left = left || 20; //如果没有设置元素的间距处理默认左间距为15
@@ -216,7 +265,7 @@ U.MD.D.iconPostion = function (childs, top, left) {
  * @param  {object} 左右相距的距离
  * @return  {object} 命名空间
  */
-U.MD.D.click = function (el, obj) {
+U.MD.D.click = function(el, obj) {
     var _buttonnumber = event.button; //点击的按钮的事件值
     var _userinfo = US.userInfo;
     U.UF.EV.stopBubble(); //阻止向上冒泡
@@ -250,7 +299,7 @@ U.MD.D.click = function (el, obj) {
  * 拖动的处理
  *
  */
-U.MD.D.iconMove = function () {
+U.MD.D.iconMove = function() {
     //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性   U.MD.D.I.IsDrag为true
     U.MD.D.I.IsDrag = true;
 }
@@ -261,7 +310,7 @@ U.MD.D.iconMove = function () {
  * @param  {element} 拖动的元素
  * @return  {object} 命名空间
  */
-U.MD.D.iconUp = function (el) {
+U.MD.D.iconUp = function(el) {
     var _top = 15,
         _left = 20,
         _margin,
@@ -295,7 +344,7 @@ U.MD.D.iconUp = function (el) {
 ----------[1]  左 left
 * @return  {object} 命名空间
 */
-U.MD.D.isOverlap = function (el, childs, postionarray) {
+U.MD.D.isOverlap = function(el, childs, postionarray) {
     //循环所有的图标
     for (var i = 0; i < childs.length; i++) {
         //判断有没有和该图标诶子重叠的元素
@@ -340,7 +389,7 @@ U.MD.D.isOverlap = function (el, childs, postionarray) {
 如果第一个参数为其他,则无第二个参数
 * @returns {array} 
 */
-window.addEventListener('message', function (e) { // 监听 message 事件
+window.addEventListener('message', function(e) { // 监听 message 事件
     // alert(e.data.type);
     if (e.data.type && e.data.type == "1") { //项目管理传入
         U.MD.D.I.openInApplication("study", e.data.cid)
@@ -363,15 +412,15 @@ window.addEventListener('message', function (e) { // 监听 message 事件
     }
 });
 
-U.MD.D.I.selectUser = function () {
-    U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
+U.MD.D.I.selectUser = function() {
+    U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function(res) { //US.userInfo.userid
         if (res.value[0].length > 0) {
             US.userInfo = res.value[0][0];
             $(".userName")[0].innerHTML = US.userInfo.username;
         }
     }, [], { "type": "GET", "withCredentials": true });
 }
-U.MD.D.I.openInApplication = function (str, data) {
+U.MD.D.I.openInApplication = function(str, data) {
     var _userinfo = US.userInfo, //登录用户信息
         _userid = US.userInfo.userid, //登录用户id
         _oid = _userinfo.organizeid;
@@ -385,19 +434,19 @@ U.MD.D.I.openInApplication = function (str, data) {
                 _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-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&courseId=" + data }), {
-                    "id": "study",
-                    "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "study",
+                        "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             }
     }
 
 }
-U.MD.D.I.openApplication = function (str, obj, info) {
+U.MD.D.I.openApplication = function(str, obj, info) {
     obj = obj || {};
     var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
         _formdiv, //创建任务栏时同时弹出的窗体元素。
@@ -405,20 +454,20 @@ U.MD.D.I.openApplication = function (str, obj, info) {
         _userid = obj.userid || US.userInfo.userid, //登录用户id
         _oid = obj.organizeid || _userinfo.organizeid,
         _type = US.userInfo.type;
-    if (_type == 2) {
+    if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
         switch (str) {
 
             case "studnetProject": //好友打开
                 _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-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "studnetProject",
-                    "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "studnetProject",
+                        "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
 
                 break;
 
@@ -426,13 +475,13 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "studentEvaluate",
-                    "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "studentEvaluate",
+                        "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
 
                 break;
             case "my":
@@ -440,147 +489,147 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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/#/data?userid=" + _userid }), {
-                    "id": "my",
-                    "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "my",
+                        "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "library":
                 _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",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "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); } }
+                        "id": "library",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "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); } }
                 break;
             case "whiteboard":
                 _formdiv = new U.UF.UI.form(
                     "电子白板",
                     $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
-                    "id": "whiteboard",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "whiteboard",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "investigation":
                 _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/#/ask?userid=" + _userid }), {
-                    "id": "investigation",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "investigation",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "note":
                 _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/#/note?userid=" + _userid }), {
-                    "id": "note",
-                    "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "note",
+                        "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
-            // case "score":
-
-            //     _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" }), {
-            //             "id": "score",
-            //             "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-            //             "onresize": function() {}
-            //         }, {
-            //             closecallback: function() {}
-            //         }, { "style": { "height": "36px" } }).form; //创建窗体
-            //     _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
-            //     break;
+                // case "score":
+
+                //     _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" }), {
+                //             "id": "score",
+                //             "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                //             "onresize": function() {}
+                //         }, {
+                //             closecallback: function() {}
+                //         }, { "style": { "height": "36px" } }).form; //创建窗体
+                //     _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                //     break;
             case "mind":
                 _formdiv = new U.UF.UI.form(
                     "思维导图",
                     $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html" 
-                    "id": "mind",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "mind",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "doc":
                 // U.MD.D.I.isRoom();
                 _formdiv = new U.UF.UI.form(
                     "协同文档",
                     $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
-                    "id": "doc",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-
-                U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
+                        "id": "doc",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+
+                U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function() {
                     $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
                 })
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "studentStudy":
                 _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-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
-                    "id": "studentStudy",
-                    "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "studentStudy",
+                        "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "mindNetwork": //好友打开
                 _formdiv = new U.UF.UI.form(
                     "思维网格",
                     $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/Grid?userid=" + _userid }), {
-                    "id": "mindNetwork",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "mindNetwork",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
 
             case "studentClassRoom": //好友打开
                 _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-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "studentClassRoom",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "studentClassRoom",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 setTimeout(() => {
                     U.UF.F.windowZooming(_formdiv)
                 }, 0);
                 break;
 
         }
-    } else {
+    } else if (_type == 1 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
         //选择应用处理
         switch (str) {
 
@@ -589,13 +638,13 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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/#/course?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "project",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "project",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "项目管理", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
 
             case "student":
@@ -603,13 +652,13 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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/#/student?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "student",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "student",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
 
             case "evaluate":
@@ -617,52 +666,52 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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/#/works?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "evaluate",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "评价管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "evaluate",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "评价管理", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "class":
 
                 _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/#/class?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "class",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "class",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "my":
 
                 _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/#/data?userid=" + _userid }), {
-                    "id": "my",
-                    "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "my",
+                        "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "notice":
 
                 _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/#/notice?userid=" + _userid }), {
-                    "id": "notice",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _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); } }
+                        "id": "notice",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _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;
 
             case "library":
@@ -670,78 +719,78 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "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); } }
+                        "id": "library",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "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); } }
                 break;
             case "whiteboard":
 
                 _formdiv = new U.UF.UI.form(
                     "电子白板",
                     $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
-                    "id": "whiteboard",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "whiteboard",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "investigation":
 
                 _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/#/ask?userid=" + _userid }), {
-                    "id": "investigation",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "investigation",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "note":
 
                 _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/#/note?userid=" + _userid }), {
-                    "id": "note",
-                    "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "note",
+                        "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
-            // case "score":
-
-            //     _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" }), {
-            //             "id": "score",
-            //             "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-            //             "onresize": function() {}
-            //         }, {
-            //             closecallback: function() {}
-            //         }, { "style": { "height": "36px" } }).form; //创建窗体
-            //     _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
-            //     break;
+                // case "score":
+
+                //     _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" }), {
+                //             "id": "score",
+                //             "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                //             "onresize": function() {}
+                //         }, {
+                //             closecallback: function() {}
+                //         }, { "style": { "height": "36px" } }).form; //创建窗体
+                //     _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                //     break;
             case "mind":
 
                 _formdiv = new U.UF.UI.form(
                     "思维导图",
                     $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html" 
-                    "id": "mind",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "mind",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "doc":
 
@@ -749,43 +798,43 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _formdiv = new U.UF.UI.form(
                     "协同文档",
                     $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
-                    "id": "doc",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-
-                U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
+                        "id": "doc",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+
+                U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function() {
                     $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
                 })
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "study":
 
                 _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-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
-                    "id": "study",
-                    "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "study",
+                        "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
             case "mindNetwork": //好友打开
 
                 _formdiv = new U.UF.UI.form(
                     "思维网格",
                     $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/Grid?userid=" + _userid }), {
-                    "id": "mindNetwork",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "mindNetwork",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 break;
 
             case "teacherClassRoom": //好友打开
@@ -793,113 +842,158 @@ U.MD.D.I.openApplication = function (str, obj, info) {
                 _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/#/classRoom?userid=" + _userid + "&oid=" + _oid }), {
-                    "id": "teacherClassRoom",
-                    "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
-                    "onresize": function () { }
-                }, {
-                    closecallback: function () { }
-                }, { "style": { "height": "36px" } }).form; //创建窗体
-                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
+                        "id": "teacherClassRoom",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
                 setTimeout(() => {
                     U.UF.F.windowZooming(_formdiv)
                 }, 0);
                 break;
+        }
+    } else if (_type == 1 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
+        switch (str) {
+            case "project": //好友打开
+
+                _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/#/course?userid=" + _userid + "&oid=" + _oid }), {
+                        "id": "project",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "项目管理", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+
+            case "evaluate":
+
+                _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/#/works?userid=" + _userid + "&oid=" + _oid }), {
+                        "id": "evaluate",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "评价管理", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+            case "notice":
 
-            // case "friend": //好友打开
-            //     U.MD.D.I.IsDrag = true;
-            //     U.MD.F.W.viewFriend(info); //打开好友
-            //     //  U.MD.N.urlWrite("friend/" + obj.directoryid, "好友"); //好友的url重写
-            //     break;
-            // case "domain":
-            //     var _iframe = $$('iframe', { src: '//domain.1473.cn/DomainSystem.aspx/?fileId=' + info.fileId + '&type=' + info.type + '&mode=' + info.mode, frameborder: "0", style: { cssText: "width:100%;height:100%;border:0px" } });
-            //     _formdiv = new U.UF.UI.form("域名管理", _iframe, { id: "U_MD_DS_DomainShare", style: { "width": "370px", "height": "390px" } }).form;
-            //     if (_formdiv) {
-            //         //生成任务栏的变量
-            //         _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-15px -296px", "name": "网盘", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
-            //     }
-            //     break;
-            // case "disk": //个人网盘查看 
-            //     _formdiv = U.MD.DK.initDisk(_userid, obj.directoryid); //根据网盘数据,并加载网盘,里面包含了url重写
-            //     if (_formdiv) {
-            //         //生成任务栏的变量
-            //         _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-15px -296px", "name": "网盘", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     }
-            //     break;
-            // case "word": //Word打开
-            //     var _wordinfo = U.MD.O.word(_userinfo, obj, arguments[2]); //初始化word的处理
-            //     _formdiv = _wordinfo[0];
-            //     if (_formdiv) {
-            //         //生成任务栏的变量
-            //         _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-462px -296px", "name": "文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, _wordinfo[1]); } }
-            //     }
-            //     if (obj.UrlType != 'join') {
-            //         U.MD.N.urlWrite("word/" + _formdiv.id.substr(-36), "在线文档"); //word的url重写
-            //     }
-            //     break;
-            // case "excel": //Excel打开
-            //     _formdiv = U.MD.O.excel(_userinfo, obj);
-            //     if (_formdiv) {
-            //         //生成任务栏的变量
-            //         _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-523px -296px", "name": "Excel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     }
-            //     U.MD.N.urlWrite("excel/" + _formdiv.id.substr(-36), "Excel");
-            //     break;
-            // case "txt": //Txt打开
-            //     _formdiv = U.MD.D.Txt.textCreate();
-            //     if (_formdiv) {
-            //         //生成任务栏的变量
-            //         _taskbar = { "id": str + obj.directoryid, "backgroundPostion": "-267px -413px", "name": "文本", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     }
-            //     U.MD.N.urlWrite("txt/" + _formdiv.id.substr(-36), "文本");
-            //     break;
-            // case "lookupFriend":
-            //     _formdiv = U.MD.F.S.popSearchFriendsOrGroupForm(0);
-            //     //生成任务栏的变量
-            //     _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-85px -413px", "name": "查找好友", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     U.MD.N.urlWrite("lookupfriend/" + obj.directoryid.substr(-36), "查找好友"); //查找好友的url重写
-            //     break;
-            // case "ftp": //Ftp 
-            //     _formdiv = U.MD.F.S.popupsSearchFtp();
-            //     //生成任务栏的变量
-            //     _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-144px -413px", "name": "FTP", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     break;
-            // case "group": //群组
-            //     _formdiv = U.MD.F.S.popupsSearchGroups(0);
-            //     //生成任务栏的变量
-            //     _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-85px -413px", "name": "群组", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     break;
-            // case "set": //个人设置
-            //     _formdiv = U.MD.U.P.userDataSet();
-            //     if (_formdiv) {
-            //         //生成任务栏的变量
-            //         _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-400px -296px", "name": "个人设置", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     }
-            //     break;
-            // case "systemSet": //系统设置 
-            //     _formdiv = U.MD.D.B.init();
-            //     //生成任务栏的变量
-            //     _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-400px -296px", "name": "系统设置", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     break;
-            // case "boomYun": //BoomYun 
-            //     _formdiv = U.Boom.I.onload();
-            //     //生成任务栏的变量
-            //     _taskbar = { "id": str + _formdiv.id, "backgroundPostion": "-844px -419px", "name": "互联办公", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj); } }
-            //     U.MD.N.urlWrite("boomyun", "互联办公"); //boomyun的url重写
-            //     break;
-            // case "xz": //App下载 
-            //     window.open("http://xz.1473.cn");
-            //     break;
-            // case "client": //App下载 
-            //     window.open("http://client.1473.cn");
-            //     break;
-            // case "backEndProgramming": //在线编程平台打开 
-            //     window.open("http://c.1473.cn");
-            //     break;
-            // case "frontEndProgramming": //在线web编程 
-            //     window.open("http://d.1473.cn");
-            //     break;
-            // default:
-            //     break;
+                _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/#/notice?userid=" + _userid }), {
+                        "id": "notice",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _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;
+
+            case "library":
+
+                _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",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "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); } }
+                break;
+            case "whiteboard":
+
+                _formdiv = new U.UF.UI.form(
+                    "电子白板",
+                    $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
+                        "id": "whiteboard",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+            case "investigation":
+
+                _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/#/ask?userid=" + _userid }), {
+                        "id": "investigation",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+
+            case "mind":
+
+                _formdiv = new U.UF.UI.form(
+                    "思维导图",
+                    $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html" 
+                        "id": "mind",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+            case "doc":
+
+                // U.MD.D.I.isRoom();
+                _formdiv = new U.UF.UI.form(
+                    "协同文档",
+                    $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
+                        "id": "doc",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+
+                U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function() {
+                    $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
+                })
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+            case "study":
+
+                _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-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
+                        "id": "study",
+                        "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "学习中心", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
+            case "mindNetwork": //好友打开
+
+                _formdiv = new U.UF.UI.form(
+                    "思维网格",
+                    $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/Grid?userid=" + _userid }), {
+                        "id": "mindNetwork",
+                        "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
+                        "onresize": function() {}
+                    }, {
+                        closecallback: function() {}
+                    }, { "style": { "height": "36px" } }).form; //创建窗体
+                _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
+                break;
         }
     }