DeskTop.js 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "学生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  16. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  17. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  18. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  19. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  20. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  21. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  22. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  23. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  24. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  25. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  26. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  27. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  28. { "Name": "课程设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  29. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  30. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  31. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  32. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  33. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  34. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  35. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  36. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  37. { "Name": " 魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  38. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  39. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  40. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  41. { "Name": "项目进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  42. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  43. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  44. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  45. { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  46. ];
  47. //教师桌面图标的全局变量
  48. U.MD.D.I.teacherDeskIcon2 = [
  49. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  50. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  51. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  52. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  53. // { "Name": "学生项目", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  54. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  55. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  56. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  57. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  58. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  59. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  60. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  61. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  62. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  63. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  64. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  65. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  66. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  67. { "Name": "课程设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  68. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  69. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  70. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  71. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  72. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  73. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  74. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  75. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  76. { "Name": " 魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  77. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  78. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  79. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  80. { "Name": "项目进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  81. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  82. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  83. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  84. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  85. ];
  86. U.MD.D.I.studentDeskIcon = [
  87. { "Name": "学生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  88. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  89. { "Name": "学习中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  90. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  91. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  92. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  93. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  94. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  95. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  96. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  97. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  98. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  99. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  100. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  101. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  102. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  103. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  104. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  105. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  106. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  107. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  108. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  109. // { "Name": " 魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  110. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  111. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  112. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  113. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  114. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  115. { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  116. ];
  117. U.MD.D.I.studentDeskIcon2 = [
  118. // { "Name": "学生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  119. { "Name": "学习中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  120. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  121. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  122. ]
  123. U.MD.D.I.schoolDeskIcon = [
  124. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  125. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  126. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  127. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  128. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  129. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  130. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  131. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  132. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  133. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  134. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  135. { "Name": "课程设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  136. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  137. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  138. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  139. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  140. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  141. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  142. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  143. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  144. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  145. ];
  146. U.MD.D.I.orgDeskIcon = [
  147. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  148. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  149. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  150. { "Name": "项目进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  151. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  152. ];
  153. U.MD.D.I.orgStemDeskIcon = [
  154. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  155. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  156. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  157. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  158. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  159. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  160. { "Name": "课程设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  161. { "Name": "项目进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  162. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  163. ];
  164. U.MD.D.I.hanDeskIcon = [
  165. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  166. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  167. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  168. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  169. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  170. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  171. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  172. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  173. { "Name": " 魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. ];
  176. U.MD.D.I.GMteacherDeskIcon = [
  177. { "Name": "项目管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  178. { "Name": "学习中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  179. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  180. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  181. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  182. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  183. { "Name": "项目进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  184. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  185. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  186. ];
  187. U.MD.D.I.GMstudentDeskIcon = [
  188. { "Name": "学习中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  189. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  190. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  191. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  192. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  193. ];
  194. //北师大
  195. U.MD.D.I.BSDNSteacherDeskIcon = [
  196. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  197. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  198. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  199. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  200. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  203. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  204. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  205. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  206. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  207. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  208. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  209. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  210. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  211. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  212. { "Name": "课程设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  213. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  214. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  215. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  216. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  217. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  218. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  219. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  220. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  221. // { "Name": " 魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  222. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  223. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  224. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  225. { "Name": "项目进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  226. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  227. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  228. { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  229. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  230. ];
  231. //松山湖
  232. U.MD.D.I.SONGteacherDeskIcon = [
  233. { "Name": "项目管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  234. { "Name": "学习中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  237. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  238. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  239. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  240. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  241. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  242. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  243. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  244. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  245. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  246. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  247. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  248. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  249. { "Name": "课程设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  250. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  251. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  252. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  253. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  254. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  255. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  256. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  257. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  258. // { "Name": " 魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  259. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  260. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  261. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  262. { "Name": "项目进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  263. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  264. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  265. { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. ];
  267. //#region 桌面初始化a
  268. /**
  269. * 初始化桌面的起始函数
  270. *
  271. */
  272. U.MD.D.I.init = function () {
  273. if ($("#U_MD_D_K")[0]) {
  274. //初始化桌面图标
  275. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0]);
  276. // var clickUrl = ':12588/requestIp.php';
  277. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  278. // U.MD.D.I.Ip = data;
  279. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  280. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  281. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  282. // })
  283. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  284. // })
  285. }
  286. }
  287. /**
  288. * 隐藏任务栏
  289. *
  290. * @param {element} 桌面元素
  291. */
  292. U.MD.D.I.hiddenTaskbar = function (el) {
  293. //任务栏位置变小
  294. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  295. //桌面的位置变大
  296. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  297. }
  298. /**
  299. * 隐藏任务栏
  300. *
  301. * @param {element} 桌面元素
  302. */
  303. U.MD.D.I.hiddenTaskbarout = function (el) {
  304. //任务栏位置变小
  305. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  306. //任务栏位置变化
  307. U.selectEl(el).css({ "bottom": "-60px" });
  308. //桌面的位置变大
  309. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  310. }
  311. }
  312. /**
  313. * 初始化打印桌面图标
  314. *
  315. * @param {element} 桌面元素
  316. */
  317. U.MD.D.I.initDesktopIcons = function (el) {
  318. var i, //用于循环
  319. _content, //桌面图标元素
  320. _iconcontent, //桌面图标元素
  321. _frag = $$("frag"), //定义一个碎片元素
  322. _type = US.userInfo.type,
  323. _org = US.userInfo.org,
  324. _oid = US.userInfo.organizeid,
  325. _teacherDesktopIconInfo = U.MD.D.I.teacherDeskIcon, //获取教师端桌面图标
  326. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  327. _studentDesktopIconInfo = U.MD.D.I.studentDeskIcon, //获取学生端桌面图标
  328. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  329. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  330. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  331. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  332. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  333. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon,//获取北师大
  334. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon,//获取北师大
  335. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  336. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon; //获取光明学校桌面图标
  337. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5"];
  338. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d"];
  339. //清楚桌面图标
  340. el.innerHTML = "";
  341. //循环创建桌面图标
  342. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  343. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  344. _content = $$("div", {
  345. className: "U_MD_D_KO",
  346. "onmousedown": U.UF.C.closure(function (obj) {
  347. //防止拖动图标即打开了桌面应用
  348. U.MD.D.click(this, obj);
  349. }, [_studentDesktopIconInfo[i]]),
  350. "onclick": U.UF.C.closure(function (obj) {
  351. //防止拖动图标即打开了桌面应用
  352. U.MD.D.click(this, obj);
  353. }, [_studentDesktopIconInfo[i]])
  354. }, _frag); //
  355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  358. }
  359. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  360. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  361. _content = $$("div", {
  362. className: "U_MD_D_KO",
  363. "onmousedown": U.UF.C.closure(function (obj) {
  364. //防止拖动图标即打开了桌面应用
  365. U.MD.D.click(this, obj);
  366. }, [_studentDesktopIconInfo2[i]]),
  367. "onclick": U.UF.C.closure(function (obj) {
  368. //防止拖动图标即打开了桌面应用
  369. U.MD.D.click(this, obj);
  370. }, [_studentDesktopIconInfo2[i]])
  371. }, _frag); //
  372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  375. }
  376. } else if ((_type == 1 || _type == 4) && _oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  377. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  378. _content = $$("div", {
  379. className: "U_MD_D_KO",
  380. "onmousedown": U.UF.C.closure(function (obj) {
  381. //防止拖动图标即打开了桌面应用
  382. U.MD.D.click(this, obj);
  383. }, [_teacherDesktopIconInfo2[i]]),
  384. "onclick": U.UF.C.closure(function (obj) {
  385. //防止拖动图标即打开了桌面应用
  386. U.MD.D.click(this, obj);
  387. }, [_teacherDesktopIconInfo2[i]])
  388. }, _frag); //
  389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  392. }
  393. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  394. for (i = 0; i < _hanDeskIcon.length; i++) {
  395. _content = $$("div", {
  396. className: "U_MD_D_KO",
  397. "onmousedown": U.UF.C.closure(function (obj) {
  398. //防止拖动图标即打开了桌面应用
  399. U.MD.D.click(this, obj);
  400. }, [_hanDeskIcon[i]]),
  401. "onclick": U.UF.C.closure(function (obj) {
  402. //防止拖动图标即打开了桌面应用
  403. U.MD.D.click(this, obj);
  404. }, [_hanDeskIcon[i]])
  405. }, _frag); //
  406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  409. }
  410. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  411. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  412. _content = $$("div", {
  413. className: "U_MD_D_KO",
  414. "onmousedown": U.UF.C.closure(function (obj) {
  415. //防止拖动图标即打开了桌面应用
  416. U.MD.D.click(this, obj);
  417. }, [_orgStemDeskIcon[i]]),
  418. "onclick": U.UF.C.closure(function (obj) {
  419. //防止拖动图标即打开了桌面应用
  420. U.MD.D.click(this, obj);
  421. }, [_orgStemDeskIcon[i]])
  422. }, _frag); //
  423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  426. }
  427. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  428. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  429. _content = $$("div", {
  430. className: "U_MD_D_KO",
  431. "onmousedown": U.UF.C.closure(function (obj) {
  432. //防止拖动图标即打开了桌面应用
  433. U.MD.D.click(this, obj);
  434. }, [_orgDesktopIconInfo[i]]),
  435. "onclick": U.UF.C.closure(function (obj) {
  436. //防止拖动图标即打开了桌面应用
  437. U.MD.D.click(this, obj);
  438. }, [_orgDesktopIconInfo[i]])
  439. }, _frag); //
  440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  443. }
  444. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  445. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  446. _content = $$("div", {
  447. className: "U_MD_D_KO",
  448. "onmousedown": U.UF.C.closure(function (obj) {
  449. //防止拖动图标即打开了桌面应用
  450. U.MD.D.click(this, obj);
  451. }, [_schoolDesktopIconInfo[i]]),
  452. "onclick": U.UF.C.closure(function (obj) {
  453. //防止拖动图标即打开了桌面应用
  454. U.MD.D.click(this, obj);
  455. }, [_schoolDesktopIconInfo[i]])
  456. }, _frag); //
  457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  460. }
  461. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  462. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  463. _content = $$("div", {
  464. className: "U_MD_D_KO",
  465. "onmousedown": U.UF.C.closure(function (obj) {
  466. //防止拖动图标即打开了桌面应用
  467. U.MD.D.click(this, obj);
  468. }, [_studentDesktopIconInfo[i]]),
  469. "onclick": U.UF.C.closure(function (obj) {
  470. //防止拖动图标即打开了桌面应用
  471. U.MD.D.click(this, obj);
  472. }, [_studentDesktopIconInfo[i]])
  473. }, _frag); //
  474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  477. }
  478. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  479. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  480. _content = $$("div", {
  481. className: "U_MD_D_KO",
  482. "onmousedown": U.UF.C.closure(function (obj) {
  483. //防止拖动图标即打开了桌面应用
  484. U.MD.D.click(this, obj);
  485. }, [_GMteacherDesktopIconInfo[i]]),
  486. "onclick": U.UF.C.closure(function (obj) {
  487. //防止拖动图标即打开了桌面应用
  488. U.MD.D.click(this, obj);
  489. }, [_GMteacherDesktopIconInfo[i]])
  490. }, _frag); //
  491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  494. }
  495. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  496. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  497. _content = $$("div", {
  498. className: "U_MD_D_KO",
  499. "onmousedown": U.UF.C.closure(function (obj) {
  500. //防止拖动图标即打开了桌面应用
  501. U.MD.D.click(this, obj);
  502. }, [_SONGteacherDesktopIconInfo[i]]),
  503. "onclick": U.UF.C.closure(function (obj) {
  504. //防止拖动图标即打开了桌面应用
  505. U.MD.D.click(this, obj);
  506. }, [_SONGteacherDesktopIconInfo[i]])
  507. }, _frag); //
  508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  511. }
  512. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  513. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  514. _content = $$("div", {
  515. className: "U_MD_D_KO",
  516. "onmousedown": U.UF.C.closure(function (obj) {
  517. //防止拖动图标即打开了桌面应用
  518. U.MD.D.click(this, obj);
  519. }, [_GMstudentDesktopIconInfo[i]]),
  520. "onclick": U.UF.C.closure(function (obj) {
  521. //防止拖动图标即打开了桌面应用
  522. U.MD.D.click(this, obj);
  523. }, [_GMstudentDesktopIconInfo[i]])
  524. }, _frag); //
  525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  528. }
  529. } else {
  530. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  531. _content = $$("div", {
  532. className: "U_MD_D_KO",
  533. "onmousedown": U.UF.C.closure(function (obj) {
  534. //防止拖动图标即打开了桌面应用
  535. U.MD.D.click(this, obj);
  536. }, [_teacherDesktopIconInfo[i]]),
  537. "onclick": U.UF.C.closure(function (obj) {
  538. //防止拖动图标即打开了桌面应用
  539. U.MD.D.click(this, obj);
  540. }, [_teacherDesktopIconInfo[i]])
  541. }, _frag); //
  542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  545. }
  546. }
  547. // else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  548. // for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  549. // _content = $$("div", {
  550. // className: "U_MD_D_KO",
  551. // "onmousedown": U.UF.C.closure(function(obj) {
  552. // //防止拖动图标即打开了桌面应用
  553. // U.MD.D.click(this, obj);
  554. // }, [_BSDNSteacherDesktopIconInfo[i]]),
  555. // "onclick": U.UF.C.closure(function(obj) {
  556. // //防止拖动图标即打开了桌面应用
  557. // U.MD.D.click(this, obj);
  558. // }, [_BSDNSteacherDesktopIconInfo[i]])
  559. // }, _frag); //
  560. // _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  561. // $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  562. // $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  563. // }
  564. // }
  565. //加载好后给图标定位
  566. U.MD.D.iconPostion($(_frag).Child());
  567. //把图标加载到页面
  568. el.appendChild(_frag);
  569. }
  570. /**
  571. * 显示任务栏
  572. *
  573. * @param {element} 桌面元素
  574. */
  575. U.MD.D.I.displayTaskbar = function (el) {
  576. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  577. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  578. //任务栏位置变化
  579. U.selectEl(el).css({ "bottom": "0px" });
  580. //桌面位置变话
  581. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  582. }
  583. }
  584. //#region 桌面图标拖动逻辑
  585. /**
  586. * 桌面排列图标
  587. *
  588. * @param {element} 桌面元素
  589. * @param {object} 上下相距的距离
  590. * @param {object} 左右相距的距离
  591. * @return {object} 命名空间
  592. */
  593. U.MD.D.iconPostion = function (childs, top, left) {
  594. var i; //用于循环处理
  595. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  596. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  597. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  598. for (i = 0; i < childs.length; i++) {
  599. //如果竖排top超过了范围处理
  600. if (top + 95 > US.height - 10) {
  601. //left超过了页面范围处理,则向上重叠打印处理
  602. if ((left + 180) > US.width) {
  603. top -= 110;
  604. left -= 90;
  605. }
  606. //没有超过范围,那么left+90添加到下一个竖排打印
  607. else {
  608. left += 90;
  609. top = 15;
  610. };
  611. }
  612. //给图标的位置赋值
  613. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  614. if (i < childs.length - 1) {
  615. //页面图标每次向下加95
  616. top += 95;
  617. }
  618. }
  619. //返回最后调用的图标的位置
  620. return [top, left];
  621. }
  622. /**
  623. * 桌面点击事件逻辑
  624. *
  625. * @param {element} 桌面元素
  626. * @param {object} 上下相距的距离
  627. * @param {object} 左右相距的距离
  628. * @return {object} 命名空间
  629. */
  630. U.MD.D.click = function (el, obj) {
  631. var _buttonnumber = event.button; //点击的按钮的事件值
  632. var _userinfo = US.userInfo;
  633. U.UF.EV.stopBubble(); //阻止向上冒泡
  634. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  635. if (_buttonnumber < 2) {
  636. //如果是click事件的处理
  637. if (event.type == "click") {
  638. //如果元素在mousemove事件中没有移动则出发click事件
  639. if (!U.MD.D.I.IsDrag) {
  640. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  641. U.alert("请先登录您的账号!");
  642. setTimeout(() => {
  643. U.MD.U.L.login();
  644. }, 2000);
  645. } else {
  646. //打开应用处理
  647. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  648. }
  649. }
  650. }
  651. //如果是mouse事件的处理
  652. else {
  653. //拖动处理,添加拖动和拖动结束事件
  654. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  655. }
  656. U.MD.D.I.IsDrag = false;
  657. }
  658. }
  659. /**
  660. * 拖动的处理
  661. *
  662. */
  663. U.MD.D.iconMove = function () {
  664. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  665. U.MD.D.I.IsDrag = true;
  666. }
  667. /**
  668. * 拖动结束后,这里是定位处理,以网状的形式定位
  669. *
  670. * @param {element} 拖动的元素
  671. * @return {object} 命名空间
  672. */
  673. U.MD.D.iconUp = function (el) {
  674. var _top = 15,
  675. _left = 20,
  676. _margin,
  677. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  678. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  679. if (_positioninfo["OT"] > 15) {
  680. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  681. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  682. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  683. }
  684. if (_positioninfo["OL"] > 20) {
  685. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  686. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  687. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  688. }
  689. //while循环判断么一个重叠的元素
  690. do {
  691. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  692. _top = _positioninfo[0] + 95; //得到定位后的top
  693. _left = _positioninfo[1]; //得到定位后的left
  694. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  695. }
  696. /**
  697. * 判断拖动后图标是否重叠
  698. *
  699. * @param {element} 拖动的元素
  700. * @param {element} 桌面所有的元素
  701. * @param {array} 拖动元素的位置
  702. ----------[0] 上 top
  703. ----------[1] 左 left
  704. * @return {object} 命名空间
  705. */
  706. U.MD.D.isOverlap = function (el, childs, postionarray) {
  707. //循环所有的图标
  708. for (var i = 0; i < childs.length; i++) {
  709. //判断有没有和该图标诶子重叠的元素
  710. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  711. return childs[i]; //如果有返回
  712. }
  713. }
  714. }
  715. //#endregion
  716. //#endregion
  717. //#region 桌面应用
  718. /**
  719. * 打开应用
  720. *
  721. * @param {string} 类型
  722. -----------------Disk 网盘系统
  723. -----------------PDisk 学习系统网盘
  724. -----------------Poto 图片
  725. -----------------Video 视频
  726. -----------------Music 音乐
  727. -----------------Word word
  728. -----------------Excel excel
  729. -----------------Txt 记事本
  730. -----------------PB 学习系统
  731. -----------------Blog 朋友圈系统
  732. -----------------FTP ftp系统
  733. -----------------Group 好友群
  734. -----------------SY 首页系统
  735. -----------------Set 个人设置
  736. -----------------XSet 系统设置
  737. -----------------App 我们所有的app
  738. -----------------BC c.1473.cn 平台
  739. -----------------CWeb d.1473.cn 变成平台
  740. -----------------其他的外联系统 我们统一用iframe打开
  741. * @param {array} 类型
  742. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  743. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  744. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  745. 如果第一个参数为其他,则无第二个参数
  746. * @returns {array}
  747. */
  748. window.addEventListener('message', function (e) { // 监听 message 事件
  749. // alert(e.data.type);
  750. if (e.data.screenType && e.data.screenType == "2") { //项目管理传入
  751. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  752. //3是展示全部阶段 2学生 1老师 4专家
  753. } else if (e.data.screenType && e.data.screenType == "3") { //项目管理传入
  754. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  755. } else if (e.data.screenType && e.data.screenType == "3s") { //项目管理传入
  756. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  757. } else if (e.data.screenType && e.data.screenType == "2gm") { //项目管理传入
  758. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  759. //3是展示全部阶段 2学生 1老师 4专家
  760. } else if (e.data.screenType && e.data.screenType == "3gm") { //项目管理传入
  761. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  762. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  763. U.MD.D.I.selectUser();
  764. } else if (e.data.allScreen && e.data.allScreen == "1") {
  765. var _formel = document.getElementById("study");
  766. U.UF.F.windowZooming(_formel);
  767. } else if (e.data.allScreen && e.data.allScreen == "2") {
  768. var _formel = document.getElementById("studyDetail");
  769. U.UF.F.windowZooming(_formel);
  770. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  771. var _formel = document.getElementById("studyDetail");
  772. U.UF.F.windowZooming(_formel);
  773. } else if (e.data.allScreen && e.data.allScreen == "3") {
  774. var _formel = document.getElementById("studentStudy");
  775. U.UF.F.windowZooming(_formel);
  776. } else if (e.data.allScreen && e.data.allScreen == "6") {
  777. var _formel = document.getElementById("study");
  778. //如果最大化了,那么就把他缩小
  779. // if (_formel.ismaximize) {
  780. // return;
  781. // }
  782. // U.UF.F.windowZooming(_formel);
  783. U.UF.F.topWindow(_formel);
  784. } else if (e.data.allScreen && e.data.allScreen == "4") {
  785. var _formel = document.getElementById("studyDetail");
  786. //如果最大化了,那么就把他缩小
  787. // if (_formel.ismaximize) {
  788. // return;
  789. // }
  790. // U.UF.F.windowZooming(_formel);
  791. U.UF.F.topWindow(_formel);
  792. } else if (e.data.allScreen && e.data.allScreen == "5") {
  793. var _formel = document.getElementById("studentStudy");
  794. // if (_formel.ismaximize) {
  795. // return;
  796. // }
  797. // U.UF.F.windowZooming(_formel);
  798. U.UF.F.topWindow(_formel);
  799. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  800. var _formel = document.getElementById("study");
  801. // if (_formel.ismaximize) {
  802. // return;
  803. // }
  804. // U.UF.F.windowZooming(_formel);
  805. U.UF.F.topWindow(_formel);
  806. } else if (e.data.tools && e.data.tools == "1") {
  807. // U.MD.D.I.openApplication("whiteboard")
  808. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  809. } else if (e.data.tools && e.data.tools == "2") {
  810. U.MD.D.I.openApplication("note")
  811. } else if (e.data.tools && e.data.tools == "3") {
  812. // U.MD.D.I.openApplication("mind")
  813. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  814. } else if (e.data.tools && e.data.tools == "4") {
  815. U.MD.D.I.openApplication("investigation")
  816. } else if (e.data.tools && e.data.tools == "6") {
  817. // U.MD.D.I.openApplication("doc")
  818. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  819. } else if (e.data.tools && e.data.tools == "7") {
  820. // U.MD.D.I.openApplication("mindNetwork")
  821. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  822. } else if (e.data.tools && e.data.tools == "8") {
  823. U.MD.D.I.openApplication("library")
  824. } else if (e.data.tools && e.data.tools == "17") {
  825. U.MD.D.I.openApplication("stuLibrary")
  826. } else if (e.data.tools && e.data.tools == "18") {
  827. U.MD.D.I.openApplication("train")
  828. } else if (e.data.tools && e.data.tools == "21") {
  829. U.MD.D.I.openApplication("program")
  830. } else if (e.data.tools && e.data.tools == "22") {
  831. U.MD.D.I.openApplication("AIprogram2")
  832. } else if (e.data.tools && e.data.tools == "23") {
  833. U.MD.D.I.openApplication("Pythonprogram")
  834. } else if (e.data.tools && e.data.tools == "24") {
  835. U.MD.D.I.openApplication("AIprogram")
  836. } else if (e.data.tools && e.data.tools == "25") {
  837. U.MD.D.I.openApplication("sys")
  838. } else if (e.data.tools && e.data.tools == "26") {
  839. // U.MD.D.I.openApplication("courseDesign")
  840. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  841. } else if (e.data.tools && e.data.tools == "31") {
  842. U.MD.D.I.openApplication("netWorkPanel")
  843. } else if (e.data.tools && e.data.tools == "32") {
  844. U.MD.D.I.openApplication("codeEdit")
  845. } else if (e.data.tools && e.data.tools == "28") {
  846. U.MD.D.I.openApplication("translation")
  847. } else if (e.data.tools && e.data.tools == "37") {
  848. U.MD.D.I.openApplication("mohe")
  849. } else if (e.data.tools && e.data.tools == "38") {
  850. U.MD.D.I.openApplication("24game")
  851. } else if (e.data.tools && e.data.tools == "39") {
  852. U.MD.D.I.openApplication("GeoGebra")
  853. } else if (e.data.tools && e.data.tools == "43") {
  854. U.MD.D.I.openApplication("studentEvaluate")
  855. } else if (e.data.tools && e.data.tools == "44") {
  856. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  857. } else if (e.data.tools && e.data.tools == "46") {
  858. U.MD.D.I.openApplication("project")
  859. }
  860. });
  861. U.MD.D.I.selectUser = function () {
  862. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  863. if (res.value[0].length > 0) {
  864. US.userInfo = res.value[0][0];
  865. $(".userName")[0].innerHTML = US.userInfo.username;
  866. }
  867. }, [], { "type": "GET", "withCredentials": true });
  868. }
  869. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  870. var _userinfo = US.userInfo, //登录用户信息
  871. _userid = US.userInfo.userid, //登录用户id
  872. _oid = _userinfo.organizeid,
  873. _type = US.userInfo.type,
  874. _org = US.userInfo.org,
  875. _classId = US.userInfo.classid;
  876. if (_type == 4) {
  877. tType = 4
  878. }
  879. switch (str) {
  880. case "studyDetail":
  881. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  882. setTimeout(() => {
  883. U.MD.U.L.login();
  884. }, 2000);
  885. } else {
  886. _formdiv = new U.UF.UI.form(
  887. "项目详情",
  888. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  889. "id": "studyDetail",
  890. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  891. "onresize": function () { }
  892. }, {
  893. closecallback: function () { }
  894. }, { "style": { "height": "36px" } }).form; //创建窗体
  895. _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); } }
  896. break;
  897. }
  898. case "studyDetailS":
  899. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  900. setTimeout(() => {
  901. U.MD.U.L.login();
  902. }, 2000);
  903. } else {
  904. _formdiv = new U.UF.UI.form(
  905. "项目详情",
  906. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  907. "id": "studyDetailS",
  908. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  909. "onresize": function () { }
  910. }, {
  911. closecallback: function () { }
  912. }, { "style": { "height": "36px" } }).form; //创建窗体
  913. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "学习中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  914. break;
  915. }
  916. case "studyDetailGM":
  917. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  918. setTimeout(() => {
  919. U.MD.U.L.login();
  920. }, 2000);
  921. } else {
  922. _formdiv = new U.UF.UI.form(
  923. "项目详情",
  924. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  925. "id": "studyDetail",
  926. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  927. "onresize": function () { }
  928. }, {
  929. closecallback: function () { }
  930. }, { "style": { "height": "36px" } }).form; //创建窗体
  931. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "学习中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  932. break;
  933. }
  934. case "hanUrl":
  935. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  936. setTimeout(() => {
  937. U.MD.U.L.login();
  938. }, 2000);
  939. } else {
  940. _formdiv = new U.UF.UI.form(
  941. "汉字宫",
  942. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  943. "id": "hanUrl",
  944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  945. "onresize": function () { }
  946. }, {
  947. closecallback: function () { }
  948. }, { "style": { "height": "36px" } }).form; //创建窗体
  949. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  950. break;
  951. }
  952. }
  953. }
  954. U.MD.D.I.openApplication = function (str, obj, info) {
  955. obj = obj || {};
  956. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  957. _formdiv, //创建任务栏时同时弹出的窗体元素。
  958. _userinfo = US.userInfo, //登录用户信息
  959. _userid = obj.userid || US.userInfo.userid, //登录用户id
  960. _oid = obj.organizeid || _userinfo.organizeid,
  961. _type = US.userInfo.type,
  962. _org = US.userInfo.org,
  963. _classId = US.userInfo.classid,
  964. _TscreenType = 1
  965. _screenType = 2,
  966. _SscreenType = 3;
  967. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  968. switch (str) {
  969. case "studnetProject": //好友打开
  970. _formdiv = new U.UF.UI.form(
  971. "我的项目",
  972. $$("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 + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  973. "id": "studnetProject",
  974. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  975. "onresize": function () { }
  976. }, {
  977. closecallback: function () { }
  978. }, { "style": { "height": "36px" } }).form; //创建窗体
  979. _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); } }
  980. break;
  981. case "studentEvaluate": //好友打开
  982. _formdiv = new U.UF.UI.form(
  983. "我的评价",
  984. $$("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 + "&org=" + _org }), {
  985. "id": "studentEvaluate",
  986. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  987. "onresize": function () { }
  988. }, {
  989. closecallback: function () { }
  990. }, { "style": { "height": "36px" } }).form; //创建窗体
  991. _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); } }
  992. break;
  993. case "my":
  994. _formdiv = new U.UF.UI.form(
  995. "我的资料",
  996. $$("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 + "&org=" + _org }), {
  997. "id": "my",
  998. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  999. "onresize": function () { }
  1000. }, {
  1001. closecallback: function () { }
  1002. }, { "style": { "height": "36px" } }).form; //创建窗体
  1003. _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); } }
  1004. break;
  1005. case "program":
  1006. _formdiv = new U.UF.UI.form(
  1007. "编程平台",
  1008. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  1009. "id": "program",
  1010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1011. "onresize": function () { }
  1012. }, {
  1013. closecallback: function () { }
  1014. }, { "style": { "height": "36px" } }).form; //创建窗体
  1015. _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); } }
  1016. break;
  1017. case "library":
  1018. _formdiv = new U.UF.UI.form(
  1019. "素材库",
  1020. $$("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 + "&org=" + _org }), {
  1021. "id": "library",
  1022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1023. "onresize": function () { }
  1024. }, {
  1025. closecallback: function () { }
  1026. }, { "style": { "height": "36px" } }).form; //创建窗体
  1027. _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); } }
  1028. break;
  1029. case "whiteboard":
  1030. _formdiv = new U.UF.UI.form(
  1031. "电子白板",
  1032. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  1033. "id": "whiteboard",
  1034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1035. "onresize": function () { }
  1036. }, {
  1037. closecallback: function () { }
  1038. }, { "style": { "height": "36px" } }).form; //创建窗体
  1039. _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); } }
  1040. break;
  1041. case "investigation":
  1042. _formdiv = new U.UF.UI.form(
  1043. "问卷调查",
  1044. $$("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 + "&org=" + _org }), {
  1045. "id": "investigation",
  1046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1047. "onresize": function () { }
  1048. }, {
  1049. closecallback: function () { }
  1050. }, { "style": { "height": "36px" } }).form; //创建窗体
  1051. _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); } }
  1052. break;
  1053. case "note":
  1054. _formdiv = new U.UF.UI.form(
  1055. "便签分类",
  1056. $$("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 + "&org=" + _org }), {
  1057. "id": "note",
  1058. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  1059. "onresize": function () { }
  1060. }, {
  1061. closecallback: function () { }
  1062. }, { "style": { "height": "36px" } }).form; //创建窗体
  1063. _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); } }
  1064. break;
  1065. // case "score":
  1066. // _formdiv = new U.UF.UI.form(
  1067. // "量规评分",
  1068. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn" }), {
  1069. // "id": "score",
  1070. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1071. // "onresize": function() {}
  1072. // }, {
  1073. // closecallback: function() {}
  1074. // }, { "style": { "height": "36px" } }).form; //创建窗体
  1075. // _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); } }
  1076. // break;
  1077. case "mind":
  1078. _formdiv = new U.UF.UI.form(
  1079. "思维导图",
  1080. $$("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"
  1081. "id": "mind",
  1082. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1083. "onresize": function () { }
  1084. }, {
  1085. closecallback: function () { }
  1086. }, { "style": { "height": "36px" } }).form; //创建窗体
  1087. _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); } }
  1088. break;
  1089. case "doc":
  1090. // U.MD.D.I.isRoom();
  1091. _formdiv = new U.UF.UI.form(
  1092. "协同文档",
  1093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  1094. "id": "doc",
  1095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1096. "onresize": function () { }
  1097. }, {
  1098. closecallback: function () { }
  1099. }, { "style": { "height": "36px" } }).form; //创建窗体
  1100. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  1101. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  1102. // })
  1103. _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); } }
  1104. break;
  1105. case "studentStudy":
  1106. _formdiv = new U.UF.UI.form(
  1107. "学习中心",
  1108. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
  1109. "id": "studentStudy",
  1110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  1111. "onresize": function () { }
  1112. }, {
  1113. closecallback: function () { }
  1114. }, { "style": { "height": "36px" } }).form; //创建窗体
  1115. _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); } }
  1116. break;
  1117. case "train": //好友打开
  1118. _formdiv = new U.UF.UI.form(
  1119. "训练平台",
  1120. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  1121. "id": "train",
  1122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1123. "onresize": function () { }
  1124. }, {
  1125. closecallback: function () { }
  1126. }, { "style": { "height": "36px" } }).form; //创建窗体
  1127. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1128. break;
  1129. case "mindNetwork": //好友打开
  1130. _formdiv = new U.UF.UI.form(
  1131. "思维网格",
  1132. $$("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 + "&org=" + _org }), {
  1133. "id": "mindNetwork",
  1134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1135. "onresize": function () { }
  1136. }, {
  1137. closecallback: function () { }
  1138. }, { "style": { "height": "36px" } }).form; //创建窗体
  1139. _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); } }
  1140. break;
  1141. case "studentClassRoom": //好友打开
  1142. _formdiv = new U.UF.UI.form(
  1143. "实时课堂",
  1144. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org }), {
  1145. "id": "studentClassRoom",
  1146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1147. "onresize": function () { }
  1148. }, {
  1149. closecallback: function () { }
  1150. }, { "style": { "height": "36px" } }).form; //创建窗体
  1151. _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); } }
  1152. setTimeout(() => {
  1153. U.UF.F.windowZooming(_formdiv)
  1154. }, 0);
  1155. break;
  1156. }
  1157. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  1158. switch (str) {
  1159. case "studnetProject": //好友打开
  1160. _formdiv = new U.UF.UI.form(
  1161. "我的项目",
  1162. $$("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 + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  1163. "id": "studnetProject",
  1164. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1165. "onresize": function () { }
  1166. }, {
  1167. closecallback: function () { }
  1168. }, { "style": { "height": "36px" } }).form; //创建窗体
  1169. _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); } }
  1170. break;
  1171. case "studentEvaluate": //好友打开
  1172. _formdiv = new U.UF.UI.form(
  1173. "我的评价",
  1174. $$("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 + "&org=" + _org }), {
  1175. "id": "studentEvaluate",
  1176. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1177. "onresize": function () { }
  1178. }, {
  1179. closecallback: function () { }
  1180. }, { "style": { "height": "36px" } }).form; //创建窗体
  1181. _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); } }
  1182. break;
  1183. case "my":
  1184. _formdiv = new U.UF.UI.form(
  1185. "我的资料",
  1186. $$("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 + "&org=" + _org }), {
  1187. "id": "my",
  1188. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  1189. "onresize": function () { }
  1190. }, {
  1191. closecallback: function () { }
  1192. }, { "style": { "height": "36px" } }).form; //创建窗体
  1193. _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); } }
  1194. break;
  1195. case "program":
  1196. _formdiv = new U.UF.UI.form(
  1197. "编程平台",
  1198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  1199. "id": "program",
  1200. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1201. "onresize": function () { }
  1202. }, {
  1203. closecallback: function () { }
  1204. }, { "style": { "height": "36px" } }).form; //创建窗体
  1205. _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); } }
  1206. break;
  1207. case "library":
  1208. _formdiv = new U.UF.UI.form(
  1209. "素材库",
  1210. $$("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 + "&org=" + _org }), {
  1211. "id": "library",
  1212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1213. "onresize": function () { }
  1214. }, {
  1215. closecallback: function () { }
  1216. }, { "style": { "height": "36px" } }).form; //创建窗体
  1217. _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); } }
  1218. break;
  1219. case "whiteboard":
  1220. _formdiv = new U.UF.UI.form(
  1221. "电子白板",
  1222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  1223. "id": "whiteboard",
  1224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1225. "onresize": function () { }
  1226. }, {
  1227. closecallback: function () { }
  1228. }, { "style": { "height": "36px" } }).form; //创建窗体
  1229. _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); } }
  1230. break;
  1231. case "investigation":
  1232. _formdiv = new U.UF.UI.form(
  1233. "问卷调查",
  1234. $$("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 + "&org=" + _org }), {
  1235. "id": "investigation",
  1236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1237. "onresize": function () { }
  1238. }, {
  1239. closecallback: function () { }
  1240. }, { "style": { "height": "36px" } }).form; //创建窗体
  1241. _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); } }
  1242. break;
  1243. case "note":
  1244. _formdiv = new U.UF.UI.form(
  1245. "便签分类",
  1246. $$("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 + "&org=" + _org }), {
  1247. "id": "note",
  1248. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  1249. "onresize": function () { }
  1250. }, {
  1251. closecallback: function () { }
  1252. }, { "style": { "height": "36px" } }).form; //创建窗体
  1253. _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); } }
  1254. break;
  1255. // case "score":
  1256. // _formdiv = new U.UF.UI.form(
  1257. // "量规评分",
  1258. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn" }), {
  1259. // "id": "score",
  1260. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1261. // "onresize": function() {}
  1262. // }, {
  1263. // closecallback: function() {}
  1264. // }, { "style": { "height": "36px" } }).form; //创建窗体
  1265. // _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); } }
  1266. // break;
  1267. case "mind":
  1268. _formdiv = new U.UF.UI.form(
  1269. "思维导图",
  1270. $$("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"
  1271. "id": "mind",
  1272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1273. "onresize": function () { }
  1274. }, {
  1275. closecallback: function () { }
  1276. }, { "style": { "height": "36px" } }).form; //创建窗体
  1277. _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); } }
  1278. break;
  1279. case "doc":
  1280. // U.MD.D.I.isRoom();
  1281. _formdiv = new U.UF.UI.form(
  1282. "协同文档",
  1283. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  1284. "id": "doc",
  1285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1286. "onresize": function () { }
  1287. }, {
  1288. closecallback: function () { }
  1289. }, { "style": { "height": "36px" } }).form; //创建窗体
  1290. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  1291. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  1292. })
  1293. _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); } }
  1294. break;
  1295. case "train": //好友打开
  1296. _formdiv = new U.UF.UI.form(
  1297. "训练平台",
  1298. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  1299. "id": "train",
  1300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1301. "onresize": function () { }
  1302. }, {
  1303. closecallback: function () { }
  1304. }, { "style": { "height": "36px" } }).form; //创建窗体
  1305. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1306. break;
  1307. case "studentStudy":
  1308. _formdiv = new U.UF.UI.form(
  1309. "学习中心",
  1310. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
  1311. "id": "studentStudy",
  1312. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  1313. "onresize": function () { }
  1314. }, {
  1315. closecallback: function () { }
  1316. }, { "style": { "height": "36px" } }).form; //创建窗体
  1317. _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); } }
  1318. break;
  1319. case "mindNetwork": //好友打开
  1320. _formdiv = new U.UF.UI.form(
  1321. "思维网格",
  1322. $$("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 + "&org=" + _org }), {
  1323. "id": "mindNetwork",
  1324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1325. "onresize": function () { }
  1326. }, {
  1327. closecallback: function () { }
  1328. }, { "style": { "height": "36px" } }).form; //创建窗体
  1329. _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); } }
  1330. break;
  1331. case "studentClassRoom": //好友打开
  1332. _formdiv = new U.UF.UI.form(
  1333. "实时课堂",
  1334. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org }), {
  1335. "id": "studentClassRoom",
  1336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1337. "onresize": function () { }
  1338. }, {
  1339. closecallback: function () { }
  1340. }, { "style": { "height": "36px" } }).form; //创建窗体
  1341. _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); } }
  1342. setTimeout(() => {
  1343. U.UF.F.windowZooming(_formdiv)
  1344. }, 0);
  1345. break;
  1346. }
  1347. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  1348. //选择应用处理
  1349. switch (str) {
  1350. case "project": //好友打开
  1351. _formdiv = new U.UF.UI.form(
  1352. "项目管理",
  1353. $$("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 + "&org=" + _org }), {
  1354. "id": "project",
  1355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1356. "onresize": function () { }
  1357. }, {
  1358. closecallback: function () { }
  1359. }, { "style": { "height": "36px" } }).form; //创建窗体
  1360. _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); } }
  1361. break;
  1362. case "student":
  1363. _formdiv = new U.UF.UI.form(
  1364. "学生管理",
  1365. $$("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 + "&cid=" + _classId + "&org=" + _org }), {
  1366. "id": "student",
  1367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1368. "onresize": function () { }
  1369. }, {
  1370. closecallback: function () { }
  1371. }, { "style": { "height": "36px" } }).form; //创建窗体
  1372. _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); } }
  1373. break;
  1374. case "evaluate":
  1375. _formdiv = new U.UF.UI.form(
  1376. "学生评价",
  1377. $$("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 + "&org=" + _org }), {
  1378. "id": "evaluate",
  1379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1380. "onresize": function () { }
  1381. }, {
  1382. closecallback: function () { }
  1383. }, { "style": { "height": "36px" } }).form; //创建窗体
  1384. _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); } }
  1385. break;
  1386. case "sys":
  1387. _formdiv = new U.UF.UI.form(
  1388. "目标管理",
  1389. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  1390. "id": "sys",
  1391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1392. "onresize": function () { }
  1393. }, {
  1394. closecallback: function () { }
  1395. }, { "style": { "height": "36px" } }).form; //创建窗体
  1396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1397. break;
  1398. case "courseDesign":
  1399. _formdiv = new U.UF.UI.form(
  1400. "课程设计",
  1401. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  1402. "id": "courseDesign",
  1403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1404. "onresize": function () { }
  1405. }, {
  1406. closecallback: function () { }
  1407. }, { "style": { "height": "36px" } }).form; //创建窗体
  1408. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "课程设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1409. break;
  1410. case "program":
  1411. _formdiv = new U.UF.UI.form(
  1412. "编程平台",
  1413. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  1414. "id": "program",
  1415. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1416. "onresize": function () { }
  1417. }, {
  1418. closecallback: function () { }
  1419. }, { "style": { "height": "36px" } }).form; //创建窗体
  1420. _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); } }
  1421. break;
  1422. case "class":
  1423. _formdiv = new U.UF.UI.form(
  1424. "班级管理",
  1425. $$("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 + "&org=" + _org }), {
  1426. "id": "class",
  1427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1428. "onresize": function () { }
  1429. }, {
  1430. closecallback: function () { }
  1431. }, { "style": { "height": "36px" } }).form; //创建窗体
  1432. _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); } }
  1433. break;
  1434. case "my":
  1435. _formdiv = new U.UF.UI.form(
  1436. "我的资料",
  1437. $$("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 + "&org=" + _org }), {
  1438. "id": "my",
  1439. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  1440. "onresize": function () { }
  1441. }, {
  1442. closecallback: function () { }
  1443. }, { "style": { "height": "36px" } }).form; //创建窗体
  1444. _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); } }
  1445. break;
  1446. case "notice":
  1447. _formdiv = new U.UF.UI.form(
  1448. "通知公告",
  1449. $$("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 + "&org=" + _org }), {
  1450. "id": "notice",
  1451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1452. "onresize": function () { }
  1453. }, {
  1454. closecallback: function () { }
  1455. }, { "style": { "height": "36px" } }).form; //创建窗体
  1456. _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); } }
  1457. break;
  1458. case "library":
  1459. _formdiv = new U.UF.UI.form(
  1460. "素材库",
  1461. $$("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 + "&org=" + _org }), {
  1462. "id": "library",
  1463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1464. "onresize": function () { }
  1465. }, {
  1466. closecallback: function () { }
  1467. }, { "style": { "height": "36px" } }).form; //创建窗体
  1468. _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); } }
  1469. break;
  1470. case "whiteboard":
  1471. _formdiv = new U.UF.UI.form(
  1472. "电子白板",
  1473. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  1474. "id": "whiteboard",
  1475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1476. "onresize": function () { }
  1477. }, {
  1478. closecallback: function () { }
  1479. }, { "style": { "height": "36px" } }).form; //创建窗体
  1480. _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); } }
  1481. break;
  1482. case "investigation":
  1483. _formdiv = new U.UF.UI.form(
  1484. "问卷调查",
  1485. $$("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 + "&org=" + _org }), {
  1486. "id": "investigation",
  1487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1488. "onresize": function () { }
  1489. }, {
  1490. closecallback: function () { }
  1491. }, { "style": { "height": "36px" } }).form; //创建窗体
  1492. _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); } }
  1493. break;
  1494. case "note":
  1495. _formdiv = new U.UF.UI.form(
  1496. "便签分类",
  1497. $$("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 + "&org=" + _org }), {
  1498. "id": "note",
  1499. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  1500. "onresize": function () { }
  1501. }, {
  1502. closecallback: function () { }
  1503. }, { "style": { "height": "36px" } }).form; //创建窗体
  1504. _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); } }
  1505. break;
  1506. // case "score":
  1507. // _formdiv = new U.UF.UI.form(
  1508. // "量规评分",
  1509. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn" }), {
  1510. // "id": "score",
  1511. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1512. // "onresize": function() {}
  1513. // }, {
  1514. // closecallback: function() {}
  1515. // }, { "style": { "height": "36px" } }).form; //创建窗体
  1516. // _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); } }
  1517. // break;
  1518. case "mind":
  1519. _formdiv = new U.UF.UI.form(
  1520. "思维导图",
  1521. $$("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"
  1522. "id": "mind",
  1523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1524. "onresize": function () { }
  1525. }, {
  1526. closecallback: function () { }
  1527. }, { "style": { "height": "36px" } }).form; //创建窗体
  1528. _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); } }
  1529. break;
  1530. case "doc":
  1531. // U.MD.D.I.isRoom();
  1532. _formdiv = new U.UF.UI.form(
  1533. "协同文档",
  1534. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  1535. "id": "doc",
  1536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1537. "onresize": function () { }
  1538. }, {
  1539. closecallback: function () { }
  1540. }, { "style": { "height": "36px" } }).form; //创建窗体
  1541. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  1542. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  1543. })
  1544. _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); } }
  1545. break;
  1546. case "study":
  1547. _formdiv = new U.UF.UI.form(
  1548. "学习中心",
  1549. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
  1550. "id": "study",
  1551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  1552. "onresize": function () { }
  1553. }, {
  1554. closecallback: function () { }
  1555. }, { "style": { "height": "36px" } }).form; //创建窗体
  1556. _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); } }
  1557. break;
  1558. case "mindNetwork": //好友打开
  1559. _formdiv = new U.UF.UI.form(
  1560. "思维网格",
  1561. $$("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 + "&org=" + _org }), {
  1562. "id": "mindNetwork",
  1563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1564. "onresize": function () { }
  1565. }, {
  1566. closecallback: function () { }
  1567. }, { "style": { "height": "36px" } }).form; //创建窗体
  1568. _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); } }
  1569. break;
  1570. case "train": //好友打开
  1571. _formdiv = new U.UF.UI.form(
  1572. "训练平台",
  1573. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  1574. "id": "mindNetwork",
  1575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1576. "onresize": function () { }
  1577. }, {
  1578. closecallback: function () { }
  1579. }, { "style": { "height": "36px" } }).form; //创建窗体
  1580. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1581. break;
  1582. case "teacherClassRoom": //好友打开
  1583. _formdiv = new U.UF.UI.form(
  1584. "实时课堂",
  1585. $$("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/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  1586. "id": "teacherClassRoom",
  1587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1588. "onresize": function () { }
  1589. }, {
  1590. closecallback: function () { }
  1591. }, { "style": { "height": "36px" } }).form; //创建窗体
  1592. _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); } }
  1593. setTimeout(() => {
  1594. U.UF.F.windowZooming(_formdiv)
  1595. }, 0);
  1596. break;
  1597. }
  1598. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  1599. switch (str) {
  1600. case "project": //好友打开
  1601. _formdiv = new U.UF.UI.form(
  1602. "项目管理",
  1603. $$("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 + "&org=" + _org }), {
  1604. "id": "project",
  1605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1606. "onresize": function () { }
  1607. }, {
  1608. closecallback: function () { }
  1609. }, { "style": { "height": "36px" } }).form; //创建窗体
  1610. _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); } }
  1611. break;
  1612. case "evaluate":
  1613. _formdiv = new U.UF.UI.form(
  1614. "学生评价",
  1615. $$("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 + "&org=" + _org }), {
  1616. "id": "evaluate",
  1617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1618. "onresize": function () { }
  1619. }, {
  1620. closecallback: function () { }
  1621. }, { "style": { "height": "36px" } }).form; //创建窗体
  1622. _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); } }
  1623. break;
  1624. case "notice":
  1625. _formdiv = new U.UF.UI.form(
  1626. "通知公告",
  1627. $$("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 + "&org=" + _org }), {
  1628. "id": "notice",
  1629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1630. "onresize": function () { }
  1631. }, {
  1632. closecallback: function () { }
  1633. }, { "style": { "height": "36px" } }).form; //创建窗体
  1634. _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); } }
  1635. break;
  1636. case "stuLibrary":
  1637. _formdiv = new U.UF.UI.form(
  1638. "学习资料",
  1639. $$("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 + "&org=" + _org }), {
  1640. "id": "stuLibrary",
  1641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1642. "onresize": function () { }
  1643. }, {
  1644. closecallback: function () { }
  1645. }, { "style": { "height": "36px" } }).form; //创建窗体
  1646. _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); } }
  1647. break;
  1648. case "program":
  1649. _formdiv = new U.UF.UI.form(
  1650. "编程平台",
  1651. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  1652. "id": "program",
  1653. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1654. "onresize": function () { }
  1655. }, {
  1656. closecallback: function () { }
  1657. }, { "style": { "height": "36px" } }).form; //创建窗体
  1658. _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); } }
  1659. break;
  1660. case "whiteboard":
  1661. _formdiv = new U.UF.UI.form(
  1662. "电子白板",
  1663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  1664. "id": "whiteboard",
  1665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1666. "onresize": function () { }
  1667. }, {
  1668. closecallback: function () { }
  1669. }, { "style": { "height": "36px" } }).form; //创建窗体
  1670. _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); } }
  1671. break;
  1672. case "investigation":
  1673. _formdiv = new U.UF.UI.form(
  1674. "问卷调查",
  1675. $$("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 + "&org=" + _org }), {
  1676. "id": "investigation",
  1677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1678. "onresize": function () { }
  1679. }, {
  1680. closecallback: function () { }
  1681. }, { "style": { "height": "36px" } }).form; //创建窗体
  1682. _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); } }
  1683. break;
  1684. case "mind":
  1685. _formdiv = new U.UF.UI.form(
  1686. "思维导图",
  1687. $$("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"
  1688. "id": "mind",
  1689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1690. "onresize": function () { }
  1691. }, {
  1692. closecallback: function () { }
  1693. }, { "style": { "height": "36px" } }).form; //创建窗体
  1694. _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); } }
  1695. break;
  1696. case "doc":
  1697. // U.MD.D.I.isRoom();
  1698. _formdiv = new U.UF.UI.form(
  1699. "协同文档",
  1700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  1701. "id": "doc",
  1702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1703. "onresize": function () { }
  1704. }, {
  1705. closecallback: function () { }
  1706. }, { "style": { "height": "36px" } }).form; //创建窗体
  1707. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  1708. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  1709. })
  1710. _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); } }
  1711. break;
  1712. case "study":
  1713. _formdiv = new U.UF.UI.form(
  1714. "学习中心",
  1715. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "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 + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
  1716. "id": "study",
  1717. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  1718. "onresize": function () { }
  1719. }, {
  1720. closecallback: function () { }
  1721. }, { "style": { "height": "36px" } }).form; //创建窗体
  1722. _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); } }
  1723. break;
  1724. case "mindNetwork": //好友打开
  1725. _formdiv = new U.UF.UI.form(
  1726. "思维网格",
  1727. $$("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 + "&org=" + _org }), {
  1728. "id": "mindNetwork",
  1729. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1730. "onresize": function () { }
  1731. }, {
  1732. closecallback: function () { }
  1733. }, { "style": { "height": "36px" } }).form; //创建窗体
  1734. _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); } }
  1735. break;
  1736. case "train": //好友打开
  1737. _formdiv = new U.UF.UI.form(
  1738. "训练平台",
  1739. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  1740. "id": "train",
  1741. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1742. "onresize": function () { }
  1743. }, {
  1744. closecallback: function () { }
  1745. }, { "style": { "height": "36px" } }).form; //创建窗体
  1746. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1747. break;
  1748. case "sys":
  1749. _formdiv = new U.UF.UI.form(
  1750. "目标管理",
  1751. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  1752. "id": "sys",
  1753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1754. "onresize": function () { }
  1755. }, {
  1756. closecallback: function () { }
  1757. }, { "style": { "height": "36px" } }).form; //创建窗体
  1758. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1759. break;
  1760. case "courseDesign":
  1761. _formdiv = new U.UF.UI.form(
  1762. "课程设计",
  1763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  1764. "id": "courseDesign",
  1765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1766. "onresize": function () { }
  1767. }, {
  1768. closecallback: function () { }
  1769. }, { "style": { "height": "36px" } }).form; //创建窗体
  1770. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "课程设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1771. break;
  1772. }
  1773. } else if (!_type) {
  1774. switch (str) {
  1775. case "my":
  1776. _formdiv = new U.UF.UI.form(
  1777. "我的资料",
  1778. $$("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 + "&org=" + _org }), {
  1779. "id": "my",
  1780. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  1781. "onresize": function () { }
  1782. }, {
  1783. closecallback: function () { }
  1784. }, { "style": { "height": "36px" } }).form; //创建窗体
  1785. _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); } }
  1786. break;
  1787. }
  1788. }
  1789. switch (str) {
  1790. // AIprogram2 AI体验 aihub.cocorobo.cn
  1791. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  1792. // AIprogram AI编程 ai-blockly.cocorobo.cn
  1793. case "AIprogram2": //AI体验
  1794. _formdiv = new U.UF.UI.form(
  1795. "AI体验",
  1796. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  1797. "id": "AIprogram2",
  1798. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1799. "onresize": function () { }
  1800. }, {
  1801. closecallback: function () { }
  1802. }, { "style": { "height": "36px" } }).form; //创建窗体
  1803. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1804. break;
  1805. case "Pythonprogram": //python编程
  1806. _formdiv = new U.UF.UI.form(
  1807. "Python编程",
  1808. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  1809. "id": "Pythonprogram",
  1810. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1811. "onresize": function () { }
  1812. }, {
  1813. closecallback: function () { }
  1814. }, { "style": { "height": "36px" } }).form; //创建窗体
  1815. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1816. break;
  1817. case "AIprogram": //ai编程
  1818. _formdiv = new U.UF.UI.form(
  1819. "AI编程平台",
  1820. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  1821. "id": "AIprogram",
  1822. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  1823. "onresize": function () { }
  1824. }, {
  1825. closecallback: function () { }
  1826. }, { "style": { "height": "36px" } }).form; //创建窗体
  1827. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1828. break;
  1829. case "resources": //国家教育
  1830. _formdiv = new U.UF.UI.form(
  1831. "国家教育",
  1832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  1833. "id": "resources",
  1834. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  1835. "onresize": function () { }
  1836. }, {
  1837. closecallback: function () { }
  1838. }, { "style": { "height": "36px" } }).form; //创建窗体
  1839. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1840. break;
  1841. case "codeEdit": //源码编辑
  1842. _formdiv = new U.UF.UI.form(
  1843. "源码编辑",
  1844. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  1845. "id": "codeEdit",
  1846. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  1847. "onresize": function () { }
  1848. }, {
  1849. closecallback: function () { }
  1850. }, { "style": { "height": "36px" } }).form; //创建窗体
  1851. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1852. break; //
  1853. case "MindMap": //MindMap
  1854. _formdiv = new U.UF.UI.form(
  1855. "MindMap",
  1856. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  1857. "id": "MindMap",
  1858. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  1859. "onresize": function () { }
  1860. }, {
  1861. closecallback: function () { }
  1862. }, { "style": { "height": "36px" } }).form; //创建窗体
  1863. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1864. break;
  1865. case "netWorkPanel": //netWorkPanel
  1866. _formdiv = new U.UF.UI.form(
  1867. "netWorkPanel",
  1868. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  1869. "id": "netWorkPanel",
  1870. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  1871. "onresize": function () { }
  1872. }, {
  1873. closecallback: function () { }
  1874. }, { "style": { "height": "36px" } }).form; //创建窗体
  1875. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1876. break;
  1877. case "GeoGebra": //GeoGebra
  1878. _formdiv = new U.UF.UI.form(
  1879. "GeoGebra",
  1880. $$("iframe", { "allow": "camera *; microphone *;display-capture", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  1881. "id": "GeoGebra",
  1882. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  1883. "onresize": function () { }
  1884. }, {
  1885. closecallback: function () { }
  1886. }, { "style": { "height": "36px" } }).form; //创建窗体
  1887. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1888. break;
  1889. case "translation": //翻译
  1890. _formdiv = new U.UF.UI.form(
  1891. "翻译",
  1892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  1893. "id": "translation",
  1894. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  1895. "onresize": function () { }
  1896. }, {
  1897. closecallback: function () { }
  1898. }, { "style": { "height": "36px" } }).form; //创建窗体
  1899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1900. break;
  1901. case "mohe": //魔盒
  1902. _formdiv = new U.UF.UI.form(
  1903. "魔盒识字",
  1904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  1905. "id": "mohe",
  1906. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  1907. "onresize": function () { }
  1908. }, {
  1909. closecallback: function () { }
  1910. }, { "style": { "height": "36px" } }).form; //创建窗体
  1911. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1912. break;
  1913. case "24game": //24点
  1914. _formdiv = new U.UF.UI.form(
  1915. "24点",
  1916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  1917. "id": "24game",
  1918. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  1919. "onresize": function () { }
  1920. }, {
  1921. closecallback: function () { }
  1922. }, { "style": { "height": "36px" } }).form; //创建窗体
  1923. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1924. break;
  1925. case "case":
  1926. _formdiv = new U.UF.UI.form(
  1927. "项目进展",
  1928. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  1929. "id": "case",
  1930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1931. "onresize": function () { }
  1932. }, {
  1933. closecallback: function () { }
  1934. }, { "style": { "height": "36px" } }).form; //创建窗体
  1935. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1936. break;
  1937. case "snf":
  1938. _formdiv = new U.UF.UI.form(
  1939. "赛诺梵",
  1940. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//try.cynovan.com/standard/?trial=true&data=%7B%22username%22%3A%22cynovanDemo%22%2C%22password%22%3A%22cynovanDemo%22%7D&redirect_uri=http://janus.cynovan.com/#/app/workflow/menu/1/r/6343ce2ac00fa32609d1f91b" }), {
  1941. "id": "snf",
  1942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1943. "onresize": function () { }
  1944. }, {
  1945. closecallback: function () { }
  1946. }, { "style": { "height": "36px" } }).form; //创建窗体
  1947. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1948. break;
  1949. case "hanFamily":
  1950. _formdiv = new U.UF.UI.form(
  1951. "汉字家族",
  1952. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  1953. "id": "hanFamily",
  1954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1955. "onresize": function () { }
  1956. }, {
  1957. closecallback: function () { }
  1958. }, { "style": { "height": "36px" } }).form; //创建窗体
  1959. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1960. break;
  1961. case "hanClassics":
  1962. _formdiv = new U.UF.UI.form(
  1963. "国学经典",
  1964. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  1965. "id": "hanClassics",
  1966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1967. "onresize": function () { }
  1968. }, {
  1969. closecallback: function () { }
  1970. }, { "style": { "height": "36px" } }).form; //创建窗体
  1971. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1972. break;
  1973. case "hanTraining":
  1974. _formdiv = new U.UF.UI.form(
  1975. "笔画训练",
  1976. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  1977. "id": "hanTraining",
  1978. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1979. "onresize": function () { }
  1980. }, {
  1981. closecallback: function () { }
  1982. }, { "style": { "height": "36px" } }).form; //创建窗体
  1983. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1984. break;
  1985. case "hanClass":
  1986. _formdiv = new U.UF.UI.form(
  1987. "书法课堂",
  1988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  1989. "id": "hanClass",
  1990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  1991. "onresize": function () { }
  1992. }, {
  1993. closecallback: function () { }
  1994. }, { "style": { "height": "36px" } }).form; //创建窗体
  1995. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  1996. break;
  1997. case "han":
  1998. _formdiv = new U.UF.UI.form(
  1999. "汉字宫",
  2000. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  2001. "id": "han",
  2002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2003. "onresize": function () { }
  2004. }, {
  2005. closecallback: function () { }
  2006. }, { "style": { "height": "36px" } }).form; //创建窗体
  2007. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2008. break;
  2009. case "projectGM": //项目管理
  2010. _formdiv = new U.UF.UI.form(
  2011. "项目管理",
  2012. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2013. "id": "projectGM",
  2014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2015. "onresize": function () { }
  2016. }, {
  2017. closecallback: function () { }
  2018. }, { "style": { "height": "36px" } }).form; //创建窗体
  2019. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2020. break;
  2021. case "studyGM"://学习中心
  2022. _formdiv = new U.UF.UI.form(
  2023. "学习中心",
  2024. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-student-table/dist/#/indexGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://pbl.cocorobo.cn/pbl-student-table/dist/#/index
  2025. "id": "study",
  2026. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  2027. "onresize": function () { }
  2028. }, {
  2029. closecallback: function () { }
  2030. }, { "style": { "height": "36px" } }).form; //创建窗体
  2031. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "学习中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2032. break;
  2033. // studentGM
  2034. case "studentGM"://学生管理
  2035. _formdiv = new U.UF.UI.form(
  2036. "学生管理",
  2037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  2038. "id": "studentGM",
  2039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2040. "onresize": function () { }
  2041. }, {
  2042. closecallback: function () { }
  2043. }, { "style": { "height": "36px" } }).form; //创建窗体
  2044. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2045. break;
  2046. case "evaluateGM"://学生评价
  2047. _formdiv = new U.UF.UI.form(
  2048. "学生评价",
  2049. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2050. "id": "evaluateGM",
  2051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2052. "onresize": function () { }
  2053. }, {
  2054. closecallback: function () { }
  2055. }, { "style": { "height": "36px" } }).form; //创建窗体
  2056. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2057. break;
  2058. // classGM
  2059. case "classGM"://班级管理
  2060. _formdiv = new U.UF.UI.form(
  2061. "班级管理",
  2062. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2063. "id": "classGM",
  2064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2065. "onresize": function () { }
  2066. }, {
  2067. closecallback: function () { }
  2068. }, { "style": { "height": "36px" } }).form; //创建窗体
  2069. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2070. break;
  2071. // dataGM
  2072. case "dataGM":
  2073. _formdiv = new U.UF.UI.form(
  2074. "我的资料",
  2075. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  2076. "id": "dataGM",
  2077. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  2078. "onresize": function () { }
  2079. }, {
  2080. closecallback: function () { }
  2081. }, { "style": { "height": "36px" } }).form; //创建窗体
  2082. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2083. break;
  2084. // caseGM
  2085. case "caseGM"://项目进展
  2086. _formdiv = new U.UF.UI.form(
  2087. "项目进展",
  2088. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2089. "id": "caseGM",
  2090. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2091. "onresize": function () { }
  2092. }, {
  2093. closecallback: function () { }
  2094. }, { "style": { "height": "36px" } }).form; //创建窗体
  2095. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2096. break;
  2097. // meterialGM
  2098. case "meterialGM"://素材库
  2099. _formdiv = new U.UF.UI.form(
  2100. "素材库",
  2101. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  2102. "id": "meterialGM",
  2103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2104. "onresize": function () { }
  2105. }, {
  2106. closecallback: function () { }
  2107. }, { "style": { "height": "36px" } }).form; //创建窗体
  2108. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2109. break;
  2110. // evaluateSGM
  2111. case "evaluateSGM": //我的评价
  2112. _formdiv = new U.UF.UI.form(
  2113. "我的评价",
  2114. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pbl.cocorobo.cn/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2115. "id": "evaluateSGM",
  2116. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  2117. "onresize": function () { }
  2118. }, {
  2119. closecallback: function () { }
  2120. }, { "style": { "height": "36px" } }).form; //创建窗体
  2121. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2122. break;
  2123. case "jupyter": //jupyter
  2124. _formdiv = new U.UF.UI.form(
  2125. "jupyter",
  2126. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  2127. "id": "jupyter",
  2128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2129. "onresize": function () { }
  2130. }, {
  2131. closecallback: function () { }
  2132. }, { "style": { "height": "36px" } }).form; //创建窗体
  2133. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2134. break;
  2135. case "number": //数字实验室
  2136. _formdiv = new U.UF.UI.form(
  2137. "数字实验室",
  2138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  2139. "id": "number",
  2140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2141. "onresize": function () { }
  2142. }, {
  2143. closecallback: function () { }
  2144. }, { "style": { "height": "36px" } }).form; //创建窗体
  2145. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2146. break;
  2147. case "studentCourse": //学生项目 学生
  2148. _formdiv = new U.UF.UI.form(
  2149. "学生项目",
  2150. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2151. "id": "studentCourse",
  2152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2153. "onresize": function () { }
  2154. }, {
  2155. closecallback: function () { }
  2156. }, { "style": { "height": "36px" } }).form; //创建窗体
  2157. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "学生项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2158. break;
  2159. case "studentCourseS": //学生项目 老师
  2160. _formdiv = new U.UF.UI.form(
  2161. "学生项目",
  2162. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  2163. "id": "studentCourseS",
  2164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  2165. "onresize": function () { }
  2166. }, {
  2167. closecallback: function () { }
  2168. }, { "style": { "height": "36px" } }).form; //创建窗体
  2169. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "学生项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  2170. break;
  2171. }
  2172. //U.MD.D.I.openClick(str);
  2173. //如果有任务栏信息
  2174. if (_taskbar) {
  2175. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  2176. }
  2177. }
  2178. // U.MD.D.I.openClick = function(str){
  2179. // var click = '';
  2180. // switch(str){
  2181. // case 'friend':
  2182. // click = '我的好友';
  2183. // break;
  2184. // case 'domain':
  2185. // click = '域名管理';
  2186. // break;
  2187. // case 'disk':
  2188. // click = '我的云盘';
  2189. // break;
  2190. // case 'word':
  2191. // click = 'Word';
  2192. // break;
  2193. // case 'excel':
  2194. // click = 'Execl';
  2195. // break;
  2196. // case 'txt':
  2197. // click = '文本文件';
  2198. // break;
  2199. // case 'lookupFriend':
  2200. // click = '查找好友';
  2201. // break;
  2202. // case 'ftp':
  2203. // click = 'FTP';
  2204. // break;
  2205. // case 'group':
  2206. // click = '群组';
  2207. // break;
  2208. // case 'set':
  2209. // click = '我的设置';
  2210. // break;
  2211. // case 'systemSet':
  2212. // click = '系统设置';
  2213. // break;
  2214. // case 'boomYun':
  2215. // click = '互联办公';
  2216. // break;
  2217. // case 'xz':
  2218. // click = '云端下载';
  2219. // break;
  2220. // case 'client':
  2221. // click = '有思浏览器';
  2222. // break;
  2223. // case 'backEndProgramming':
  2224. // click = '在线后台编程';
  2225. // break;
  2226. // case 'frontEndProgramming':
  2227. // click = '在线前端编程';
  2228. // break;
  2229. // default: break;
  2230. // }
  2231. // if(U.MD.D.I.Ip && click){
  2232. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  2233. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2234. // })
  2235. // }
  2236. // }
  2237. /**
  2238. *函数作用:ajax简易函数,使用post格式
  2239. *@param url {data} 后台地址
  2240. *@param data {data} 参数json
  2241. *@param fn {data} 回调函数
  2242. *
  2243. */
  2244. // U.MD.D.I.Mysqlrequest = function(url,fn){
  2245. // var xhr = new XMLHttpRequest();
  2246. // xhr.open("GET",url,true);
  2247. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  2248. // xhr.onreadystatechange = function(){
  2249. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  2250. // fn.call(this,xhr.responseText);
  2251. // }
  2252. // };
  2253. // xhr.send();
  2254. // }
  2255. /*判断是否是内网IP*/
  2256. // U.MD.D.I.isInnerIPFn = function(str){
  2257. // var curPageUrl = str;
  2258. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  2259. // curPageUrl =curPageUrl.replace(reg1,'');
  2260. // // console.log('curPageUrl-1 '+curPageUrl);
  2261. // var reg2 = /\:+/g;//替换冒号为一点
  2262. // curPageUrl =curPageUrl.replace(reg2,'.');
  2263. // // console.log('curPageUrl-2 '+curPageUrl);
  2264. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  2265. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  2266. // if(curPageUrl[2] != '16'){
  2267. // return ipAddress;
  2268. // }else{
  2269. // return false;
  2270. // }
  2271. // }
  2272. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  2273. // //compatibility for firefox and chrome
  2274. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  2275. // var pc = new myPeerConnection({
  2276. // iceServers: []
  2277. // }),
  2278. // noop = function() {},
  2279. // localIPs = {},
  2280. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  2281. // key;
  2282. // function iterateIP(ip) {
  2283. // if (!localIPs[ip]) onNewIP(ip);
  2284. // localIPs[ip] = true;
  2285. // }
  2286. // //create a bogus data channel
  2287. // pc.createDataChannel("");
  2288. // // create offer and set local description
  2289. // pc.createOffer().then(function(sdp) {
  2290. // sdp.sdp.split('\n').forEach(function(line) {
  2291. // if (line.indexOf('candidate') < 0) return;
  2292. // line.match(ipRegex).forEach(iterateIP);
  2293. // });
  2294. // pc.setLocalDescription(sdp, noop, noop);
  2295. // }).catch(function(reason) {
  2296. // // An error occurred, so handle the failure to connect
  2297. // });
  2298. // //sten for candidate events
  2299. // pc.onicecandidate = function(ice) {
  2300. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  2301. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  2302. // };
  2303. // }
  2304. // U.MD.D.I.getUserIpBool = function(callback){
  2305. // U.MD.D.I.getUserIP(function(ip){
  2306. // alert("Got IP! :" + ip);
  2307. // });
  2308. //}
  2309. //#endregion
  2310. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  2311. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  2312. _formdiv, //创建任务栏时同时弹出的窗体元素。
  2313. _userinfo = US.userInfo, //登录用户信息
  2314. _userid = US.userInfo.userid //登录用户id
  2315. let _iframe;
  2316. let _cid = cid,
  2317. _stage = stage,
  2318. _task = task,
  2319. _tool = tool;
  2320. var _jie = $$("div", {
  2321. "style": {
  2322. "position": "absolute",
  2323. "bottom": "50px",
  2324. "right": "50px",
  2325. "zIndex": "9999",
  2326. "backgroundColor": "#2268bc",
  2327. "color": "#fff",
  2328. "padding": "12px 20px",
  2329. "cursor": "pointer",
  2330. "borderRadius": "4px",
  2331. },
  2332. "innerHTML": "提交作业"
  2333. })
  2334. let aTool = ''
  2335. let _loading = document.createElement('div')
  2336. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  2337. // _loading.id = "";
  2338. let _lchild = document.createElement('div')
  2339. let _limg = document.createElement('img')
  2340. _limg.src = 'https://pbl.cocorobo.cn/pbl-student-table/dist/js/loading.gif'
  2341. _limg.style = "width: 26px;margin-right: 10px;"
  2342. _lchild.appendChild(_limg)
  2343. let _lspan = document.createElement('span')
  2344. _lspan.innerHTML = "上传中..."
  2345. _lchild.appendChild(_lspan)
  2346. _lchild.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;display:flex;align-items:center;"
  2347. _loading.appendChild(_lchild)
  2348. var _box = $$('div', {
  2349. "style": {
  2350. "position": "relative",
  2351. "width": "100%",
  2352. "height": "100%",
  2353. },
  2354. })
  2355. _box.appendChild(_loading)
  2356. _box.id = str + '_loadLi'
  2357. switch (str) {
  2358. case "whiteboard":
  2359. aTool = 1;
  2360. _iframe = $$("iframe", {
  2361. "frameborder": "no",
  2362. "border": "0",
  2363. "scrolling ": "no",
  2364. "style": {
  2365. "cssText": "border:0;width:100%;height:100%"
  2366. },
  2367. "src": "https://iwb.cocorobo.cn/"
  2368. })
  2369. _box.appendChild(_iframe);
  2370. _box.appendChild(_jie);
  2371. _formdiv = new U.UF.UI.form(
  2372. "电子白板",
  2373. _box, {
  2374. "id": "whiteboard",
  2375. "style": {
  2376. "width": "90%",
  2377. "height": "90%",
  2378. "overflow": 'hidden'
  2379. },
  2380. "onresize": function () { }
  2381. }, {
  2382. closecallback: function () { }
  2383. }, {
  2384. "style": {
  2385. "height": "36px"
  2386. }
  2387. }).form; //创建窗体
  2388. _taskbar = {
  2389. "id": str + _formdiv.id,
  2390. "style": {
  2391. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  2392. },
  2393. "name": "电子白板",
  2394. "forms": _formdiv,
  2395. "click": function () {
  2396. U.MD.D.I.openApplication(str, obj, info);
  2397. }
  2398. }
  2399. break;
  2400. case "mind":
  2401. aTool = 3;
  2402. _iframe = $$("iframe", {
  2403. "frameborder": "no",
  2404. "border": "0",
  2405. "scrolling ": "no",
  2406. "style": {
  2407. "cssText": "border:0;width:100%;height:100%"
  2408. },
  2409. "src": "/kityminder-editor/dist/index.html"
  2410. })
  2411. _box.appendChild(_iframe);
  2412. _box.appendChild(_jie);
  2413. _formdiv = new U.UF.UI.form(
  2414. "思维导图",
  2415. _box, { //"/jsmind/example/demo.html"
  2416. "id": "mind",
  2417. "style": {
  2418. "width": "90%",
  2419. "height": "90%",
  2420. "overflow": 'hidden'
  2421. },
  2422. "onresize": function () { }
  2423. }, {
  2424. closecallback: function () { }
  2425. }, {
  2426. "style": {
  2427. "height": "36px"
  2428. }
  2429. }).form; //创建窗体
  2430. _taskbar = {
  2431. "id": str + _formdiv.id,
  2432. "style": {
  2433. "backgroundImage": "url(/img/icon/mindMapping.png)"
  2434. },
  2435. "name": "思维导图",
  2436. "forms": _formdiv,
  2437. "click": function () {
  2438. U.MD.D.I.openApplication(str, obj, info);
  2439. }
  2440. }
  2441. break;
  2442. case "MindMap":
  2443. aTool = 3;
  2444. _iframe = $$("iframe", {
  2445. "frameborder": "no",
  2446. "border": "0",
  2447. "scrolling ": "no",
  2448. "style": {
  2449. "cssText": "border:0;width:100%;height:100%"
  2450. },
  2451. "src": "//cloud.cocorobo.cn/mind/"
  2452. })
  2453. _box.appendChild(_iframe);
  2454. _box.appendChild(_jie);
  2455. _formdiv = new U.UF.UI.form(
  2456. "思维导图",
  2457. _box, { //"/jsmind/example/demo.html"
  2458. "id": "mind",
  2459. "style": {
  2460. "width": "90%",
  2461. "height": "90%",
  2462. "overflow": 'hidden'
  2463. },
  2464. "onresize": function () { }
  2465. }, {
  2466. closecallback: function () { }
  2467. }, {
  2468. "style": {
  2469. "height": "36px"
  2470. }
  2471. }).form; //创建窗体
  2472. _taskbar = {
  2473. "id": str + _formdiv.id,
  2474. "style": {
  2475. "backgroundImage": "url(/img/icon/mindMapping.png)"
  2476. },
  2477. "name": "思维导图",
  2478. "forms": _formdiv,
  2479. "click": function () {
  2480. U.MD.D.I.openApplication(str, obj, info);
  2481. }
  2482. }
  2483. break;
  2484. case "doc":
  2485. aTool = 6;
  2486. _iframe = $$("iframe", {
  2487. "frameborder": "no",
  2488. "border": "0",
  2489. "scrolling ": "no",
  2490. "style": {
  2491. "cssText": "border:0;width:100%;height:100%"
  2492. },
  2493. "src": "/Office/Word/WordEditArea.htm"
  2494. })
  2495. _box.appendChild(_iframe);
  2496. _box.appendChild(_jie);
  2497. _formdiv = new U.UF.UI.form(
  2498. "协同文档",
  2499. _box, {
  2500. "id": "doc",
  2501. "style": {
  2502. "width": "90%",
  2503. "height": "90%",
  2504. "overflow": 'hidden'
  2505. },
  2506. "onresize": function () { }
  2507. }, {
  2508. closecallback: function () { }
  2509. }, {
  2510. "style": {
  2511. "height": "36px"
  2512. }
  2513. }).form; //创建窗体
  2514. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  2515. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  2516. })
  2517. _taskbar = {
  2518. "id": str + _formdiv.id,
  2519. "style": {
  2520. "backgroundImage": "url(/img/icon/doc.png)"
  2521. },
  2522. "name": "协同文档",
  2523. "forms": _formdiv,
  2524. "click": function () {
  2525. U.MD.D.I.openApplication(str, obj, info);
  2526. }
  2527. }
  2528. break;
  2529. case "mindNetwork": //好友打开
  2530. aTool = 7;
  2531. _iframe = $$("iframe", {
  2532. "webkitallowfullscreen": "",
  2533. "mozallowfullscreen": "",
  2534. "allowfullscreen": "",
  2535. "frameborder": "no",
  2536. "border": "0",
  2537. "scrolling ": "no",
  2538. "style": {
  2539. "cssText": "border:0; width:100%; height:100%;"
  2540. },
  2541. "src": "https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  2542. })
  2543. _box.appendChild(_iframe);
  2544. _box.appendChild(_jie);
  2545. _formdiv = new U.UF.UI.form(
  2546. "思维网格",
  2547. _box, {
  2548. "id": "mindNetwork",
  2549. "style": {
  2550. "width": "90%",
  2551. "height": "90%",
  2552. "overflow": 'hidden'
  2553. },
  2554. "onresize": function () { }
  2555. }, {
  2556. closecallback: function () { }
  2557. }, {
  2558. "style": {
  2559. "height": "36px"
  2560. }
  2561. }).form; //创建窗体
  2562. _taskbar = {
  2563. "id": str + _formdiv.id,
  2564. "style": {
  2565. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  2566. },
  2567. "name": "思维网格",
  2568. "forms": _formdiv,
  2569. "click": function () {
  2570. U.MD.D.I.openApplication(str, obj, info);
  2571. }
  2572. }
  2573. break;
  2574. case "courseDesign":
  2575. _iframe = $$("iframe", {
  2576. "webkitallowfullscreen": "",
  2577. "mozallowfullscreen": "",
  2578. "allowfullscreen": "",
  2579. "frameborder": "no",
  2580. "border": "0",
  2581. "scrolling ": "no",
  2582. "style": {
  2583. "cssText": "border:0; width:100%; height:100%;"
  2584. },
  2585. "src": "/course-design-vue"
  2586. })
  2587. _box.appendChild(_iframe);
  2588. _box.appendChild(_jie);
  2589. _formdiv = new U.UF.UI.form(
  2590. "课程设计",
  2591. _box, {
  2592. "id": "courseDesign",
  2593. "style": {
  2594. "width": "90%",
  2595. "height": "90%",
  2596. "overflow": 'hidden'
  2597. },
  2598. "onresize": function () { }
  2599. }, {
  2600. closecallback: function () { }
  2601. }, {
  2602. "style": {
  2603. "height": "36px"
  2604. }
  2605. }).form; //创建窗体
  2606. _taskbar = {
  2607. "id": str + _formdiv.id,
  2608. "style": {
  2609. "backgroundImage": "url(/img/icon/courseDesign.png)"
  2610. },
  2611. "name": "课程设计",
  2612. "forms": _formdiv,
  2613. "click": function () {
  2614. U.MD.D.I.openApplication(str, obj, info);
  2615. }
  2616. }
  2617. break;
  2618. }
  2619. const script1 = document.createElement("script");
  2620. script1.type = "text/javascript";
  2621. script1.src =
  2622. "https://pbl.cocorobo.cn/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  2623. const script2 = document.createElement("script");
  2624. script2.type = "text/javascript";
  2625. script2.src =
  2626. "https://pbl.cocorobo.cn/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  2627. const script3 = document.createElement("script");
  2628. script3.type = "text/javascript";
  2629. script3.charset = "UTF-8";
  2630. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  2631. const script4 = document.createElement("script");
  2632. script4.type = "text/javascript";
  2633. script4.src = "https://pbl.cocorobo.cn/pbl-student-table/dist/js/jietu2.js";
  2634. if (_iframe) {
  2635. if (str == 'doc') {
  2636. U.UF.DL.iframeLoad(_iframe, function () {
  2637. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  2638. _iframe.contentWindow.document.body.appendChild(script1);
  2639. _iframe.contentWindow.document.body.appendChild(script2);
  2640. // _iframe.contentWindow.document.body.appendChild(script3);
  2641. _iframe.contentWindow.document.body.appendChild(script4);
  2642. })
  2643. } else if (str == 'courseDesign') {
  2644. U.UF.DL.iframeLoad(_iframe, function () {
  2645. // _iframe.contentWindow.U.MD.O.W.load();
  2646. // _iframe.contentWindow.document.body.appendChild(script1);
  2647. _iframe.contentWindow.document.body.appendChild(script2);
  2648. _iframe.contentWindow.document.body.appendChild(script4);
  2649. })
  2650. } else if (str == 'mind') {
  2651. U.UF.DL.iframeLoad(_iframe, function () {
  2652. //
  2653. _iframe.contentWindow.document.body.appendChild(script1);
  2654. _iframe.contentWindow.document.body.appendChild(script2);
  2655. _iframe.contentWindow.document.body.appendChild(script4);
  2656. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2',_iframe)
  2657. })
  2658. } else {
  2659. _iframe.onload = () => {
  2660. _iframe.contentWindow.document.body.appendChild(script1);
  2661. _iframe.contentWindow.document.body.appendChild(script2);
  2662. // _iframe.contentWindow.document.body.appendChild(script3);
  2663. _iframe.contentWindow.document.body.appendChild(script4);
  2664. };
  2665. }
  2666. _jie.onclick = async () => {
  2667. let text = ''
  2668. if (aTool == 6) {
  2669. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  2670. } else if (aTool == 3) {
  2671. text = await U.MD.D.I.getEditorContent(_iframe);
  2672. }
  2673. _loading.style.display = 'flex'
  2674. console.log(_loading);
  2675. var _ajs = _iframe.contentWindow.document.createElement("script");
  2676. _ajs.type = "text/javascript";
  2677. _ajs.innerHTML =
  2678. // 'console.log(' + _loading + ');\n' +
  2679. 'var _js = document.createElement("script");\n' +
  2680. '_js.type="text/javascript";\n' +
  2681. '_js.charset="UTF-8";\n' +
  2682. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  2683. "_js.onload = function(){\n" +
  2684. ' var a = document.getElementsByTagName("img")\n' +
  2685. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  2686. " html2canvas(document.body,{allowTaint: true,useCORS: true}).then(canvas => {\n" +
  2687. '  var base64Url = canvas.toDataURL("image/png");\n' +
  2688. 'var base64 = "<img src=" + base64Url + " />"\n' +
  2689. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  2690. "beforeUpload_shishi(file," +
  2691. "'" +
  2692. _userid +
  2693. "'" +
  2694. ", " +
  2695. "'" +
  2696. _cid +
  2697. "'" +
  2698. ", " +
  2699. "'" +
  2700. _stage +
  2701. "'" +
  2702. ", " +
  2703. "'" +
  2704. _task +
  2705. "'" +
  2706. ", " +
  2707. "'" +
  2708. _tool +
  2709. "'" +
  2710. ", " +
  2711. "'" +
  2712. str + '_loadLi' +
  2713. "'" +
  2714. ", " +
  2715. "'" +
  2716. aTool +
  2717. "'" +
  2718. ", " +
  2719. "`" +
  2720. text +
  2721. "`" +
  2722. ")\n" +
  2723. " });\n" +
  2724. "}\n" +
  2725. "document.head.appendChild(_js);\n";
  2726. _iframe.contentWindow.document.head.appendChild(_ajs);
  2727. }
  2728. }
  2729. //U.MD.D.I.openClick(str);
  2730. //如果有任务栏信息
  2731. if (_taskbar) {
  2732. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  2733. }
  2734. }
  2735. U.MD.D.I.getEditorContent = function (iframe) {
  2736. return new Promise((resolve, reject) => {
  2737. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  2738. console.log(content);
  2739. resolve(content)
  2740. });
  2741. });
  2742. }
  2743. U.MD.D.I.getContent = async function (cid, s, task, t, uid, type,iframe) {
  2744. U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  2745. reject("aaa")
  2746. if (res.value[0].length > 0) {
  2747. // resolve(res.value[0][0].text);
  2748. iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  2749. $(fileInput).val('');
  2750. });
  2751. }
  2752. }, [], { "type": "GET", "withCredentials": true });
  2753. }