|
@@ -3450,10 +3450,14 @@ window.addEventListener('message', function (e) {
|
|
|
U.MD.D.I.openInApplication("loginSz")
|
|
|
}else if (e.data.tools && e.data.tools == "classroom_observation_board"){
|
|
|
if($('#classroom_observation_board')[0]){
|
|
|
-
|
|
|
$('#classroom_observation_board iframe')[0].contentDocument.location.reload()
|
|
|
}
|
|
|
U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
|
|
|
+ }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
|
|
|
+ if($('#classroom_observation_ob_comment')[0]){
|
|
|
+ $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
|
|
|
+ }
|
|
|
+ U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
|
|
|
}
|
|
|
|
|
|
|
|
@@ -3835,6 +3839,23 @@ U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
|
|
|
}, { "style": { "height": "36px" } }).form;
|
|
|
break;
|
|
|
}
|
|
|
+ case "classroom_observation_ob_comment":
|
|
|
+ if (!_userinfo || Object.keys(_userinfo).length === 0) {
|
|
|
+ setTimeout(() => {
|
|
|
+ U.MD.U.L.login();
|
|
|
+ }, 2000);
|
|
|
+ } else {
|
|
|
+ _formdiv = new U.UF.UI.form(
|
|
|
+ "课堂审核",
|
|
|
+ $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
|
|
|
+ "id": "classroom_observation_ob_comment",
|
|
|
+ "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
|
|
|
+ "onresize": function () { }
|
|
|
+ }, {
|
|
|
+ closecallback: function () { }
|
|
|
+ }, { "style": { "height": "36px" } }).form;
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
U.MD.D.I.openApplication = function (str, obj, info) {
|