DeskTop.js 537 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848
  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": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  730. ];
  731. //hk
  732. U.MD.D.I.hkaceStudentDeskIcon = [
  733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  736. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  739. ];
  740. //香海正覺蓮社佛教正覺中學
  741. U.MD.D.I.hkZJLSteacherDeskIcon = [
  742. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  743. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  744. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  745. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  746. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  747. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  748. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  749. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  750. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  751. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  752. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  753. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  754. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  755. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. ];
  759. //香海正覺蓮社佛教正覺中學
  760. U.MD.D.I.hkZJLSStudentDeskIcon = [
  761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //云海
  767. U.MD.D.I.yunhaiTeacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  775. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  776. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  777. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  778. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  779. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  780. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  781. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  782. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. ];
  787. //福田
  788. U.MD.D.I.heyuanTeacherDeskIcon = [
  789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  793. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  794. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  795. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  796. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  798. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  801. ];
  802. //福田
  803. U.MD.D.I.heyuanAdminDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  811. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  812. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  815. ];
  816. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  817. U.MD.D.I.szherTeacherDeskIcon = [
  818. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  819. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  820. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  821. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  822. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  823. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  824. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  825. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  829. ];
  830. //dsei
  831. U.MD.D.I.dseiTeacherDeskIcon = [
  832. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  833. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  834. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  835. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  836. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  838. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  839. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  840. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  841. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  842. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  843. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  844. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  845. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  846. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  847. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  848. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  849. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  850. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  851. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  852. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  853. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  854. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  855. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  856. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  857. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  858. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  859. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  860. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  861. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  862. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  863. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  864. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  865. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  866. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  867. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  868. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  869. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  872. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  873. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  874. ];
  875. //dsei
  876. U.MD.D.I.dseiAdminDeskIcon = [
  877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  886. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  887. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  888. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  889. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  890. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  891. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  892. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  893. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  894. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  895. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  896. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  897. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  898. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  899. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  900. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  901. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  902. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  903. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  904. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  905. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  906. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  907. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  908. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  909. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  910. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  911. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  912. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  913. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  918. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  919. ];
  920. //dsei
  921. U.MD.D.I.dseiStudentDeskIcon = [
  922. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  923. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  925. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  928. ];
  929. //未来教育基地
  930. U.MD.D.I.szjkyTeacherDeskIcon = [
  931. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  932. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  936. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  937. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  938. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  939. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  940. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  941. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  942. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  945. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  946. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  947. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  948. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  949. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  950. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  951. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  952. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  953. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. ];
  1226. //盐田区幼儿园
  1227. U.MD.D.I.ytyStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. ];
  1232. //#region 桌面初始化a
  1233. /**
  1234. * 初始化桌面的起始函数
  1235. *
  1236. */
  1237. U.MD.D.I.init = function () {
  1238. if ($("#U_MD_D_K")[0]) {
  1239. //初始化桌面图标
  1240. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1241. // var clickUrl = ':12588/requestIp.php';
  1242. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1243. // U.MD.D.I.Ip = data;
  1244. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1245. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1246. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1247. // })
  1248. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1249. // })
  1250. }
  1251. }
  1252. /**
  1253. * 模式切换
  1254. *
  1255. */
  1256. U.MD.D.I.ModeCheck = function (type) {
  1257. if (US.Config.type == type) {
  1258. return
  1259. }
  1260. US.Config.type = type
  1261. $('.U_PBL_Check .active')[0].className = ''
  1262. if (type == 1) {
  1263. $('.U_PBL_Check div')[0].className = 'active'
  1264. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1265. } else {
  1266. $('.U_PBL_Check div')[1].className = 'active'
  1267. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1268. }
  1269. //初始化桌面图标
  1270. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1271. if (type == 2) {
  1272. U.MD.D.I.openApplication("project")
  1273. }
  1274. }
  1275. /**
  1276. * 隐藏任务栏
  1277. *
  1278. * @param {element} 桌面元素
  1279. */
  1280. U.MD.D.I.hiddenTaskbar = function (el) {
  1281. //任务栏位置变小
  1282. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1283. //桌面的位置变大
  1284. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1285. }
  1286. /**
  1287. * 隐藏任务栏
  1288. *
  1289. * @param {element} 桌面元素
  1290. */
  1291. U.MD.D.I.hiddenTaskbarout = function (el) {
  1292. //任务栏位置变小
  1293. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1294. //任务栏位置变化
  1295. U.selectEl(el).css({ "bottom": "-60px" });
  1296. //桌面的位置变大
  1297. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1298. }
  1299. }
  1300. /**
  1301. * 初始化打印桌面图标
  1302. *
  1303. * @param {element} 桌面元素
  1304. */
  1305. U.MD.D.I.initDesktopIcons = function (el, type) {
  1306. var i, //用于循环
  1307. _content, //桌面图标元素
  1308. _iconcontent, //桌面图标元素
  1309. _frag = $$("frag"), //定义一个碎片元素
  1310. _type = US.userInfo.type,
  1311. _org = US.userInfo.org,
  1312. _oid = US.userInfo.organizeid,
  1313. _role = US.userInfo.role,
  1314. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1315. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1316. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1317. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1318. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1319. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1320. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1321. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1322. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1323. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1324. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1325. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1326. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1327. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1328. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1329. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1330. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1331. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1332. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1333. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1334. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1335. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1336. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1337. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1338. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1339. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1340. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1341. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1342. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1343. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1344. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1345. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1346. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1347. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1348. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1349. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1350. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1351. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1352. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1353. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1354. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1355. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1356. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1357. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1358. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1359. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1360. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1361. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1362. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1363. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1364. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1365. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1366. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1367. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1368. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1369. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1370. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1371. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1372. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1373. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1374. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1375. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1376. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1377. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1378. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1379. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1380. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1381. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5'];
  1382. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344'];
  1383. //清楚桌面图标
  1384. el.innerHTML = "";
  1385. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1386. _teacherDesktopIconInfo.push(
  1387. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1388. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1389. )
  1390. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1391. }
  1392. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1393. _teacherDesktopIconInfo.push(
  1394. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1395. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1396. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1397. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1398. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1399. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1400. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1401. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1402. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1403. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1404. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1405. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1406. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1407. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1408. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1409. )
  1410. }
  1411. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1412. _teacherDesktopIconInfo.push(
  1413. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1414. )
  1415. }
  1416. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1417. // _teacherDesktopIconInfo.push(
  1418. // )
  1419. // }
  1420. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1421. _teacherDesktopIconInfo.push(
  1422. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1424. )
  1425. }
  1426. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1427. _teacherDesktopIconInfo.push(
  1428. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1432. )
  1433. _studentDesktopIconInfo.push(
  1434. )
  1435. }
  1436. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1437. _teacherDesktopIconInfo.push(
  1438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1439. )
  1440. _studentDesktopIconInfo.push(
  1441. )
  1442. }
  1443. //麒麟二中 和 民新小学
  1444. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1445. _teacherDesktopIconInfo.push(
  1446. )
  1447. }
  1448. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1449. _teacherDesktopIconInfo.push(
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. )
  1454. }
  1455. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1456. _teacherDesktopIconInfo.push(
  1457. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1458. )
  1459. }
  1460. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1461. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1462. _teacherDesktopIconInfo.push(
  1463. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1464. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1465. )
  1466. }
  1467. //麒麟二中
  1468. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1469. _studentDesktopIconInfo.push(
  1470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1471. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1472. )
  1473. }
  1474. //万科双语
  1475. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1476. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1477. if (el.Name == '项目管理') {
  1478. el.Name = 'PBL项目'
  1479. }
  1480. return el
  1481. })
  1482. _studentDesktopIconInfo3.push(
  1483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1484. )
  1485. }
  1486. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1487. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1488. return el.Name != '魔盒识字' && el.Name != '24点'
  1489. })
  1490. }
  1491. if ((_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") && _type == 2) {
  1492. _studentDesktopIconInfo.push(
  1493. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1495. )
  1496. }
  1497. //循环创建桌面图标
  1498. if (type == 1) {
  1499. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1500. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1501. _content = $$("div", {
  1502. className: "U_MD_D_KO",
  1503. "onmousedown": U.UF.C.closure(function (obj) {
  1504. //防止拖动图标即打开了桌面应用
  1505. U.MD.D.click(this, obj);
  1506. }, [_studentDesktopIconInfo[i]]),
  1507. "onclick": U.UF.C.closure(function (obj) {
  1508. //防止拖动图标即打开了桌面应用
  1509. U.MD.D.click(this, obj);
  1510. }, [_studentDesktopIconInfo[i]])
  1511. }, _frag); //
  1512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1515. }
  1516. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1517. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1518. _content = $$("div", {
  1519. className: "U_MD_D_KO",
  1520. "onmousedown": U.UF.C.closure(function (obj) {
  1521. //防止拖动图标即打开了桌面应用
  1522. U.MD.D.click(this, obj);
  1523. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1524. "onclick": U.UF.C.closure(function (obj) {
  1525. //防止拖动图标即打开了桌面应用
  1526. U.MD.D.click(this, obj);
  1527. }, [_hkZJLSStudentDeskIconInfo[i]])
  1528. }, _frag); //
  1529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1532. } //
  1533. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1534. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1535. _content = $$("div", {
  1536. className: "U_MD_D_KO",
  1537. "onmousedown": U.UF.C.closure(function (obj) {
  1538. //防止拖动图标即打开了桌面应用
  1539. U.MD.D.click(this, obj);
  1540. }, [_ytyStudentDeskIconInfo[i]]),
  1541. "onclick": U.UF.C.closure(function (obj) {
  1542. //防止拖动图标即打开了桌面应用
  1543. U.MD.D.click(this, obj);
  1544. }, [_ytyStudentDeskIconInfo[i]])
  1545. }, _frag); //
  1546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1549. } //
  1550. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1551. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1552. _content = $$("div", {
  1553. className: "U_MD_D_KO",
  1554. "onmousedown": U.UF.C.closure(function (obj) {
  1555. //防止拖动图标即打开了桌面应用
  1556. U.MD.D.click(this, obj);
  1557. }, [_jccssylStudentDeskIconInfo[i]]),
  1558. "onclick": U.UF.C.closure(function (obj) {
  1559. //防止拖动图标即打开了桌面应用
  1560. U.MD.D.click(this, obj);
  1561. }, [_jccssylStudentDeskIconInfo[i]])
  1562. }, _frag); //
  1563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1566. }
  1567. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1568. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1569. _content = $$("div", {
  1570. className: "U_MD_D_KO",
  1571. "onmousedown": U.UF.C.closure(function (obj) {
  1572. //防止拖动图标即打开了桌面应用
  1573. U.MD.D.click(this, obj);
  1574. }, [_caleStudentDeskIconInfo[i]]),
  1575. "onclick": U.UF.C.closure(function (obj) {
  1576. //防止拖动图标即打开了桌面应用
  1577. U.MD.D.click(this, obj);
  1578. }, [_caleStudentDeskIconInfo[i]])
  1579. }, _frag); //
  1580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1583. }
  1584. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1585. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1586. _content = $$("div", {
  1587. className: "U_MD_D_KO",
  1588. "onmousedown": U.UF.C.closure(function (obj) {
  1589. //防止拖动图标即打开了桌面应用
  1590. U.MD.D.click(this, obj);
  1591. }, [_thuioeStudentDeskIconInfo[i]]),
  1592. "onclick": U.UF.C.closure(function (obj) {
  1593. //防止拖动图标即打开了桌面应用
  1594. U.MD.D.click(this, obj);
  1595. }, [_thuioeStudentDeskIconInfo[i]])
  1596. }, _frag); //
  1597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1600. }
  1601. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1602. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1603. _content = $$("div", {
  1604. className: "U_MD_D_KO",
  1605. "onmousedown": U.UF.C.closure(function (obj) {
  1606. //防止拖动图标即打开了桌面应用
  1607. U.MD.D.click(this, obj);
  1608. }, [_tpcStudentDeskIconInfo[i]]),
  1609. "onclick": U.UF.C.closure(function (obj) {
  1610. //防止拖动图标即打开了桌面应用
  1611. U.MD.D.click(this, obj);
  1612. }, [_tpcStudentDeskIconInfo[i]])
  1613. }, _frag); //
  1614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1617. } //
  1618. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1619. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1620. _content = $$("div", {
  1621. className: "U_MD_D_KO",
  1622. "onmousedown": U.UF.C.closure(function (obj) {
  1623. //防止拖动图标即打开了桌面应用
  1624. U.MD.D.click(this, obj);
  1625. }, [_chjyjStudentDeskIconInfo[i]]),
  1626. "onclick": U.UF.C.closure(function (obj) {
  1627. //防止拖动图标即打开了桌面应用
  1628. U.MD.D.click(this, obj);
  1629. }, [_chjyjStudentDeskIconInfo[i]])
  1630. }, _frag); //
  1631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1634. }
  1635. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1636. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1637. _content = $$("div", {
  1638. className: "U_MD_D_KO",
  1639. "onmousedown": U.UF.C.closure(function (obj) {
  1640. //防止拖动图标即打开了桌面应用
  1641. U.MD.D.click(this, obj);
  1642. }, [_szjkyStudentDeskIconInfo[i]]),
  1643. "onclick": U.UF.C.closure(function (obj) {
  1644. //防止拖动图标即打开了桌面应用
  1645. U.MD.D.click(this, obj);
  1646. }, [_szjkyStudentDeskIconInfo[i]])
  1647. }, _frag); //
  1648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1651. }
  1652. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1653. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1654. _content = $$("div", {
  1655. className: "U_MD_D_KO",
  1656. "onmousedown": U.UF.C.closure(function (obj) {
  1657. //防止拖动图标即打开了桌面应用
  1658. U.MD.D.click(this, obj);
  1659. }, [_dseiStudentDeskIconInfo[i]]),
  1660. "onclick": U.UF.C.closure(function (obj) {
  1661. //防止拖动图标即打开了桌面应用
  1662. U.MD.D.click(this, obj);
  1663. }, [_dseiStudentDeskIconInfo[i]])
  1664. }, _frag); //
  1665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1668. }
  1669. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1670. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1671. _content = $$("div", {
  1672. className: "U_MD_D_KO",
  1673. "onmousedown": U.UF.C.closure(function (obj) {
  1674. //防止拖动图标即打开了桌面应用
  1675. U.MD.D.click(this, obj);
  1676. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1677. "onclick": U.UF.C.closure(function (obj) {
  1678. //防止拖动图标即打开了桌面应用
  1679. U.MD.D.click(this, obj);
  1680. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1681. }, _frag); //
  1682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1685. }
  1686. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1687. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1688. _content = $$("div", {
  1689. className: "U_MD_D_KO",
  1690. "onmousedown": U.UF.C.closure(function (obj) {
  1691. //防止拖动图标即打开了桌面应用
  1692. U.MD.D.click(this, obj);
  1693. }, [_siesStudentDeskIconInfo[i]]),
  1694. "onclick": U.UF.C.closure(function (obj) {
  1695. //防止拖动图标即打开了桌面应用
  1696. U.MD.D.click(this, obj);
  1697. }, [_siesStudentDeskIconInfo[i]])
  1698. }, _frag); //
  1699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1702. }
  1703. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1704. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1705. _content = $$("div", {
  1706. className: "U_MD_D_KO",
  1707. "onmousedown": U.UF.C.closure(function (obj) {
  1708. //防止拖动图标即打开了桌面应用
  1709. U.MD.D.click(this, obj);
  1710. }, [_hkStudentDeskIconInfo[i]]),
  1711. "onclick": U.UF.C.closure(function (obj) {
  1712. //防止拖动图标即打开了桌面应用
  1713. U.MD.D.click(this, obj);
  1714. }, [_hkStudentDeskIconInfo[i]])
  1715. }, _frag); //
  1716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1719. }
  1720. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1721. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1722. _content = $$("div", {
  1723. className: "U_MD_D_KO",
  1724. "onmousedown": U.UF.C.closure(function (obj) {
  1725. //防止拖动图标即打开了桌面应用
  1726. U.MD.D.click(this, obj);
  1727. }, [_hkaceStudentDeskIconInfo[i]]),
  1728. "onclick": U.UF.C.closure(function (obj) {
  1729. //防止拖动图标即打开了桌面应用
  1730. U.MD.D.click(this, obj);
  1731. }, [_hkaceStudentDeskIconInfo[i]])
  1732. }, _frag); //
  1733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1736. }
  1737. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1738. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1739. _content = $$("div", {
  1740. className: "U_MD_D_KO",
  1741. "onmousedown": U.UF.C.closure(function (obj) {
  1742. //防止拖动图标即打开了桌面应用
  1743. U.MD.D.click(this, obj);
  1744. }, [_studentDesktopIconInfo[i]]),
  1745. "onclick": U.UF.C.closure(function (obj) {
  1746. //防止拖动图标即打开了桌面应用
  1747. U.MD.D.click(this, obj);
  1748. }, [_studentDesktopIconInfo[i]])
  1749. }, _frag); //
  1750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1753. }
  1754. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1755. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1756. _content = $$("div", {
  1757. className: "U_MD_D_KO",
  1758. "onmousedown": U.UF.C.closure(function (obj) {
  1759. //防止拖动图标即打开了桌面应用
  1760. U.MD.D.click(this, obj);
  1761. }, [_tcStudentDeskIconInfo[i]]),
  1762. "onclick": U.UF.C.closure(function (obj) {
  1763. //防止拖动图标即打开了桌面应用
  1764. U.MD.D.click(this, obj);
  1765. }, [_tcStudentDeskIconInfo[i]])
  1766. }, _frag); //
  1767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1770. }
  1771. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1772. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1773. _content = $$("div", {
  1774. className: "U_MD_D_KO",
  1775. "onmousedown": U.UF.C.closure(function (obj) {
  1776. //防止拖动图标即打开了桌面应用
  1777. U.MD.D.click(this, obj);
  1778. }, [_szscStudentDeskIconInfo[i]]),
  1779. "onclick": U.UF.C.closure(function (obj) {
  1780. //防止拖动图标即打开了桌面应用
  1781. U.MD.D.click(this, obj);
  1782. }, [_szscStudentDeskIconInfo[i]])
  1783. }, _frag); //
  1784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1787. }
  1788. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1789. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1790. _content = $$("div", {
  1791. className: "U_MD_D_KO",
  1792. "onmousedown": U.UF.C.closure(function (obj) {
  1793. //防止拖动图标即打开了桌面应用
  1794. U.MD.D.click(this, obj);
  1795. }, [_studentDesktopIconInfo3[i]]),
  1796. "onclick": U.UF.C.closure(function (obj) {
  1797. //防止拖动图标即打开了桌面应用
  1798. U.MD.D.click(this, obj);
  1799. }, [_studentDesktopIconInfo3[i]])
  1800. }, _frag); //
  1801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1804. }
  1805. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1806. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1807. _content = $$("div", {
  1808. className: "U_MD_D_KO",
  1809. "onmousedown": U.UF.C.closure(function (obj) {
  1810. //防止拖动图标即打开了桌面应用
  1811. U.MD.D.click(this, obj);
  1812. }, [_studentDesktopIconInfo2[i]]),
  1813. "onclick": U.UF.C.closure(function (obj) {
  1814. //防止拖动图标即打开了桌面应用
  1815. U.MD.D.click(this, obj);
  1816. }, [_studentDesktopIconInfo2[i]])
  1817. }, _frag); //
  1818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1821. }
  1822. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1823. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1824. _content = $$("div", {
  1825. className: "U_MD_D_KO",
  1826. "onmousedown": U.UF.C.closure(function (obj) {
  1827. //防止拖动图标即打开了桌面应用
  1828. U.MD.D.click(this, obj);
  1829. }, [_wanketeacherDesktopIconInfo[i]]),
  1830. "onclick": U.UF.C.closure(function (obj) {
  1831. //防止拖动图标即打开了桌面应用
  1832. U.MD.D.click(this, obj);
  1833. }, [_wanketeacherDesktopIconInfo[i]])
  1834. }, _frag); //
  1835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1838. }
  1839. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1840. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1841. _content = $$("div", {
  1842. className: "U_MD_D_KO",
  1843. "onmousedown": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_wankeAdminDesktopIconInfo[i]]),
  1847. "onclick": U.UF.C.closure(function (obj) {
  1848. //防止拖动图标即打开了桌面应用
  1849. U.MD.D.click(this, obj);
  1850. }, [_wankeAdminDesktopIconInfo[i]])
  1851. }, _frag); //
  1852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1855. }
  1856. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1857. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1858. _content = $$("div", {
  1859. className: "U_MD_D_KO",
  1860. "onmousedown": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_jccssylTeacherDeskIconInfo[i]]),
  1864. "onclick": U.UF.C.closure(function (obj) {
  1865. //防止拖动图标即打开了桌面应用
  1866. U.MD.D.click(this, obj);
  1867. }, [_jccssylTeacherDeskIconInfo[i]])
  1868. }, _frag); //
  1869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1872. }
  1873. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1874. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1875. _content = $$("div", {
  1876. className: "U_MD_D_KO",
  1877. "onmousedown": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_caleTeacherDeskIconInfo[i]]),
  1881. "onclick": U.UF.C.closure(function (obj) {
  1882. //防止拖动图标即打开了桌面应用
  1883. U.MD.D.click(this, obj);
  1884. }, [_caleTeacherDeskIconInfo[i]])
  1885. }, _frag); //
  1886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1889. }
  1890. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1891. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1892. _content = $$("div", {
  1893. className: "U_MD_D_KO",
  1894. "onmousedown": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_tpcOrganizerDeskIconInfo[i]]),
  1898. "onclick": U.UF.C.closure(function (obj) {
  1899. //防止拖动图标即打开了桌面应用
  1900. U.MD.D.click(this, obj);
  1901. }, [_tpcOrganizerDeskIconInfo[i]])
  1902. }, _frag); //
  1903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1906. }
  1907. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1908. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1909. _content = $$("div", {
  1910. className: "U_MD_D_KO",
  1911. "onmousedown": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_tpcTeacherDeskIconInfo[i]]),
  1915. "onclick": U.UF.C.closure(function (obj) {
  1916. //防止拖动图标即打开了桌面应用
  1917. U.MD.D.click(this, obj);
  1918. }, [_tpcTeacherDeskIconInfo[i]])
  1919. }, _frag); //
  1920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1923. }
  1924. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1925. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1926. _content = $$("div", {
  1927. className: "U_MD_D_KO",
  1928. "onmousedown": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_teacherDesktopIconInfo2[i]]),
  1932. "onclick": U.UF.C.closure(function (obj) {
  1933. //防止拖动图标即打开了桌面应用
  1934. U.MD.D.click(this, obj);
  1935. }, [_teacherDesktopIconInfo2[i]])
  1936. }, _frag); //
  1937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1940. }
  1941. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1942. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1943. _content = $$("div", {
  1944. className: "U_MD_D_KO",
  1945. "onmousedown": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_thuioeTeacherDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_thuioeTeacherDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1957. }
  1958. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1959. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1960. _content = $$("div", {
  1961. className: "U_MD_D_KO",
  1962. "onmousedown": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_lotechTeacherDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_lotechTeacherDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1974. }//
  1975. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1976. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1977. _content = $$("div", {
  1978. className: "U_MD_D_KO",
  1979. "onmousedown": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1983. "onclick": U.UF.C.closure(function (obj) {
  1984. //防止拖动图标即打开了桌面应用
  1985. U.MD.D.click(this, obj);
  1986. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1987. }, _frag); //
  1988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1991. }
  1992. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1993. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1994. _content = $$("div", {
  1995. className: "U_MD_D_KO",
  1996. "onmousedown": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_siesTeacherDeskIconInfo[i]]),
  2000. "onclick": U.UF.C.closure(function (obj) {
  2001. //防止拖动图标即打开了桌面应用
  2002. U.MD.D.click(this, obj);
  2003. }, [_siesTeacherDeskIconInfo[i]])
  2004. }, _frag); //
  2005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2008. }
  2009. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2010. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2011. _content = $$("div", {
  2012. className: "U_MD_D_KO",
  2013. "onmousedown": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_longhuaTeacherDeskIconInfo[i]]),
  2017. "onclick": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_longhuaTeacherDeskIconInfo[i]])
  2021. }, _frag); //
  2022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2025. }
  2026. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2027. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2028. _content = $$("div", {
  2029. className: "U_MD_D_KO",
  2030. "onmousedown": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_ytyTeacherDeskIconInfo[i]]),
  2034. "onclick": U.UF.C.closure(function (obj) {
  2035. //防止拖动图标即打开了桌面应用
  2036. U.MD.D.click(this, obj);
  2037. }, [_ytyTeacherDeskIconInfo[i]])
  2038. }, _frag); //
  2039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2042. }
  2043. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2044. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2045. _content = $$("div", {
  2046. className: "U_MD_D_KO",
  2047. "onmousedown": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2051. "onclick": U.UF.C.closure(function (obj) {
  2052. //防止拖动图标即打开了桌面应用
  2053. U.MD.D.click(this, obj);
  2054. }, [_yunhaiTeacherDeskIconInfo[i]])
  2055. }, _frag); //
  2056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2059. } //_hkStudentDeskIconInfo
  2060. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2061. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2062. _content = $$("div", {
  2063. className: "U_MD_D_KO",
  2064. "onmousedown": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2068. "onclick": U.UF.C.closure(function (obj) {
  2069. //防止拖动图标即打开了桌面应用
  2070. U.MD.D.click(this, obj);
  2071. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2072. }, _frag); //
  2073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2076. }
  2077. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2078. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2079. _content = $$("div", {
  2080. className: "U_MD_D_KO",
  2081. "onmousedown": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_hkTeacherDeskIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_hkTeacherDeskIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2093. }
  2094. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2095. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_hkaceTeacherDeskIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_hkaceTeacherDeskIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2112. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_gdjgAdminDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_gdjgAdminDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2127. }
  2128. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2129. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_gdjgTeacherDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_gdjgTeacherDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2144. }
  2145. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2146. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_szherTeacherDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖动图标即打开了桌面应用
  2155. U.MD.D.click(this, obj);
  2156. }, [_szherTeacherDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2163. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_heyuannAdminDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_heyuannAdminDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2180. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_heyuanTeacherDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_heyuanTeacherDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2195. } //
  2196. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2197. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_dseiAdminDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_dseiAdminDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2214. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_dseiTeacherDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_dseiTeacherDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2229. } //
  2230. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2231. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjAdminDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_chjyjAdminDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2246. }//
  2247. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2248. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_chjyjTeacherDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_chjyjTeacherDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2265. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_szjkyAdminDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_szjkyAdminDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2280. }//
  2281. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2282. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_szjkyTeacherDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_szjkyTeacherDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2299. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_futianAdminDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_futianAdminDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2316. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_futianTeacherDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_futianTeacherDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2333. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_MingdeTeacherDeskIcon[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_MingdeTeacherDeskIcon[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2348. }
  2349. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2350. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_lhsAdminDesktopIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_lhsAdminDesktopIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2367. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_lhsteacherDesktopIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_lhsteacherDesktopIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2384. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_zhoujiateacherDesktopIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2401. for (i = 0; i < _hanDeskIcon.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_hanDeskIcon[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_hanDeskIcon[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2416. }
  2417. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2418. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_orgStemDeskIcon[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_orgStemDeskIcon[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2433. }
  2434. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2435. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_szulsDeskIcon[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_szulsDeskIcon[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2450. }
  2451. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2452. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_orgDesktopIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_orgDesktopIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2469. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_schoolDesktopIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_schoolDesktopIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2486. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_GMteacherDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_GMteacherDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2503. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SONGteacherDesktopIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_SONGteacherDesktopIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2520. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_GMstudentDesktopIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_GMstudentDesktopIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2537. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_tcTeacherDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_tcTeacherDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2554. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tcOrganizerDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_tcOrganizerDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2571. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_szscTeacherDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_szscTeacherDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2588. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_szscOrganizerDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_szscOrganizerDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else {
  2605. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_teacherDesktopIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_teacherDesktopIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. }
  2622. } else {
  2623. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. style: { 'width': '124px', 'height': '145px' },
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_easyDesktopIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_easyDesktopIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2639. }
  2640. }
  2641. if (type == 1) {
  2642. //加载好后给图标定位
  2643. U.MD.D.iconPostion($(_frag).Child());
  2644. } else {
  2645. //加载好后给图标定位
  2646. U.MD.D.iconPostion2($(_frag).Child());
  2647. }
  2648. //把图标加载到页面
  2649. el.appendChild(_frag);
  2650. }
  2651. /**
  2652. * 显示任务栏
  2653. *
  2654. * @param {element} 桌面元素
  2655. */
  2656. U.MD.D.I.displayTaskbar = function (el) {
  2657. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2658. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2659. //任务栏位置变化
  2660. U.selectEl(el).css({ "bottom": "0px" });
  2661. //桌面位置变话
  2662. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2663. }
  2664. }
  2665. //#region 桌面图标拖动逻辑
  2666. /**
  2667. * 桌面排列图标
  2668. *
  2669. * @param {element} 桌面元素
  2670. * @param {object} 上下相距的距离
  2671. * @param {object} 左右相距的距离
  2672. * @return {object} 命名空间
  2673. */
  2674. U.MD.D.iconPostion = function (childs, top, left) {
  2675. var i; //用于循环处理
  2676. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2677. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2678. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2679. for (i = 0; i < childs.length; i++) {
  2680. //如果竖排top超过了范围处理
  2681. if (top + 95 > US.height - 10) {
  2682. //left超过了页面范围处理,则向上重叠打印处理
  2683. if ((left + 180) > US.width) {
  2684. top -= 110;
  2685. left -= 90;
  2686. }
  2687. //没有超过范围,那么left+90添加到下一个竖排打印
  2688. else {
  2689. left += 90;
  2690. top = 15;
  2691. };
  2692. }
  2693. //给图标的位置赋值
  2694. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2695. if (i < childs.length - 1) {
  2696. //页面图标每次向下加95
  2697. top += 95;
  2698. }
  2699. }
  2700. //返回最后调用的图标的位置
  2701. return [top, left];
  2702. }
  2703. /**
  2704. * 桌面排列图标
  2705. *
  2706. * @param {element} 桌面元素
  2707. * @param {object} 上下相距的距离
  2708. * @param {object} 左右相距的距离
  2709. * @return {object} 命名空间
  2710. */
  2711. U.MD.D.iconPostion2 = function (childs, top, left) {
  2712. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2713. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2714. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2715. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2716. for (i = 0; i < childs.length; i++) {
  2717. //如果竖排top超过了范围处理
  2718. if (left + 150 > US.width - 10) {
  2719. //left超过了页面范围处理,则向上重叠打印处理
  2720. if ((top + 180) > US.Height) {
  2721. top -= 150;
  2722. left -= 150;
  2723. }
  2724. //没有超过范围,那么left+90添加到下一个竖排打印
  2725. else {
  2726. top += 150;
  2727. left = ol;
  2728. };
  2729. }
  2730. //给图标的位置赋值
  2731. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2732. if (i < childs.length - 1) {
  2733. //页面图标每次向下加95
  2734. left += 150;
  2735. }
  2736. }
  2737. //返回最后调用的图标的位置
  2738. return [top, left];
  2739. }
  2740. /**
  2741. * 桌面点击事件逻辑
  2742. *
  2743. * @param {element} 桌面元素
  2744. * @param {object} 上下相距的距离
  2745. * @param {object} 左右相距的距离
  2746. * @return {object} 命名空间
  2747. */
  2748. U.MD.D.click = function (el, obj) {
  2749. var _buttonnumber = event.button; //点击的按钮的事件值
  2750. var _userinfo = US.userInfo;
  2751. U.UF.EV.stopBubble(); //阻止向上冒泡
  2752. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2753. if (_buttonnumber < 2) {
  2754. //如果是click事件的处理
  2755. if (event.type == "click") {
  2756. //如果元素在mousemove事件中没有移动则出发click事件
  2757. if (!U.MD.D.I.IsDrag) {
  2758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2759. U.alert("请先登录您的账号!");
  2760. setTimeout(() => {
  2761. U.MD.U.L.login();
  2762. }, 2000);
  2763. } else {
  2764. //打开应用处理
  2765. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2766. }
  2767. }
  2768. }
  2769. //如果是mouse事件的处理
  2770. else {
  2771. if (US.Config.type == '1') {
  2772. //拖动处理,添加拖动和拖动结束事件
  2773. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2774. }
  2775. }
  2776. U.MD.D.I.IsDrag = false;
  2777. }
  2778. }
  2779. /**
  2780. * 拖动的处理
  2781. *
  2782. */
  2783. U.MD.D.iconMove = function () {
  2784. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2785. U.MD.D.I.IsDrag = true;
  2786. }
  2787. /**
  2788. * 拖动结束后,这里是定位处理,以网状的形式定位
  2789. *
  2790. * @param {element} 拖动的元素
  2791. * @return {object} 命名空间
  2792. */
  2793. U.MD.D.iconUp = function (el) {
  2794. var _top = 15,
  2795. _left = 20,
  2796. _margin,
  2797. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2798. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2799. if (_positioninfo["OT"] > 15) {
  2800. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2801. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2802. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2803. }
  2804. if (_positioninfo["OL"] > 20) {
  2805. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2806. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2807. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2808. }
  2809. //while循环判断么一个重叠的元素
  2810. do {
  2811. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2812. _top = _positioninfo[0] + 95; //得到定位后的top
  2813. _left = _positioninfo[1]; //得到定位后的left
  2814. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2815. }
  2816. /**
  2817. * 判断拖动后图标是否重叠
  2818. *
  2819. * @param {element} 拖动的元素
  2820. * @param {element} 桌面所有的元素
  2821. * @param {array} 拖动元素的位置
  2822. ----------[0] 上 top
  2823. ----------[1] 左 left
  2824. * @return {object} 命名空间
  2825. */
  2826. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2827. //循环所有的图标
  2828. for (var i = 0; i < childs.length; i++) {
  2829. //判断有没有和该图标诶子重叠的元素
  2830. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2831. return childs[i]; //如果有返回
  2832. }
  2833. }
  2834. }
  2835. //#endregion
  2836. //#endregion
  2837. //#region 桌面应用
  2838. /**
  2839. * 打开应用
  2840. *
  2841. * @param {string} 类型
  2842. -----------------Disk 网盘系统
  2843. -----------------PDisk 学习系统网盘
  2844. -----------------Poto 图片
  2845. -----------------Video 视频
  2846. -----------------Music 音乐
  2847. -----------------Word word
  2848. -----------------Excel excel
  2849. -----------------Txt 记事本
  2850. -----------------PB 学习系统
  2851. -----------------Blog 朋友圈系统
  2852. -----------------FTP ftp系统
  2853. -----------------Group 好友群
  2854. -----------------SY 首页系统
  2855. -----------------Set 个人设置
  2856. -----------------XSet 系统设置
  2857. -----------------App 我们所有的app
  2858. -----------------BC c.1473.cn 平台
  2859. -----------------CWeb d.1473.cn 变成平台
  2860. -----------------其他的外联系统 我们统一用iframe打开
  2861. * @param {array} 类型
  2862. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2863. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2864. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2865. 如果第一个参数为其他,则无第二个参数
  2866. * @returns {array}
  2867. */
  2868. window.addEventListener('message', function (e) { // 监听 message 事件
  2869. // alert(e.data.type);
  2870. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2875. //3是展示全部阶段 2学生 1老师 4专家
  2876. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2877. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2878. //3是展示全部阶段 2学生 1老师 4专家
  2879. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2882. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2885. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2887. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2888. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2889. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2890. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2891. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2892. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2893. //3是展示全部阶段 2学生 1老师 4专家
  2894. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2895. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2896. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2897. U.MD.D.I.selectUser();
  2898. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2899. var _formel = document.getElementById("study");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2902. var _formel = document.getElementById("studyDetail");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2905. var _formel = document.getElementById("studyDetail");
  2906. U.UF.F.windowZooming(_formel);
  2907. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2908. var _formel = document.getElementById("studentStudy");
  2909. U.UF.F.windowZooming(_formel);
  2910. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2911. // var _formel = document.getElementById("study");
  2912. //如果最大化了,那么就把他缩小
  2913. // if (_formel.ismaximize) {
  2914. // return;
  2915. // }
  2916. // U.UF.F.windowZooming(_formel);
  2917. // U.UF.F.topWindow(_formel);
  2918. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2919. // var _formel = document.getElementById("studyDetail");
  2920. //如果最大化了,那么就把他缩小
  2921. // if (_formel.ismaximize) {
  2922. // return;
  2923. // }
  2924. // U.UF.F.windowZooming(_formel);
  2925. // U.UF.F.topWindow(_formel);
  2926. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2927. // var _formel = document.getElementById("studentStudy");
  2928. // if (_formel.ismaximize) {
  2929. // return;
  2930. // }
  2931. // U.UF.F.windowZooming(_formel);
  2932. // U.UF.F.topWindow(_formel);
  2933. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2934. var _formel = document.getElementById("study");
  2935. // if (_formel.ismaximize) {
  2936. // return;
  2937. // }
  2938. // U.UF.F.windowZooming(_formel);
  2939. U.UF.F.topWindow(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2941. var _formel = document.getElementById("studentIndex");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2944. var _formel = document.getElementById("studyDetailS");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2947. var _formel = document.getElementById("studioIndex");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2950. var _formel = document.getElementById("studyDetailStudio");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2953. var _formel = document.getElementById("studyDetailStudio");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2956. var _formel = document.getElementById("studyDetailNT");
  2957. U.UF.F.windowZooming(_formel);
  2958. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2959. var _formel = document.getElementById("studyDetailS");
  2960. U.UF.F.windowZooming(_formel);
  2961. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2962. var _formel = document.getElementById("studyDetailS");
  2963. U.UF.F.topWindow(_formel);
  2964. } else if (e.data.tools && e.data.tools == "1") {
  2965. // U.MD.D.I.openApplication("whiteboard")
  2966. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2967. } else if (e.data.tools && e.data.tools == "2") {
  2968. U.MD.D.I.openApplication("note")
  2969. } else if (e.data.tools && e.data.tools == "3") {
  2970. // U.MD.D.I.openApplication("mind")
  2971. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2972. } else if (e.data.tools && e.data.tools == "4") {
  2973. U.MD.D.I.openApplication("investigation")
  2974. } else if (e.data.tools && e.data.tools == "6") {
  2975. // U.MD.D.I.openApplication("doc")
  2976. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2977. } else if (e.data.tools && e.data.tools == "7") {
  2978. // U.MD.D.I.openApplication("mindNetwork")
  2979. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2980. } else if (e.data.tools && e.data.tools == "8") {
  2981. U.MD.D.I.openApplication("library")
  2982. } else if (e.data.tools && e.data.tools == "17") {
  2983. U.MD.D.I.openApplication("stuLibrary")
  2984. } else if (e.data.tools && e.data.tools == "18") {
  2985. U.MD.D.I.openApplication("train")
  2986. } else if (e.data.tools && e.data.tools == "21") {
  2987. U.MD.D.I.openApplication("program")
  2988. } else if (e.data.tools && e.data.tools == "22") {
  2989. U.MD.D.I.openApplication("AIprogram2")
  2990. } else if (e.data.tools && e.data.tools == "23") {
  2991. U.MD.D.I.openApplication("Pythonprogram")
  2992. } else if (e.data.tools && e.data.tools == "24") {
  2993. U.MD.D.I.openApplication("AIprogram")
  2994. } else if (e.data.tools && e.data.tools == "25") {
  2995. U.MD.D.I.openApplication("sys")
  2996. } else if (e.data.tools && e.data.tools == "26") {
  2997. // U.MD.D.I.openApplication("courseDesign")
  2998. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2999. } else if (e.data.tools && e.data.tools == "31") {
  3000. U.MD.D.I.openApplication("netWorkPanel")
  3001. } else if (e.data.tools && e.data.tools == "32") {
  3002. U.MD.D.I.openApplication("codeEdit")
  3003. } else if (e.data.tools && e.data.tools == "57") {
  3004. U.MD.D.I.openApplication("CocoPi")
  3005. } else if (e.data.tools && e.data.tools == "63") {
  3006. U.MD.D.I.openApplication("Wood")
  3007. } else if (e.data.tools && e.data.tools == "58") {
  3008. U.MD.D.I.openApplication("car")
  3009. } else if (e.data.tools && e.data.tools == "59") {
  3010. U.MD.D.I.openApplication("lineSearch")
  3011. } else if (e.data.tools && e.data.tools == "60") {
  3012. U.MD.D.I.openApplication("deepLearning")
  3013. } else if (e.data.tools && e.data.tools == "61") {
  3014. U.MD.D.I.openApplication("allHistory")
  3015. } else if (e.data.tools && e.data.tools == "28") {
  3016. U.MD.D.I.openApplication("translation")
  3017. } else if (e.data.tools && e.data.tools == "37") {
  3018. U.MD.D.I.openApplication("mohe")
  3019. } else if (e.data.tools && e.data.tools == "38") {
  3020. U.MD.D.I.openApplication("24game")
  3021. } else if (e.data.tools && e.data.tools == "39") {
  3022. U.MD.D.I.openApplication("GeoGebra")
  3023. } else if (e.data.tools && e.data.tools == "43") {
  3024. U.MD.D.I.openApplication("studentEvaluate")
  3025. } else if (e.data.tools && e.data.tools == "44") {
  3026. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3027. } else if (e.data.tools && e.data.tools == "46") {
  3028. U.MD.D.I.openApplication("project")
  3029. } else if (e.data.tools && e.data.tools == "71") {
  3030. U.MD.D.I.openApplication("aigptCourse")
  3031. } else if (e.data.tools && e.data.tools == "1s") {
  3032. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "3s") {
  3034. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "6s") {
  3036. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "1studio") {
  3038. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "3studio") {
  3040. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "6studio") {
  3042. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3043. } else if (e.data.tools && e.data.tools == "3y") {
  3044. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3045. } else if (e.data.tools && e.data.tools == "1y") {
  3046. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3047. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3048. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3049. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3050. U.MD.D.I.openApplication("AIAnalyse")
  3051. } else if (e.data.tools && e.data.tools == "1teacher") {
  3052. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "3teacher") {
  3054. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "7teacher") {
  3056. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3057. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3058. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3059. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3060. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3061. } else if (e.data.tools && e.data.tools == "1E") {
  3062. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "3E") {
  3064. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3065. } else if (e.data.tools && e.data.tools == "57y") {
  3066. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3067. } else if (e.data.tools && e.data.tools == "57u") {
  3068. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3069. } else if (e.data.tools && e.data.tools == "57teacher") {
  3070. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3071. } else if (e.data.tools && e.data.tools == "64") {
  3072. U.MD.D.I.openApplication("AIChat")
  3073. } else if (e.data.tools && e.data.tools == "66") {
  3074. U.MD.D.I.openApplication("formulaEdi")
  3075. } else if (e.data.tools && e.data.tools == "67") {
  3076. U.MD.D.I.openApplication("molStr")
  3077. } else if (e.data.tools && e.data.tools == "68") {
  3078. U.MD.D.I.openApplication("timeAxis")
  3079. } else if (e.data.tools && e.data.tools == "openCourse") {
  3080. let _data = {
  3081. typea: e.data.typea || '',
  3082. typeb: e.data.typeb || '',
  3083. typed: e.data.typed || '',
  3084. }
  3085. U.MD.D.I.openInApplication("index", _data)
  3086. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3087. let _data = {
  3088. classid: e.data.classid || '',
  3089. }
  3090. U.MD.D.I.openInApplication("dataClass", _data)
  3091. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3092. let _data = {
  3093. cid: e.data.cid || '',
  3094. gid: e.data.gid || '',
  3095. }
  3096. U.MD.D.I.openInApplication("opencCscl", _data)
  3097. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3098. U.MD.D.I.openApplication("dataBoardTest")
  3099. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3100. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3102. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3103. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3104. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3105. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3106. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3107. }else if (e.data.tools && e.data.tools == "loginSz") {
  3108. U.MD.D.I.openInApplication("loginSz")
  3109. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3110. if($('#classroom_observation_board')[0]){
  3111. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3112. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3113. }
  3114. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3115. }
  3116. });
  3117. U.MD.D.I.selectUser = function () {
  3118. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3119. if (res.value[0].length > 0) {
  3120. US.userInfo = res.value[0][0];
  3121. $(".userName")[0].innerHTML = US.userInfo.username;
  3122. }
  3123. }, [], { "type": "GET", "withCredentials": true });
  3124. }
  3125. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3126. var _userinfo = US.userInfo, //登录用户信息
  3127. _userid = US.userInfo.userid, //登录用户id
  3128. _oid = _userinfo.organizeid,
  3129. _type = US.userInfo.type,
  3130. _org = US.userInfo.org,
  3131. _role = US.userInfo.role,
  3132. _classId = US.userInfo.classid;
  3133. if (_type == 4) {
  3134. tType = 4
  3135. }
  3136. switch (str) {
  3137. case "studyDetailNT": //无终端模式
  3138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3139. setTimeout(() => {
  3140. U.MD.U.L.login();
  3141. }, 2000);
  3142. } else {
  3143. _formdiv = new U.UF.UI.form(
  3144. "课程详情",
  3145. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3146. "id": "studyDetailNT",
  3147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3148. "onresize": function () { }
  3149. }, {
  3150. closecallback: function () { }
  3151. }, { "style": { "height": "36px" } }).form; //创建窗体
  3152. _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); } }
  3153. break;
  3154. }
  3155. case "studyDetail":
  3156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3157. setTimeout(() => {
  3158. U.MD.U.L.login();
  3159. }, 2000);
  3160. } else {
  3161. _formdiv = new U.UF.UI.form(
  3162. "课程详情",
  3163. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3164. "id": "studyDetail",
  3165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3166. "onresize": function () { }
  3167. }, {
  3168. closecallback: function () { }
  3169. }, { "style": { "height": "36px" } }).form; //创建窗体
  3170. _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); } }
  3171. break;
  3172. }
  3173. case "studyDetailTrain":
  3174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3175. setTimeout(() => {
  3176. U.MD.U.L.login();
  3177. }, 2000);
  3178. } else {
  3179. _formdiv = new U.UF.UI.form(
  3180. "培训详情",
  3181. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3182. "id": "studyDetailTrain",
  3183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3184. "onresize": function () { }
  3185. }, {
  3186. closecallback: function () { }
  3187. }, { "style": { "height": "36px" } }).form; //创建窗体
  3188. _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); } }
  3189. break;
  3190. }
  3191. case "studyDetailS":
  3192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3193. setTimeout(() => {
  3194. U.MD.U.L.login();
  3195. }, 2000);
  3196. } else {
  3197. _formdiv = new U.UF.UI.form(
  3198. "项目详情",
  3199. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3200. "id": "studyDetailS",
  3201. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3202. "onresize": function () { }
  3203. }, {
  3204. closecallback: function () { }
  3205. }, { "style": { "height": "36px" } }).form; //创建窗体
  3206. _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); } }
  3207. break;
  3208. }
  3209. case "studyDetailStudio":
  3210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3211. setTimeout(() => {
  3212. U.MD.U.L.login();
  3213. }, 2000);
  3214. } else {
  3215. _formdiv = new U.UF.UI.form(
  3216. "工作详情",
  3217. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3218. "id": "studyDetailStudio",
  3219. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3220. "onresize": function () { }
  3221. }, {
  3222. closecallback: function () { }
  3223. }, { "style": { "height": "36px" } }).form; //创建窗体
  3224. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3225. break;
  3226. }
  3227. case "studyDetailS5":
  3228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3229. setTimeout(() => {
  3230. U.MD.U.L.login();
  3231. }, 2000);
  3232. } else {
  3233. _formdiv = new U.UF.UI.form(
  3234. "项目详情",
  3235. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3236. "id": "studyDetailS",
  3237. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3238. "onresize": function () { }
  3239. }, {
  3240. closecallback: function () { }
  3241. }, { "style": { "height": "36px" } }).form; //创建窗体
  3242. _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); } }
  3243. break;
  3244. }
  3245. case "studyDetailGM":
  3246. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3247. setTimeout(() => {
  3248. U.MD.U.L.login();
  3249. }, 2000);
  3250. } else {
  3251. _formdiv = new U.UF.UI.form(
  3252. "课程详情",
  3253. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3254. "id": "studyDetail",
  3255. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3256. "onresize": function () { }
  3257. }, {
  3258. closecallback: function () { }
  3259. }, { "style": { "height": "36px" } }).form; //创建窗体
  3260. _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); } }
  3261. break;
  3262. }
  3263. case "hanUrl":
  3264. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3265. setTimeout(() => {
  3266. U.MD.U.L.login();
  3267. }, 2000);
  3268. } else {
  3269. _formdiv = new U.UF.UI.form(
  3270. "汉字宫",
  3271. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  3272. "id": "hanUrl",
  3273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3274. "onresize": function () { }
  3275. }, {
  3276. closecallback: function () { }
  3277. }, { "style": { "height": "36px" } }).form; //创建窗体
  3278. _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); } }
  3279. break;
  3280. }
  3281. case "index":
  3282. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3283. setTimeout(() => {
  3284. U.MD.U.L.login();
  3285. }, 2000);
  3286. } else {
  3287. _formdiv = new U.UF.UI.form(
  3288. "课程中心",
  3289. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  3290. "id": "study",
  3291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3292. "onresize": function () { }
  3293. }, {
  3294. closecallback: function () { }
  3295. }, { "style": { "height": "36px" } }).form; //创建窗体
  3296. _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); } }
  3297. break;
  3298. }
  3299. case "dataClass":
  3300. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3301. setTimeout(() => {
  3302. U.MD.U.L.login();
  3303. }, 2000);
  3304. } else {
  3305. _formdiv = new U.UF.UI.form(
  3306. "数据报告",
  3307. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  3308. "id": "dataClass",
  3309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3310. "onresize": function () { }
  3311. }, {
  3312. closecallback: function () { }
  3313. }, { "style": { "height": "36px" } }).form; //创建窗体
  3314. _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); } }
  3315. break;
  3316. }
  3317. case "opencCscl":
  3318. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3319. setTimeout(() => {
  3320. U.MD.U.L.login();
  3321. }, 2000);
  3322. } else {
  3323. _formdiv = new U.UF.UI.form(
  3324. "协同建构",
  3325. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3326. "id": "futureClass",
  3327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3328. "onresize": function () { }
  3329. }, {
  3330. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3331. }, { "style": { "height": "36px" } }).form; //创建窗体
  3332. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/futureClass.png)" }, "name": "协同建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3333. break;
  3334. }
  3335. case "openCourseUpdate":
  3336. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3337. setTimeout(() => {
  3338. U.MD.U.L.login();
  3339. }, 2000);
  3340. } else {
  3341. _formdiv = new U.UF.UI.form(
  3342. "课程管理",
  3343. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3344. "id": "openCourseUpdate",
  3345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3346. "onresize": function () { }
  3347. }, {
  3348. closecallback: function () { }
  3349. }, { "style": { "height": "36px" } }).form; //创建窗体
  3350. break;
  3351. }
  3352. case "openNewCourseUpdate":
  3353. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3354. setTimeout(() => {
  3355. U.MD.U.L.login();
  3356. }, 2000);
  3357. } else {
  3358. _formdiv = new U.UF.UI.form(
  3359. "课程管理",
  3360. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3361. "id": "openCourseUpdate",
  3362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3363. "onresize": function () { }
  3364. }, {
  3365. closecallback: function () { }
  3366. }, { "style": { "height": "36px" } }).form; //创建窗体
  3367. break;
  3368. }
  3369. case "openCourseEUpdate":
  3370. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3371. setTimeout(() => {
  3372. U.MD.U.L.login();
  3373. }, 2000);
  3374. } else {
  3375. _formdiv = new U.UF.UI.form(
  3376. "课程管理",
  3377. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3378. "id": "openCourseUpdate",
  3379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3380. "onresize": function () { }
  3381. }, {
  3382. closecallback: function () { }
  3383. }, { "style": { "height": "36px" } }).form; //创建窗体
  3384. break;
  3385. }
  3386. case "openCourseNewUpdate":
  3387. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3388. setTimeout(() => {
  3389. U.MD.U.L.login();
  3390. }, 2000);
  3391. } else {
  3392. _formdiv = new U.UF.UI.form(
  3393. "课程管理",
  3394. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3395. "id": "openCourseUpdate",
  3396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3397. "onresize": function () { }
  3398. }, {
  3399. closecallback: function () { }
  3400. }, { "style": { "height": "36px" } }).form; //创建窗体
  3401. break;
  3402. }
  3403. case "inviteLoginSz":
  3404. _formdiv = new U.UF.UI.form(
  3405. "随机码登录",
  3406. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  3407. "id": "loginSz",
  3408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3409. "onresize": function () { }
  3410. }, {
  3411. closecallback: function () { }
  3412. }, { "style": { "height": "36px" } }).form; //创建窗体
  3413. break;
  3414. case "loginSz":
  3415. _formdiv = new U.UF.UI.form(
  3416. "教师登录",
  3417. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  3418. "id": "loginSz",
  3419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3420. "onresize": function () { }
  3421. }, {
  3422. closecallback: function () { }
  3423. }, { "style": { "height": "36px" } }).form; //创建窗体
  3424. break;
  3425. case "teacher":
  3426. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3427. setTimeout(() => {
  3428. U.MD.U.L.login();
  3429. }, 2000);
  3430. } else {
  3431. _formdiv = new U.UF.UI.form(
  3432. "教师管理",
  3433. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3434. "id": "teacher",
  3435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3436. "onresize": function () { }
  3437. }, {
  3438. closecallback: function () { }
  3439. }, { "style": { "height": "36px" } }).form; //创建窗体
  3440. break;
  3441. }
  3442. case "dataBoardSZArea":
  3443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3444. setTimeout(() => {
  3445. U.MD.U.L.login();
  3446. }, 2000);
  3447. } else {
  3448. _formdiv = new U.UF.UI.form(
  3449. "综合数据看板",
  3450. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3451. "id": "dataBoardSZArea",
  3452. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3453. "onresize": function () { }
  3454. }, {
  3455. closecallback: function () { }
  3456. }, { "style": { "height": "36px" } }).form; //创建窗体
  3457. break;
  3458. }
  3459. case "dataBoardSZCity":
  3460. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3461. setTimeout(() => {
  3462. U.MD.U.L.login();
  3463. }, 2000);
  3464. } else {
  3465. _formdiv = new U.UF.UI.form(
  3466. "综合数据看板",
  3467. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3468. "id": "dataBoardSZCity",
  3469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3470. "onresize": function () { }
  3471. }, {
  3472. closecallback: function () { }
  3473. }, { "style": { "height": "36px" } }).form; //创建窗体
  3474. break;
  3475. }
  3476. case "classroom_observation_board":
  3477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3478. setTimeout(() => {
  3479. U.MD.U.L.login();
  3480. }, 2000);
  3481. } else {
  3482. _formdiv = new U.UF.UI.form(
  3483. "课堂观察",
  3484. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  3485. "id": "classroom_observation_board",
  3486. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3487. "onresize": function () { }
  3488. }, {
  3489. closecallback: function () { }
  3490. }, { "style": { "height": "36px" } }).form; //创建窗体
  3491. break;
  3492. }
  3493. }
  3494. }
  3495. U.MD.D.I.openApplication = function (str, obj, info) {
  3496. obj = obj || {};
  3497. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3498. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3499. _userinfo = US.userInfo, //登录用户信息
  3500. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3501. _oid = obj.organizeid || _userinfo.organizeid,
  3502. _type = US.userInfo.type,
  3503. _org = US.userInfo.org,
  3504. _role = US.userInfo.role,
  3505. _classId = US.userInfo.classid,
  3506. _TscreenType = 1
  3507. _screenType = 2,
  3508. _SscreenType = 3;
  3509. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3510. return;
  3511. }
  3512. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3513. switch (str) {
  3514. case "studnetProject": //好友打开
  3515. _formdiv = new U.UF.UI.form(
  3516. "我的项目",
  3517. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  3518. "id": "studnetProject",
  3519. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3520. "onresize": function () { }
  3521. }, {
  3522. closecallback: function () { }
  3523. }, { "style": { "height": "36px" } }).form; //创建窗体
  3524. _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); } }
  3525. break;
  3526. case "studentEvaluate": //好友打开
  3527. _formdiv = new U.UF.UI.form(
  3528. "我的评价",
  3529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3530. "id": "studentEvaluate",
  3531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3532. "onresize": function () { }
  3533. }, {
  3534. closecallback: function () { }
  3535. }, { "style": { "height": "36px" } }).form; //创建窗体
  3536. _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); } }
  3537. break;
  3538. case "my":
  3539. _formdiv = new U.UF.UI.form(
  3540. "我的资料",
  3541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  3542. "id": "my",
  3543. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3544. "onresize": function () { }
  3545. }, {
  3546. closecallback: function () { }
  3547. }, { "style": { "height": "36px" } }).form; //创建窗体
  3548. _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); } }
  3549. break;
  3550. case "program":
  3551. _formdiv = new U.UF.UI.form(
  3552. "编程平台",
  3553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3554. "id": "program",
  3555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3556. "onresize": function () { }
  3557. }, {
  3558. closecallback: function () { }
  3559. }, { "style": { "height": "36px" } }).form; //创建窗体
  3560. _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); } }
  3561. break;
  3562. case "library":
  3563. _formdiv = new U.UF.UI.form(
  3564. "素材库",
  3565. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  3566. "id": "library",
  3567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3568. "onresize": function () { }
  3569. }, {
  3570. closecallback: function () { }
  3571. }, { "style": { "height": "36px" } }).form; //创建窗体
  3572. _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); } }
  3573. break;
  3574. case "whiteboard":
  3575. _formdiv = new U.UF.UI.form(
  3576. "电子白板",
  3577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3578. "id": "whiteboard",
  3579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3580. "onresize": function () { }
  3581. }, {
  3582. closecallback: function () { }
  3583. }, { "style": { "height": "36px" } }).form; //创建窗体
  3584. _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); } }
  3585. break;
  3586. case "investigation":
  3587. _formdiv = new U.UF.UI.form(
  3588. "问卷调查",
  3589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  3590. "id": "investigation",
  3591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3592. "onresize": function () { }
  3593. }, {
  3594. closecallback: function () { }
  3595. }, { "style": { "height": "36px" } }).form; //创建窗体
  3596. _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); } }
  3597. break;
  3598. case "note":
  3599. _formdiv = new U.UF.UI.form(
  3600. "便签分类",
  3601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  3602. "id": "note",
  3603. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3604. "onresize": function () { }
  3605. }, {
  3606. closecallback: function () { }
  3607. }, { "style": { "height": "36px" } }).form; //创建窗体
  3608. _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); } }
  3609. break;
  3610. // case "score":
  3611. // _formdiv = new U.UF.UI.form(
  3612. // "量规评分",
  3613. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3614. // "id": "score",
  3615. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3616. // "onresize": function() {}
  3617. // }, {
  3618. // closecallback: function() {}
  3619. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3620. // _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); } }
  3621. // break;
  3622. case "mind":
  3623. _formdiv = new U.UF.UI.form(
  3624. "思维导图",
  3625. $$("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"
  3626. "id": "mind",
  3627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3628. "onresize": function () { }
  3629. }, {
  3630. closecallback: function () { }
  3631. }, { "style": { "height": "36px" } }).form; //创建窗体
  3632. _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); } }
  3633. break;
  3634. case "doc":
  3635. // U.MD.D.I.isRoom();
  3636. _formdiv = new U.UF.UI.form(
  3637. "协同文档",
  3638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3639. "id": "doc",
  3640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3641. "onresize": function () { }
  3642. }, {
  3643. closecallback: function () { }
  3644. }, { "style": { "height": "36px" } }).form; //创建窗体
  3645. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3646. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3647. // })
  3648. _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); } }
  3649. break;
  3650. case "studentStudy":
  3651. _formdiv = new U.UF.UI.form(
  3652. "课程中心",
  3653. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  3654. "id": "studentStudy",
  3655. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3656. "onresize": function () { }
  3657. }, {
  3658. closecallback: function () { }
  3659. }, { "style": { "height": "36px" } }).form; //创建窗体
  3660. _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); } }
  3661. break;
  3662. case "train": //好友打开
  3663. _formdiv = new U.UF.UI.form(
  3664. "训练平台",
  3665. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3666. "id": "train",
  3667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3668. "onresize": function () { }
  3669. }, {
  3670. closecallback: function () { }
  3671. }, { "style": { "height": "36px" } }).form; //创建窗体
  3672. _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); } }
  3673. break;
  3674. case "mindNetwork": //好友打开
  3675. _formdiv = new U.UF.UI.form(
  3676. "思维网格",
  3677. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  3678. "id": "mindNetwork",
  3679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3680. "onresize": function () { }
  3681. }, {
  3682. closecallback: function () { }
  3683. }, { "style": { "height": "36px" } }).form; //创建窗体
  3684. _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); } }
  3685. break;
  3686. case "studentClassRoom": //好友打开
  3687. _formdiv = new U.UF.UI.form(
  3688. "实时课堂",
  3689. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3690. "id": "studentClassRoom",
  3691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3692. "onresize": function () { }
  3693. }, {
  3694. closecallback: function () { }
  3695. }, { "style": { "height": "36px" } }).form; //创建窗体
  3696. _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); } }
  3697. setTimeout(() => {
  3698. U.UF.F.windowZooming(_formdiv)
  3699. }, 0);
  3700. break;
  3701. }
  3702. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3703. switch (str) {
  3704. case "studnetProject": //好友打开
  3705. _formdiv = new U.UF.UI.form(
  3706. "我的项目",
  3707. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  3708. "id": "studnetProject",
  3709. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3710. "onresize": function () { }
  3711. }, {
  3712. closecallback: function () { }
  3713. }, { "style": { "height": "36px" } }).form; //创建窗体
  3714. _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); } }
  3715. break;
  3716. case "studentEvaluate": //好友打开
  3717. _formdiv = new U.UF.UI.form(
  3718. "我的评价",
  3719. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3720. "id": "studentEvaluate",
  3721. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3722. "onresize": function () { }
  3723. }, {
  3724. closecallback: function () { }
  3725. }, { "style": { "height": "36px" } }).form; //创建窗体
  3726. _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); } }
  3727. break;
  3728. case "my":
  3729. _formdiv = new U.UF.UI.form(
  3730. "我的资料",
  3731. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  3732. "id": "my",
  3733. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3734. "onresize": function () { }
  3735. }, {
  3736. closecallback: function () { }
  3737. }, { "style": { "height": "36px" } }).form; //创建窗体
  3738. _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); } }
  3739. break;
  3740. case "program":
  3741. _formdiv = new U.UF.UI.form(
  3742. "编程平台",
  3743. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3744. "id": "program",
  3745. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3746. "onresize": function () { }
  3747. }, {
  3748. closecallback: function () { }
  3749. }, { "style": { "height": "36px" } }).form; //创建窗体
  3750. _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); } }
  3751. break;
  3752. case "library":
  3753. _formdiv = new U.UF.UI.form(
  3754. "素材库",
  3755. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  3756. "id": "library",
  3757. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3758. "onresize": function () { }
  3759. }, {
  3760. closecallback: function () { }
  3761. }, { "style": { "height": "36px" } }).form; //创建窗体
  3762. _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); } }
  3763. break;
  3764. case "whiteboard":
  3765. _formdiv = new U.UF.UI.form(
  3766. "电子白板",
  3767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3768. "id": "whiteboard",
  3769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3770. "onresize": function () { }
  3771. }, {
  3772. closecallback: function () { }
  3773. }, { "style": { "height": "36px" } }).form; //创建窗体
  3774. _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); } }
  3775. break;
  3776. case "investigation":
  3777. _formdiv = new U.UF.UI.form(
  3778. "问卷调查",
  3779. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  3780. "id": "investigation",
  3781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3782. "onresize": function () { }
  3783. }, {
  3784. closecallback: function () { }
  3785. }, { "style": { "height": "36px" } }).form; //创建窗体
  3786. _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); } }
  3787. break;
  3788. case "note":
  3789. _formdiv = new U.UF.UI.form(
  3790. "便签分类",
  3791. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  3792. "id": "note",
  3793. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3794. "onresize": function () { }
  3795. }, {
  3796. closecallback: function () { }
  3797. }, { "style": { "height": "36px" } }).form; //创建窗体
  3798. _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); } }
  3799. break;
  3800. // case "score":
  3801. // _formdiv = new U.UF.UI.form(
  3802. // "量规评分",
  3803. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3804. // "id": "score",
  3805. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3806. // "onresize": function() {}
  3807. // }, {
  3808. // closecallback: function() {}
  3809. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3810. // _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); } }
  3811. // break;
  3812. case "mind":
  3813. _formdiv = new U.UF.UI.form(
  3814. "思维导图",
  3815. $$("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"
  3816. "id": "mind",
  3817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3818. "onresize": function () { }
  3819. }, {
  3820. closecallback: function () { }
  3821. }, { "style": { "height": "36px" } }).form; //创建窗体
  3822. _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); } }
  3823. break;
  3824. case "doc":
  3825. // U.MD.D.I.isRoom();
  3826. _formdiv = new U.UF.UI.form(
  3827. "协同文档",
  3828. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3829. "id": "doc",
  3830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3831. "onresize": function () { }
  3832. }, {
  3833. closecallback: function () { }
  3834. }, { "style": { "height": "36px" } }).form; //创建窗体
  3835. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3836. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3837. })
  3838. _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); } }
  3839. break;
  3840. case "train": //好友打开
  3841. _formdiv = new U.UF.UI.form(
  3842. "训练平台",
  3843. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3844. "id": "train",
  3845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3846. "onresize": function () { }
  3847. }, {
  3848. closecallback: function () { }
  3849. }, { "style": { "height": "36px" } }).form; //创建窗体
  3850. _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); } }
  3851. break;
  3852. case "studentStudy":
  3853. _formdiv = new U.UF.UI.form(
  3854. "课程中心",
  3855. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  3856. "id": "studentStudy",
  3857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3858. "onresize": function () { }
  3859. }, {
  3860. closecallback: function () { }
  3861. }, { "style": { "height": "36px" } }).form; //创建窗体
  3862. _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); } }
  3863. break;
  3864. case "mindNetwork": //好友打开
  3865. _formdiv = new U.UF.UI.form(
  3866. "思维网格",
  3867. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  3868. "id": "mindNetwork",
  3869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3870. "onresize": function () { }
  3871. }, {
  3872. closecallback: function () { }
  3873. }, { "style": { "height": "36px" } }).form; //创建窗体
  3874. _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); } }
  3875. break;
  3876. case "studentClassRoom": //好友打开
  3877. _formdiv = new U.UF.UI.form(
  3878. "实时课堂",
  3879. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3880. "id": "studentClassRoom",
  3881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3882. "onresize": function () { }
  3883. }, {
  3884. closecallback: function () { }
  3885. }, { "style": { "height": "36px" } }).form; //创建窗体
  3886. _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); } }
  3887. setTimeout(() => {
  3888. U.UF.F.windowZooming(_formdiv)
  3889. }, 0);
  3890. break;
  3891. }
  3892. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3893. //选择应用处理
  3894. switch (str) {
  3895. case "project": //好友打开
  3896. _formdiv = new U.UF.UI.form(
  3897. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3898. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3899. "id": "project",
  3900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3901. "onresize": function () { }
  3902. }, {
  3903. closecallback: function () { }
  3904. }, { "style": { "height": "36px" } }).form; //创建窗体
  3905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3906. break;
  3907. case "student":
  3908. _formdiv = new U.UF.UI.form(
  3909. "学生管理",
  3910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  3911. "id": "student",
  3912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3913. "onresize": function () { }
  3914. }, {
  3915. closecallback: function () { }
  3916. }, { "style": { "height": "36px" } }).form; //创建窗体
  3917. _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); } }
  3918. break;
  3919. case "evaluate":
  3920. _formdiv = new U.UF.UI.form(
  3921. "学生评价",
  3922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3923. "id": "evaluate",
  3924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3925. "onresize": function () { }
  3926. }, {
  3927. closecallback: function () { }
  3928. }, { "style": { "height": "36px" } }).form; //创建窗体
  3929. _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); } }
  3930. break;
  3931. case "sys":
  3932. _formdiv = new U.UF.UI.form(
  3933. "目标管理",
  3934. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3935. "id": "sys",
  3936. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. _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); } }
  3942. break;
  3943. case "courseDesign":
  3944. _formdiv = new U.UF.UI.form(
  3945. "项目设计",
  3946. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3947. "id": "courseDesign",
  3948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3949. "onresize": function () { }
  3950. }, {
  3951. closecallback: function () { }
  3952. }, { "style": { "height": "36px" } }).form; //创建窗体
  3953. _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); } }
  3954. break;
  3955. case "program":
  3956. _formdiv = new U.UF.UI.form(
  3957. "编程平台",
  3958. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3959. "id": "program",
  3960. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3961. "onresize": function () { }
  3962. }, {
  3963. closecallback: function () { }
  3964. }, { "style": { "height": "36px" } }).form; //创建窗体
  3965. _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); } }
  3966. break;
  3967. case "class":
  3968. _formdiv = new U.UF.UI.form(
  3969. "班级管理",
  3970. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3971. "id": "class",
  3972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3973. "onresize": function () { }
  3974. }, {
  3975. closecallback: function () { }
  3976. }, { "style": { "height": "36px" } }).form; //创建窗体
  3977. _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); } }
  3978. break;
  3979. case "Grade":
  3980. _formdiv = new U.UF.UI.form(
  3981. "年级管理",
  3982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3983. "id": "Grade",
  3984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3985. "onresize": function () { }
  3986. }, {
  3987. closecallback: function () { }
  3988. }, { "style": { "height": "36px" } }).form; //创建窗体
  3989. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3990. break;
  3991. case "teacherOffice":
  3992. _formdiv = new U.UF.UI.form(
  3993. "教研室",
  3994. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3995. "id": "teacherOffice",
  3996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3997. "onresize": function () { }
  3998. }, {
  3999. closecallback: function () { }
  4000. }, { "style": { "height": "36px" } }).form; //创建窗体
  4001. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4002. break;
  4003. case "my":
  4004. _formdiv = new U.UF.UI.form(
  4005. "我的资料",
  4006. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4007. "id": "my",
  4008. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4009. "onresize": function () { }
  4010. }, {
  4011. closecallback: function () { }
  4012. }, { "style": { "height": "36px" } }).form; //创建窗体
  4013. _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); } }
  4014. break;
  4015. case "notice":
  4016. _formdiv = new U.UF.UI.form(
  4017. "通知公告",
  4018. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4019. "id": "notice",
  4020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4021. "onresize": function () { }
  4022. }, {
  4023. closecallback: function () { }
  4024. }, { "style": { "height": "36px" } }).form; //创建窗体
  4025. _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); } }
  4026. break;
  4027. case "library":
  4028. _formdiv = new U.UF.UI.form(
  4029. "素材库",
  4030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4031. "id": "library",
  4032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4033. "onresize": function () { }
  4034. }, {
  4035. closecallback: function () { }
  4036. }, { "style": { "height": "36px" } }).form; //创建窗体
  4037. _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); } }
  4038. break;
  4039. case "whiteboard":
  4040. _formdiv = new U.UF.UI.form(
  4041. "电子白板",
  4042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4043. "id": "whiteboard",
  4044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. _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); } }
  4050. break;
  4051. case "investigation":
  4052. _formdiv = new U.UF.UI.form(
  4053. "问卷调查",
  4054. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4055. "id": "investigation",
  4056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4057. "onresize": function () { }
  4058. }, {
  4059. closecallback: function () { }
  4060. }, { "style": { "height": "36px" } }).form; //创建窗体
  4061. _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); } }
  4062. break;
  4063. case "note":
  4064. _formdiv = new U.UF.UI.form(
  4065. "便签分类",
  4066. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4067. "id": "note",
  4068. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4069. "onresize": function () { }
  4070. }, {
  4071. closecallback: function () { }
  4072. }, { "style": { "height": "36px" } }).form; //创建窗体
  4073. _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); } }
  4074. break;
  4075. // case "score":
  4076. // _formdiv = new U.UF.UI.form(
  4077. // "量规评分",
  4078. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4079. // "id": "score",
  4080. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4081. // "onresize": function() {}
  4082. // }, {
  4083. // closecallback: function() {}
  4084. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4085. // _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); } }
  4086. // break;
  4087. case "mind":
  4088. _formdiv = new U.UF.UI.form(
  4089. "思维导图",
  4090. $$("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"
  4091. "id": "mind",
  4092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4093. "onresize": function () { }
  4094. }, {
  4095. closecallback: function () { }
  4096. }, { "style": { "height": "36px" } }).form; //创建窗体
  4097. _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); } }
  4098. break;
  4099. case "doc":
  4100. // U.MD.D.I.isRoom();
  4101. _formdiv = new U.UF.UI.form(
  4102. "协同文档",
  4103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4104. "id": "doc",
  4105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4106. "onresize": function () { }
  4107. }, {
  4108. closecallback: function () { }
  4109. }, { "style": { "height": "36px" } }).form; //创建窗体
  4110. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4111. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4112. })
  4113. _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); } }
  4114. break;
  4115. case "study":
  4116. _formdiv = new U.UF.UI.form(
  4117. "课程中心",
  4118. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4119. "id": "study",
  4120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4121. "onresize": function () { }
  4122. }, {
  4123. closecallback: function () { }
  4124. }, { "style": { "height": "36px" } }).form; //创建窗体
  4125. _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); } }
  4126. break;
  4127. case "mindNetwork": //好友打开
  4128. _formdiv = new U.UF.UI.form(
  4129. "思维网格",
  4130. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  4131. "id": "mindNetwork",
  4132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4133. "onresize": function () { }
  4134. }, {
  4135. closecallback: function () { }
  4136. }, { "style": { "height": "36px" } }).form; //创建窗体
  4137. _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); } }
  4138. break;
  4139. case "train": //好友打开
  4140. _formdiv = new U.UF.UI.form(
  4141. "训练平台",
  4142. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4143. "id": "mindNetwork",
  4144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4145. "onresize": function () { }
  4146. }, {
  4147. closecallback: function () { }
  4148. }, { "style": { "height": "36px" } }).form; //创建窗体
  4149. _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); } }
  4150. break;
  4151. case "teacherClassRoom": //好友打开
  4152. _formdiv = new U.UF.UI.form(
  4153. "实时课堂",
  4154. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4155. "id": "teacherClassRoom",
  4156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4157. "onresize": function () { }
  4158. }, {
  4159. closecallback: function () { }
  4160. }, { "style": { "height": "36px" } }).form; //创建窗体
  4161. _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); } }
  4162. setTimeout(() => {
  4163. U.UF.F.windowZooming(_formdiv)
  4164. }, 0);
  4165. break;
  4166. }
  4167. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4168. switch (str) {
  4169. case "project": //好友打开
  4170. _formdiv = new U.UF.UI.form(
  4171. "课程管理",
  4172. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4173. "id": "project",
  4174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4175. "onresize": function () { }
  4176. }, {
  4177. closecallback: function () { }
  4178. }, { "style": { "height": "36px" } }).form; //创建窗体
  4179. _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); } }
  4180. break;
  4181. case "evaluate":
  4182. _formdiv = new U.UF.UI.form(
  4183. "学生评价",
  4184. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4185. "id": "evaluate",
  4186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4187. "onresize": function () { }
  4188. }, {
  4189. closecallback: function () { }
  4190. }, { "style": { "height": "36px" } }).form; //创建窗体
  4191. _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); } }
  4192. break;
  4193. case "notice":
  4194. _formdiv = new U.UF.UI.form(
  4195. "通知公告",
  4196. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4197. "id": "notice",
  4198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4199. "onresize": function () { }
  4200. }, {
  4201. closecallback: function () { }
  4202. }, { "style": { "height": "36px" } }).form; //创建窗体
  4203. _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); } }
  4204. break;
  4205. case "stuLibrary":
  4206. _formdiv = new U.UF.UI.form(
  4207. "学习资料",
  4208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  4209. "id": "stuLibrary",
  4210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4211. "onresize": function () { }
  4212. }, {
  4213. closecallback: function () { }
  4214. }, { "style": { "height": "36px" } }).form; //创建窗体
  4215. _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); } }
  4216. break;
  4217. case "program":
  4218. _formdiv = new U.UF.UI.form(
  4219. "编程平台",
  4220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4221. "id": "program",
  4222. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4223. "onresize": function () { }
  4224. }, {
  4225. closecallback: function () { }
  4226. }, { "style": { "height": "36px" } }).form; //创建窗体
  4227. _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); } }
  4228. break;
  4229. case "whiteboard":
  4230. _formdiv = new U.UF.UI.form(
  4231. "电子白板",
  4232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4233. "id": "whiteboard",
  4234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4235. "onresize": function () { }
  4236. }, {
  4237. closecallback: function () { }
  4238. }, { "style": { "height": "36px" } }).form; //创建窗体
  4239. _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); } }
  4240. break;
  4241. case "investigation":
  4242. _formdiv = new U.UF.UI.form(
  4243. "问卷调查",
  4244. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4245. "id": "investigation",
  4246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4247. "onresize": function () { }
  4248. }, {
  4249. closecallback: function () { }
  4250. }, { "style": { "height": "36px" } }).form; //创建窗体
  4251. _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); } }
  4252. break;
  4253. case "mind":
  4254. _formdiv = new U.UF.UI.form(
  4255. "思维导图",
  4256. $$("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"
  4257. "id": "mind",
  4258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4259. "onresize": function () { }
  4260. }, {
  4261. closecallback: function () { }
  4262. }, { "style": { "height": "36px" } }).form; //创建窗体
  4263. _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); } }
  4264. break;
  4265. case "doc":
  4266. // U.MD.D.I.isRoom();
  4267. _formdiv = new U.UF.UI.form(
  4268. "协同文档",
  4269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4270. "id": "doc",
  4271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4277. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4278. })
  4279. _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); } }
  4280. break;
  4281. case "study":
  4282. _formdiv = new U.UF.UI.form(
  4283. "课程中心",
  4284. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4285. "id": "study",
  4286. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4287. "onresize": function () { }
  4288. }, {
  4289. closecallback: function () { }
  4290. }, { "style": { "height": "36px" } }).form; //创建窗体
  4291. _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); } }
  4292. break;
  4293. case "mindNetwork": //好友打开
  4294. _formdiv = new U.UF.UI.form(
  4295. "思维网格",
  4296. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  4297. "id": "mindNetwork",
  4298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4299. "onresize": function () { }
  4300. }, {
  4301. closecallback: function () { }
  4302. }, { "style": { "height": "36px" } }).form; //创建窗体
  4303. _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); } }
  4304. break;
  4305. case "train": //好友打开
  4306. _formdiv = new U.UF.UI.form(
  4307. "训练平台",
  4308. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4309. "id": "train",
  4310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. _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); } }
  4316. break;
  4317. case "sys":
  4318. _formdiv = new U.UF.UI.form(
  4319. "目标管理",
  4320. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4321. "id": "sys",
  4322. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4323. "onresize": function () { }
  4324. }, {
  4325. closecallback: function () { }
  4326. }, { "style": { "height": "36px" } }).form; //创建窗体
  4327. _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); } }
  4328. break;
  4329. case "courseDesign":
  4330. _formdiv = new U.UF.UI.form(
  4331. "项目设计",
  4332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4333. "id": "courseDesign",
  4334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4335. "onresize": function () { }
  4336. }, {
  4337. closecallback: function () { }
  4338. }, { "style": { "height": "36px" } }).form; //创建窗体
  4339. _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); } }
  4340. break;
  4341. }
  4342. } else if (!_type) {
  4343. switch (str) {
  4344. case "my":
  4345. _formdiv = new U.UF.UI.form(
  4346. "我的资料",
  4347. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4348. "id": "my",
  4349. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4350. "onresize": function () { }
  4351. }, {
  4352. closecallback: function () { }
  4353. }, { "style": { "height": "36px" } }).form; //创建窗体
  4354. _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); } }
  4355. break;
  4356. }
  4357. }
  4358. switch (str) {
  4359. // AIprogram2 AI体验 aihub.cocorobo.cn
  4360. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4361. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4362. case "formulaEdi": //公式编辑
  4363. _formdiv = new U.UF.UI.form(
  4364. "公式编辑",
  4365. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4366. "id": "formulaEdi",
  4367. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4368. "onresize": function () { }
  4369. }, {
  4370. closecallback: function () { }
  4371. }, { "style": { "height": "36px" } }).form; //创建窗体
  4372. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4373. break;
  4374. case "molStr": //分子结构
  4375. _formdiv = new U.UF.UI.form(
  4376. "分子结构",
  4377. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4378. "id": "molStr",
  4379. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4385. break;
  4386. case "timeAxis": //时间轴
  4387. _formdiv = new U.UF.UI.form(
  4388. "时间轴",
  4389. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4390. "id": "timeAxis",
  4391. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4397. break;
  4398. case "AIprogram2": //AI体验
  4399. _formdiv = new U.UF.UI.form(
  4400. "AI体验",
  4401. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4402. "id": "AIprogram2",
  4403. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _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); } }
  4409. break;
  4410. case "Pythonprogram": //python编程
  4411. _formdiv = new U.UF.UI.form(
  4412. "Python编程",
  4413. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4414. "id": "Pythonprogram",
  4415. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _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); } }
  4421. break;
  4422. case "AIprogram": //ai编程
  4423. _formdiv = new U.UF.UI.form(
  4424. "AI编程平台",
  4425. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4426. "id": "AIprogram",
  4427. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4428. "onresize": function () { }
  4429. }, {
  4430. closecallback: function () { }
  4431. }, { "style": { "height": "36px" } }).form; //创建窗体
  4432. _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); } }
  4433. break;
  4434. case "CocoPi": //CocoPi
  4435. _formdiv = new U.UF.UI.form(
  4436. "CocoPi",
  4437. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  4438. "id": "CocoPi",
  4439. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4440. "onresize": function () { }
  4441. }, {
  4442. closecallback: function () { }
  4443. }, { "style": { "height": "36px" } }).form; //创建窗体
  4444. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4445. break;
  4446. case "Wood": //Wood
  4447. _formdiv = new U.UF.UI.form(
  4448. "海龟编程",
  4449. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  4450. "id": "Wood",
  4451. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4457. break;
  4458. case "car": //模拟驾驶
  4459. _formdiv = new U.UF.UI.form(
  4460. "模拟驾驶",
  4461. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  4462. "id": "car",
  4463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4464. "onresize": function () { }
  4465. }, {
  4466. closecallback: function () { }
  4467. }, { "style": { "height": "36px" } }).form; //创建窗体
  4468. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4469. break;
  4470. case "lineSearch": //路径搜索
  4471. _formdiv = new U.UF.UI.form(
  4472. "路径搜索",
  4473. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  4474. "id": "lineSearch",
  4475. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4481. break;
  4482. case "deepLearning": //深度学习
  4483. _formdiv = new U.UF.UI.form(
  4484. "深度学习",
  4485. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  4486. "id": "deepLearning",
  4487. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4493. break;
  4494. case "allHistory": //深度学习
  4495. _formdiv = new U.UF.UI.form(
  4496. "全历史",
  4497. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  4498. "id": "allHistory",
  4499. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4500. "onresize": function () { }
  4501. }, {
  4502. closecallback: function () { }
  4503. }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4505. break;
  4506. case "chatPDF": //ai编程
  4507. _formdiv = new U.UF.UI.form(
  4508. "chatPDF",
  4509. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4510. "id": "chatPDF",
  4511. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4517. break;
  4518. case "resources": //国家教育
  4519. _formdiv = new U.UF.UI.form(
  4520. "国家教育",
  4521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4522. "id": "resources",
  4523. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4524. "onresize": function () { }
  4525. }, {
  4526. closecallback: function () { }
  4527. }, { "style": { "height": "36px" } }).form; //创建窗体
  4528. _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); } }
  4529. break;
  4530. case "codeEdit": //源码编辑
  4531. _formdiv = new U.UF.UI.form(
  4532. "源码编辑",
  4533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4534. "id": "codeEdit",
  4535. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4536. "onresize": function () { }
  4537. }, {
  4538. closecallback: function () { }
  4539. }, { "style": { "height": "36px" } }).form; //创建窗体
  4540. _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); } }
  4541. break; //
  4542. case "MindMap": //MindMap
  4543. _formdiv = new U.UF.UI.form(
  4544. "MindMap",
  4545. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4546. "id": "MindMap",
  4547. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4548. "onresize": function () { }
  4549. }, {
  4550. closecallback: function () { }
  4551. }, { "style": { "height": "36px" } }).form; //创建窗体
  4552. _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); } }
  4553. break;
  4554. case "netWorkPanel": //netWorkPanel
  4555. _formdiv = new U.UF.UI.form(
  4556. "netWorkPanel",
  4557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4558. "id": "netWorkPanel",
  4559. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. _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); } }
  4565. break;
  4566. case "GeoGebra": //GeoGebra
  4567. _formdiv = new U.UF.UI.form(
  4568. "GeoGebra",
  4569. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  4570. "id": "GeoGebra",
  4571. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4572. "onresize": function () { }
  4573. }, {
  4574. closecallback: function () { }
  4575. }, { "style": { "height": "36px" } }).form; //创建窗体
  4576. _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); } }
  4577. break;
  4578. case "translation": //翻译
  4579. _formdiv = new U.UF.UI.form(
  4580. "翻译",
  4581. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4582. "id": "translation",
  4583. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4584. "onresize": function () { }
  4585. }, {
  4586. closecallback: function () { }
  4587. }, { "style": { "height": "36px" } }).form; //创建窗体
  4588. _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); } }
  4589. break;
  4590. case "mohe": //魔盒
  4591. _formdiv = new U.UF.UI.form(
  4592. "魔盒识字",
  4593. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4594. "id": "mohe",
  4595. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4596. "onresize": function () { }
  4597. }, {
  4598. closecallback: function () { }
  4599. }, { "style": { "height": "36px" } }).form; //创建窗体
  4600. _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); } }
  4601. break;
  4602. case "24game": //24点
  4603. _formdiv = new U.UF.UI.form(
  4604. "24点",
  4605. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4606. "id": "24game",
  4607. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4608. "onresize": function () { }
  4609. }, {
  4610. closecallback: function () { }
  4611. }, { "style": { "height": "36px" } }).form; //创建窗体
  4612. _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); } }
  4613. break;
  4614. case "case":
  4615. _formdiv = new U.UF.UI.form(
  4616. "课程进展",
  4617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4618. "id": "case",
  4619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4620. "onresize": function () { }
  4621. }, {
  4622. closecallback: function () { }
  4623. }, { "style": { "height": "36px" } }).form; //创建窗体
  4624. _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); } }
  4625. break;
  4626. case "snf":
  4627. _formdiv = new U.UF.UI.form(
  4628. "赛诺梵",
  4629. $$("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" }), {
  4630. "id": "snf",
  4631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4632. "onresize": function () { }
  4633. }, {
  4634. closecallback: function () { }
  4635. }, { "style": { "height": "36px" } }).form; //创建窗体
  4636. _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); } }
  4637. break;
  4638. case "hanFamily":
  4639. _formdiv = new U.UF.UI.form(
  4640. "汉字家族",
  4641. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4642. "id": "hanFamily",
  4643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4644. "onresize": function () { }
  4645. }, {
  4646. closecallback: function () { }
  4647. }, { "style": { "height": "36px" } }).form; //创建窗体
  4648. _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); } }
  4649. break;
  4650. case "hanClassics":
  4651. _formdiv = new U.UF.UI.form(
  4652. "国学经典",
  4653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4654. "id": "hanClassics",
  4655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4656. "onresize": function () { }
  4657. }, {
  4658. closecallback: function () { }
  4659. }, { "style": { "height": "36px" } }).form; //创建窗体
  4660. _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); } }
  4661. break;
  4662. case "hanTraining":
  4663. _formdiv = new U.UF.UI.form(
  4664. "笔画训练",
  4665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4666. "id": "hanTraining",
  4667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4668. "onresize": function () { }
  4669. }, {
  4670. closecallback: function () { }
  4671. }, { "style": { "height": "36px" } }).form; //创建窗体
  4672. _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); } }
  4673. break;
  4674. case "hanClass":
  4675. _formdiv = new U.UF.UI.form(
  4676. "书法课堂",
  4677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4678. "id": "hanClass",
  4679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4680. "onresize": function () { }
  4681. }, {
  4682. closecallback: function () { }
  4683. }, { "style": { "height": "36px" } }).form; //创建窗体
  4684. _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); } }
  4685. break;
  4686. case "han":
  4687. _formdiv = new U.UF.UI.form(
  4688. "汉字宫",
  4689. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4690. "id": "han",
  4691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4692. "onresize": function () { }
  4693. }, {
  4694. closecallback: function () { }
  4695. }, { "style": { "height": "36px" } }).form; //创建窗体
  4696. _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); } }
  4697. break;
  4698. case "projectGM": //课程管理
  4699. _formdiv = new U.UF.UI.form(
  4700. "课程管理",
  4701. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4702. "id": "projectGM",
  4703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4704. "onresize": function () { }
  4705. }, {
  4706. closecallback: function () { }
  4707. }, { "style": { "height": "36px" } }).form; //创建窗体
  4708. _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); } }
  4709. break;
  4710. case "studyGM": //课程中心
  4711. _formdiv = new U.UF.UI.form(
  4712. "课程中心",
  4713. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/indexGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4714. "id": "study",
  4715. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4716. "onresize": function () { }
  4717. }, {
  4718. closecallback: function () { }
  4719. }, { "style": { "height": "36px" } }).form; //创建窗体
  4720. _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); } }
  4721. break;
  4722. // studentGM
  4723. case "studentGM": //学生管理
  4724. _formdiv = new U.UF.UI.form(
  4725. "学生管理",
  4726. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  4727. "id": "studentGM",
  4728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4729. "onresize": function () { }
  4730. }, {
  4731. closecallback: function () { }
  4732. }, { "style": { "height": "36px" } }).form; //创建窗体
  4733. _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); } }
  4734. break;
  4735. case "evaluateGM": //学生评价
  4736. _formdiv = new U.UF.UI.form(
  4737. "学生评价",
  4738. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4739. "id": "evaluateGM",
  4740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4741. "onresize": function () { }
  4742. }, {
  4743. closecallback: function () { }
  4744. }, { "style": { "height": "36px" } }).form; //创建窗体
  4745. _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); } }
  4746. break;
  4747. // classGM
  4748. case "classGM": //班级管理
  4749. _formdiv = new U.UF.UI.form(
  4750. "班级管理",
  4751. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4752. "id": "classGM",
  4753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4754. "onresize": function () { }
  4755. }, {
  4756. closecallback: function () { }
  4757. }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. _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); } }
  4759. break;
  4760. // dataGM
  4761. case "dataGM":
  4762. _formdiv = new U.UF.UI.form(
  4763. "我的资料",
  4764. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  4765. "id": "dataGM",
  4766. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4767. "onresize": function () { }
  4768. }, {
  4769. closecallback: function () { }
  4770. }, { "style": { "height": "36px" } }).form; //创建窗体
  4771. _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); } }
  4772. break;
  4773. // caseGM
  4774. case "caseGM": //课程进展
  4775. _formdiv = new U.UF.UI.form(
  4776. "课程进展",
  4777. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4778. "id": "caseGM",
  4779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4780. "onresize": function () { }
  4781. }, {
  4782. closecallback: function () { }
  4783. }, { "style": { "height": "36px" } }).form; //创建窗体
  4784. _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); } }
  4785. break;
  4786. // meterialGM
  4787. case "meterialGM": //素材库
  4788. _formdiv = new U.UF.UI.form(
  4789. "素材库",
  4790. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  4791. "id": "meterialGM",
  4792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4793. "onresize": function () { }
  4794. }, {
  4795. closecallback: function () { }
  4796. }, { "style": { "height": "36px" } }).form; //创建窗体
  4797. _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); } }
  4798. break;
  4799. // evaluateSGM
  4800. case "evaluateSGM": //我的评价
  4801. _formdiv = new U.UF.UI.form(
  4802. "我的评价",
  4803. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4804. "id": "evaluateSGM",
  4805. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4806. "onresize": function () { }
  4807. }, {
  4808. closecallback: function () { }
  4809. }, { "style": { "height": "36px" } }).form; //创建窗体
  4810. _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); } }
  4811. break;
  4812. case "jupyter": //jupyter
  4813. _formdiv = new U.UF.UI.form(
  4814. "jupyter",
  4815. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4816. "id": "jupyter",
  4817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4818. "onresize": function () { }
  4819. }, {
  4820. closecallback: function () { }
  4821. }, { "style": { "height": "36px" } }).form; //创建窗体
  4822. _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); } }
  4823. break;
  4824. case "number": //数字实验室
  4825. _formdiv = new U.UF.UI.form(
  4826. "数字实验室",
  4827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4828. "id": "number",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. _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); } }
  4835. break;
  4836. case "studentCourse": //项目管理 学生
  4837. _formdiv = new U.UF.UI.form(
  4838. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4839. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4840. "id": "studentCourse",
  4841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4842. "onresize": function () { }
  4843. }, {
  4844. closecallback: function () { }
  4845. }, { "style": { "height": "36px" } }).form; //创建窗体
  4846. _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); } }
  4847. break;
  4848. case "studentCourseS": //项目管理 老师
  4849. _formdiv = new U.UF.UI.form(
  4850. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4851. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4852. "id": "studentCourseS",
  4853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4854. "onresize": function () { }
  4855. }, {
  4856. closecallback: function () { }
  4857. }, { "style": { "height": "36px" } }).form; //创建窗体
  4858. _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); } }
  4859. break;
  4860. case "studentIndex": //项目中心
  4861. _formdiv = new U.UF.UI.form(
  4862. "项目中心",
  4863. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  4864. "id": "studentIndex",
  4865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { }
  4869. }, { "style": { "height": "36px" } }).form; //创建窗体
  4870. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4871. break;
  4872. case "CaseDesignS":
  4873. _formdiv = new U.UF.UI.form(
  4874. "项目进展",
  4875. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4876. "id": "case",
  4877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4878. "onresize": function () { }
  4879. }, {
  4880. closecallback: function () { }
  4881. }, { "style": { "height": "36px" } }).form; //创建窗体
  4882. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4883. break;
  4884. case "tcStudent": //腾讯学生管理
  4885. _formdiv = new U.UF.UI.form(
  4886. "学生管理",
  4887. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4888. "id": "tcStudent",
  4889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4890. "onresize": function () { }
  4891. }, {
  4892. closecallback: function () { }
  4893. }, { "style": { "height": "36px" } }).form; //创建窗体
  4894. _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); } }
  4895. break;
  4896. case "tcSchool": //腾讯学校管理
  4897. _formdiv = new U.UF.UI.form(
  4898. "学校管理",
  4899. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4900. "id": "tcSchool",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4907. break;
  4908. case "tcTeacher": //腾讯学校管理
  4909. _formdiv = new U.UF.UI.form(
  4910. "教师管理",
  4911. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4912. "id": "tcTeacher",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4919. break;
  4920. case "tcData": //腾讯我的资料
  4921. _formdiv = new U.UF.UI.form(
  4922. "我的资料",
  4923. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4924. "id": "tcData",
  4925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4926. "onresize": function () { }
  4927. }, {
  4928. closecallback: function () { }
  4929. }, { "style": { "height": "36px" } }).form; //创建窗体
  4930. _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); } }
  4931. break;
  4932. case "tcNotice": //腾讯消息通知
  4933. _formdiv = new U.UF.UI.form(
  4934. "消息通知",
  4935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4936. "id": "tcNotice",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. _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); } }
  4943. break;
  4944. case "myReport": //好友打开
  4945. _formdiv = new U.UF.UI.form(
  4946. "我的评价",
  4947. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  4948. "id": "myReport",
  4949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4950. "onresize": function () { }
  4951. }, {
  4952. closecallback: function () { }
  4953. }, { "style": { "height": "36px" } }).form; //创建窗体
  4954. _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); } }
  4955. break;
  4956. case "learnAna": //好友打开
  4957. _formdiv = new U.UF.UI.form(
  4958. "学习分析",
  4959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4960. "id": "learnAna",
  4961. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4962. "onresize": function () { }
  4963. }, {
  4964. closecallback: function () { }
  4965. }, { "style": { "height": "36px" } }).form; //创建窗体
  4966. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4967. break;
  4968. case "AIChat": //AI共创
  4969. _formdiv = new U.UF.UI.form(
  4970. "AI共创",
  4971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4972. "id": "AIChat",
  4973. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4974. "onresize": function () { }
  4975. }, {
  4976. istop: true,
  4977. closecallback: function () { $("#aichat_icon").remove(); },
  4978. narrowcallback: function () {
  4979. if (!$("#aichat_icon")[0]) {
  4980. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4981. }
  4982. },
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI共创", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4985. break;
  4986. case "ainew": //AI共创
  4987. _formdiv = new U.UF.UI.form(
  4988. "AI协同",
  4989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4990. "id": "ainew",
  4991. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4997. break;
  4998. case "gpt4": //gpt4
  4999. _formdiv = new U.UF.UI.form(
  5000. "AI助手",
  5001. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5002. "id": "gpt4",
  5003. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5009. break;
  5010. case "aigpt": //gpt4
  5011. _formdiv = new U.UF.UI.form(
  5012. "AI助手+",
  5013. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5014. "id": "aigpt",
  5015. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5016. "onresize": function () { }
  5017. }, {
  5018. closecallback: function () { }
  5019. }, { "style": { "height": "36px" } }).form; //创建窗体
  5020. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5021. break;
  5022. case "futureClass": //AI共创
  5023. _formdiv = new U.UF.UI.form(
  5024. "协同建构",
  5025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  5026. "id": "synergyCourse",
  5027. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5028. "onresize": function () { }
  5029. }, {
  5030. closecallback: function () {
  5031. $("iframe", _formdiv)[0].contentWindow.loginout();
  5032. }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/futureClass.png)" }, "name": "协同建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5035. break;
  5036. case "aiagent": //ai agent
  5037. _formdiv = new U.UF.UI.form(
  5038. "AI Agent",
  5039. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://metagpt.cocorobo.cn/dist/index.html" }), {
  5040. "id": "AIAgent",
  5041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5047. break;
  5048. case "dataBoard": //数据看板
  5049. _formdiv = new U.UF.UI.form(
  5050. "数据看板",
  5051. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoard?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5052. "id": "dataBoard",
  5053. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5059. break;
  5060. case "dataBoardSies": //数据融合
  5061. _formdiv = new U.UF.UI.form(
  5062. "数据融合",
  5063. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardSies?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5064. "id": "dataBoardSies",
  5065. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //创建窗体
  5070. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5071. break;
  5072. case "dataBoardNew": //数据看板
  5073. _formdiv = new U.UF.UI.form(
  5074. "综合看板",
  5075. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardNew?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5076. "id": "dataBoardNew",
  5077. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5083. break;
  5084. case "dataBoardTest": //数据看板
  5085. _formdiv = new U.UF.UI.form(
  5086. "评测看板",
  5087. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardTest?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5088. "id": "dataBoardTest",
  5089. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5095. break;
  5096. case "AIAnalyse": //AI共创
  5097. _formdiv = new U.UF.UI.form(
  5098. "AI分析",
  5099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5100. "id": "AIAnalyse",
  5101. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5107. break;
  5108. case "studioCourse": //AI共创
  5109. _formdiv = new U.UF.UI.form(
  5110. "工作管理",
  5111. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5112. "id": "studioCourse",
  5113. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5119. break;
  5120. case "studioIndex": //AI共创
  5121. _formdiv = new U.UF.UI.form(
  5122. "工作中心",
  5123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  5124. "id": "studioIndex",
  5125. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5126. "onresize": function () { }
  5127. }, {
  5128. closecallback: function () { }
  5129. }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5131. break;
  5132. case "source":
  5133. _formdiv = new U.UF.UI.form(
  5134. "教学资源",
  5135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5136. "id": "source",
  5137. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5143. break;
  5144. case "testTeacher":
  5145. _formdiv = new U.UF.UI.form(
  5146. "教师管理",
  5147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5148. "id": "testTeacher",
  5149. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5155. break;
  5156. case "testStudent":
  5157. _formdiv = new U.UF.UI.form(
  5158. "教师中心",
  5159. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  5160. "id": "testStudent",
  5161. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5167. break;
  5168. case "testTeacherSies":
  5169. _formdiv = new U.UF.UI.form(
  5170. "教师管理",
  5171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5172. "id": "testTeacherSies",
  5173. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5179. break;
  5180. case "testStudentSies":
  5181. _formdiv = new U.UF.UI.form(
  5182. "教师中心",
  5183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  5184. "id": "testStudentSies",
  5185. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5191. break;
  5192. case "ytpbl": //消息通知
  5193. _formdiv = new U.UF.UI.form(
  5194. "案例征集",
  5195. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5196. "id": "ytpbl",
  5197. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5203. // window.open("https://gdpbl.cocorobo.cn/#/login", "案例征集", "height=" + US.height + ", width=" + US.width + ", top=100, left=100, toolbar=no, menubar=0, resizable=0, location=0, status=no");
  5204. break;
  5205. case "aiCourseResource": //人工智能窗体
  5206. _formdiv = new U.UF.UI.form(
  5207. false,
  5208. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  5209. "id": "aiCourseResource",
  5210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5211. "onresize": function () { },
  5212. "isdrag": false,
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _taskbar = ''
  5217. break;
  5218. case "szdjgCocooroboX": //图形化编程
  5219. _formdiv = new U.UF.UI.form(
  5220. "图形化编程",
  5221. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  5222. "id": "szdjgCocooroboX",
  5223. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _taskbar = ''
  5229. break;
  5230. case "szdjgPython": //python编程
  5231. _formdiv = new U.UF.UI.form(
  5232. "Python编程",
  5233. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  5234. "id": "szdjgPython",
  5235. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. _taskbar = ''
  5241. break;
  5242. case "Record":
  5243. _formdiv = new U.UF.UI.form(
  5244. "观察记录",
  5245. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5246. "id": "Record",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5253. break;
  5254. case "aigptCourse":
  5255. _formdiv = new U.UF.UI.form(
  5256. "AI智能体",
  5257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role + '#/AgentVue' }), {
  5258. "id": "aigptCourse",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5265. break;
  5266. case "classroomObservation":
  5267. _formdiv = new U.UF.UI.form(
  5268. "课堂观察",
  5269. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5270. "id": "classroomObservation",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5277. break;
  5278. case "pblCourse":
  5279. _formdiv = new U.UF.UI.form(
  5280. "学生PBL",
  5281. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/pblCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5282. "id": "pblCourse",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5289. break;
  5290. }
  5291. //U.MD.D.I.openClick(str);
  5292. //如果有任务栏信息
  5293. if (_taskbar) {
  5294. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5295. }
  5296. }
  5297. // U.MD.D.I.openClick = function(str){
  5298. // var click = '';
  5299. // switch(str){
  5300. // case 'friend':
  5301. // click = '我的好友';
  5302. // break;
  5303. // case 'domain':
  5304. // click = '域名管理';
  5305. // break;
  5306. // case 'disk':
  5307. // click = '我的云盘';
  5308. // break;
  5309. // case 'word':
  5310. // click = 'Word';
  5311. // break;
  5312. // case 'excel':
  5313. // click = 'Execl';
  5314. // break;
  5315. // case 'txt':
  5316. // click = '文本文件';
  5317. // break;
  5318. // case 'lookupFriend':
  5319. // click = '查找好友';
  5320. // break;
  5321. // case 'ftp':
  5322. // click = 'FTP';
  5323. // break;
  5324. // case 'group':
  5325. // click = '群组';
  5326. // break;
  5327. // case 'set':
  5328. // click = '我的设置';
  5329. // break;
  5330. // case 'systemSet':
  5331. // click = '系统设置';
  5332. // break;
  5333. // case 'boomYun':
  5334. // click = '互联办公';
  5335. // break;
  5336. // case 'xz':
  5337. // click = '云端下载';
  5338. // break;
  5339. // case 'client':
  5340. // click = '有思浏览器';
  5341. // break;
  5342. // case 'backEndProgramming':
  5343. // click = '在线后台编程';
  5344. // break;
  5345. // case 'frontEndProgramming':
  5346. // click = '在线前端编程';
  5347. // break;
  5348. // default: break;
  5349. // }
  5350. // if(U.MD.D.I.Ip && click){
  5351. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5352. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5353. // })
  5354. // }
  5355. // }
  5356. /**
  5357. *函数作用:ajax简易函数,使用post格式
  5358. *@param url {data} 后台地址
  5359. *@param data {data} 参数json
  5360. *@param fn {data} 回调函数
  5361. *
  5362. */
  5363. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5364. // var xhr = new XMLHttpRequest();
  5365. // xhr.open("GET",url,true);
  5366. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5367. // xhr.onreadystatechange = function(){
  5368. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5369. // fn.call(this,xhr.responseText);
  5370. // }
  5371. // };
  5372. // xhr.send();
  5373. // }
  5374. /*判断是否是内网IP*/
  5375. // U.MD.D.I.isInnerIPFn = function(str){
  5376. // var curPageUrl = str;
  5377. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5378. // curPageUrl =curPageUrl.replace(reg1,'');
  5379. // // console.log('curPageUrl-1 '+curPageUrl);
  5380. // var reg2 = /\:+/g;//替换冒号为一点
  5381. // curPageUrl =curPageUrl.replace(reg2,'.');
  5382. // // console.log('curPageUrl-2 '+curPageUrl);
  5383. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5384. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5385. // if(curPageUrl[2] != '16'){
  5386. // return ipAddress;
  5387. // }else{
  5388. // return false;
  5389. // }
  5390. // }
  5391. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5392. // //compatibility for firefox and chrome
  5393. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5394. // var pc = new myPeerConnection({
  5395. // iceServers: []
  5396. // }),
  5397. // noop = function() {},
  5398. // localIPs = {},
  5399. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5400. // key;
  5401. // function iterateIP(ip) {
  5402. // if (!localIPs[ip]) onNewIP(ip);
  5403. // localIPs[ip] = true;
  5404. // }
  5405. // //create a bogus data channel
  5406. // pc.createDataChannel("");
  5407. // // create offer and set local description
  5408. // pc.createOffer().then(function(sdp) {
  5409. // sdp.sdp.split('\n').forEach(function(line) {
  5410. // if (line.indexOf('candidate') < 0) return;
  5411. // line.match(ipRegex).forEach(iterateIP);
  5412. // });
  5413. // pc.setLocalDescription(sdp, noop, noop);
  5414. // }).catch(function(reason) {
  5415. // // An error occurred, so handle the failure to connect
  5416. // });
  5417. // //sten for candidate events
  5418. // pc.onicecandidate = function(ice) {
  5419. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5420. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5421. // };
  5422. // }
  5423. // U.MD.D.I.getUserIpBool = function(callback){
  5424. // U.MD.D.I.getUserIP(function(ip){
  5425. // alert("Got IP! :" + ip);
  5426. // });
  5427. //}
  5428. //#endregion
  5429. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5430. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5431. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5432. _userinfo = US.userInfo, //登录用户信息
  5433. _userid = US.userInfo.userid //登录用户id
  5434. let _iframe;
  5435. let _cid = cid,
  5436. _stage = stage,
  5437. _task = task,
  5438. _tool = tool;
  5439. var _jie = $$("div", {
  5440. "style": {
  5441. "position": "absolute",
  5442. "bottom": "50px",
  5443. "right": "50px",
  5444. "zIndex": "9999",
  5445. "backgroundColor": "#2268bc",
  5446. "color": "#fff",
  5447. "padding": "12px 20px",
  5448. "cursor": "pointer",
  5449. "borderRadius": "4px",
  5450. },
  5451. "innerHTML": "提交作业"
  5452. })
  5453. let aTool = ''
  5454. let _loading = document.createElement('div')
  5455. _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;"
  5456. // _loading.id = "";
  5457. let _lchild = document.createElement('div')
  5458. let _limg = document.createElement('img')
  5459. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5460. _limg.style = "width: 26px;margin-right: 10px;"
  5461. _lchild.appendChild(_limg)
  5462. let _lspan = document.createElement('span')
  5463. _lspan.innerHTML = "上传中..."
  5464. _lchild.appendChild(_lspan)
  5465. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  5466. _loading.appendChild(_lchild)
  5467. var _box = $$('div', {
  5468. "style": {
  5469. "position": "relative",
  5470. "width": "100%",
  5471. "height": "100%",
  5472. },
  5473. })
  5474. _box.appendChild(_loading)
  5475. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5476. switch (str) {
  5477. case "whiteboard":
  5478. aTool = 1;
  5479. _iframe = $$("iframe", {
  5480. "frameborder": "no",
  5481. "border": "0",
  5482. "scrolling ": "no",
  5483. "style": {
  5484. "cssText": "border:0;width:100%;height:100%"
  5485. },
  5486. "src": "https://beta.iwb.cocorobo.cn/"
  5487. })
  5488. _box.appendChild(_iframe);
  5489. _box.appendChild(_jie);
  5490. _formdiv = new U.UF.UI.form(
  5491. "电子白板",
  5492. _box, {
  5493. "id": "whiteboard" + cid + stage + task + tool,
  5494. "style": {
  5495. "width": "90%",
  5496. "height": "90%",
  5497. "overflow": 'hidden'
  5498. },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, {
  5503. "style": {
  5504. "height": "36px"
  5505. }
  5506. }).form; //创建窗体
  5507. _taskbar = {
  5508. "id": str + _formdiv.id,
  5509. "style": {
  5510. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5511. },
  5512. "name": "电子白板",
  5513. "forms": _formdiv,
  5514. "click": function () {
  5515. U.MD.D.I.openApplication(str, obj, info);
  5516. }
  5517. }
  5518. break;
  5519. case "mind":
  5520. aTool = 3;
  5521. _iframe = $$("iframe", {
  5522. "frameborder": "no",
  5523. "border": "0",
  5524. "scrolling ": "no",
  5525. "style": {
  5526. "cssText": "border:0;width:100%;height:100%"
  5527. },
  5528. "src": "/kityminder-editor/dist/index.html"
  5529. })
  5530. _box.appendChild(_iframe);
  5531. _box.appendChild(_jie);
  5532. _formdiv = new U.UF.UI.form(
  5533. "思维导图",
  5534. _box, { //"/jsmind/example/demo.html"
  5535. "id": "mind" + cid + stage + task + tool,
  5536. "style": {
  5537. "width": "90%",
  5538. "height": "90%",
  5539. "overflow": 'hidden'
  5540. },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, {
  5545. "style": {
  5546. "height": "36px"
  5547. }
  5548. }).form; //创建窗体
  5549. _taskbar = {
  5550. "id": str + _formdiv.id,
  5551. "style": {
  5552. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5553. },
  5554. "name": "思维导图",
  5555. "forms": _formdiv,
  5556. "click": function () {
  5557. U.MD.D.I.openApplication(str, obj, info);
  5558. }
  5559. }
  5560. break;
  5561. case "MindMap":
  5562. aTool = 3;
  5563. _iframe = $$("iframe", {
  5564. "frameborder": "no",
  5565. "border": "0",
  5566. "scrolling ": "no",
  5567. "style": {
  5568. "cssText": "border:0;width:100%;height:100%"
  5569. },
  5570. "src": "//cloud.cocorobo.cn/mind/"
  5571. })
  5572. _box.appendChild(_iframe);
  5573. _box.appendChild(_jie);
  5574. _formdiv = new U.UF.UI.form(
  5575. "思维导图",
  5576. _box, { //"/jsmind/example/demo.html"
  5577. "id": "mind" + cid + stage + task + tool,
  5578. "style": {
  5579. "width": "90%",
  5580. "height": "90%",
  5581. "overflow": 'hidden'
  5582. },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, {
  5587. "style": {
  5588. "height": "36px"
  5589. }
  5590. }).form; //创建窗体
  5591. _taskbar = {
  5592. "id": str + _formdiv.id,
  5593. "style": {
  5594. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5595. },
  5596. "name": "思维导图",
  5597. "forms": _formdiv,
  5598. "click": function () {
  5599. U.MD.D.I.openApplication(str, obj, info);
  5600. }
  5601. }
  5602. break;
  5603. case "doc":
  5604. aTool = 6;
  5605. _iframe = $$("iframe", {
  5606. "frameborder": "no",
  5607. "border": "0",
  5608. "scrolling ": "no",
  5609. "style": {
  5610. "cssText": "border:0;width:100%;height:100%"
  5611. },
  5612. "src": "/Office/Word/WordEditArea.htm"
  5613. })
  5614. _box.appendChild(_iframe);
  5615. _box.appendChild(_jie);
  5616. _formdiv = new U.UF.UI.form(
  5617. "协同文档",
  5618. _box, {
  5619. "id": "doc" + cid + stage + task + tool,
  5620. "style": {
  5621. "width": "90%",
  5622. "height": "90%",
  5623. "overflow": 'hidden'
  5624. },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, {
  5629. "style": {
  5630. "height": "36px"
  5631. }
  5632. }).form; //创建窗体
  5633. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5634. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5635. })
  5636. _taskbar = {
  5637. "id": str + _formdiv.id,
  5638. "style": {
  5639. "backgroundImage": "url(/img/icon/doc.png)"
  5640. },
  5641. "name": "协同文档",
  5642. "forms": _formdiv,
  5643. "click": function () {
  5644. U.MD.D.I.openApplication(str, obj, info);
  5645. }
  5646. }
  5647. break;
  5648. case "mindNetwork": //好友打开
  5649. aTool = 7;
  5650. _iframe = $$("iframe", {
  5651. "webkitallowfullscreen": "",
  5652. "mozallowfullscreen": "",
  5653. "allowfullscreen": "",
  5654. "frameborder": "no",
  5655. "border": "0",
  5656. "scrolling ": "no",
  5657. "style": {
  5658. "cssText": "border:0; width:100%; height:100%;"
  5659. },
  5660. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5661. })
  5662. _box.appendChild(_iframe);
  5663. _box.appendChild(_jie);
  5664. _formdiv = new U.UF.UI.form(
  5665. "思维网格",
  5666. _box, {
  5667. "id": "mindNetwork" + cid + stage + task + tool,
  5668. "style": {
  5669. "width": "90%",
  5670. "height": "90%",
  5671. "overflow": 'hidden'
  5672. },
  5673. "onresize": function () { }
  5674. }, {
  5675. closecallback: function () { }
  5676. }, {
  5677. "style": {
  5678. "height": "36px"
  5679. }
  5680. }).form; //创建窗体
  5681. _taskbar = {
  5682. "id": str + _formdiv.id,
  5683. "style": {
  5684. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5685. },
  5686. "name": "思维网格",
  5687. "forms": _formdiv,
  5688. "click": function () {
  5689. U.MD.D.I.openApplication(str, obj, info);
  5690. }
  5691. }
  5692. break;
  5693. case "courseDesign":
  5694. _iframe = $$("iframe", {
  5695. "webkitallowfullscreen": "",
  5696. "mozallowfullscreen": "",
  5697. "allowfullscreen": "",
  5698. "frameborder": "no",
  5699. "border": "0",
  5700. "scrolling ": "no",
  5701. "style": {
  5702. "cssText": "border:0; width:100%; height:100%;"
  5703. },
  5704. "src": "/course-design-vue"
  5705. })
  5706. _box.appendChild(_iframe);
  5707. _box.appendChild(_jie);
  5708. _formdiv = new U.UF.UI.form(
  5709. "项目设计",
  5710. _box, {
  5711. "id": "courseDesign" + cid + stage + task + tool,
  5712. "style": {
  5713. "width": "90%",
  5714. "height": "90%",
  5715. "overflow": 'hidden'
  5716. },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, {
  5721. "style": {
  5722. "height": "36px"
  5723. }
  5724. }).form; //创建窗体
  5725. _taskbar = {
  5726. "id": str + _formdiv.id,
  5727. "style": {
  5728. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5729. },
  5730. "name": "项目设计",
  5731. "forms": _formdiv,
  5732. "click": function () {
  5733. U.MD.D.I.openApplication(str, obj, info);
  5734. }
  5735. }
  5736. break;
  5737. }
  5738. const script1 = document.createElement("script");
  5739. script1.type = "text/javascript";
  5740. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5741. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5742. const script2 = document.createElement("script");
  5743. script2.type = "text/javascript";
  5744. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5745. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5746. const script3 = document.createElement("script");
  5747. script3.type = "text/javascript";
  5748. script3.charset = "UTF-8";
  5749. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5750. const script4 = document.createElement("script");
  5751. script4.type = "text/javascript";
  5752. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5753. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5754. if (_iframe) {
  5755. if (str == 'doc') {
  5756. _iframe = _formdiv.querySelector('iframe')
  5757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5758. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5759. _iframe.contentWindow.document.body.appendChild(script1);
  5760. _iframe.contentWindow.document.body.appendChild(script2);
  5761. // _iframe.contentWindow.document.body.appendChild(script3);
  5762. _iframe.contentWindow.document.body.appendChild(script4);
  5763. })
  5764. if (onloadListener) {
  5765. _iframe.contentDocument.location.reload()
  5766. } else {
  5767. _iframe.contentDocument.location.reload()
  5768. }
  5769. } else if (str == 'courseDesign') {
  5770. U.UF.DL.iframeLoad(_iframe, function () {
  5771. // _iframe.contentWindow.U.MD.O.W.load();
  5772. // _iframe.contentWindow.document.body.appendChild(script1);
  5773. _iframe.contentWindow.document.body.appendChild(script2);
  5774. _iframe.contentWindow.document.body.appendChild(script4);
  5775. })
  5776. } else if (str == 'mind') {
  5777. _iframe = _formdiv.querySelector('iframe')
  5778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5779. //
  5780. _iframe.contentWindow.document.body.appendChild(script1);
  5781. _iframe.contentWindow.document.body.appendChild(script2);
  5782. _iframe.contentWindow.document.body.appendChild(script4);
  5783. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5784. })
  5785. if (onloadListener) {
  5786. _iframe.contentDocument.location.reload()
  5787. } else {
  5788. _iframe.contentDocument.location.reload()
  5789. }
  5790. } else if (str == 'whiteboard') {
  5791. _iframe = _formdiv.querySelector('iframe')
  5792. let onloadListener = _iframe.onload = () => {
  5793. _iframe.contentWindow.document.body.appendChild(script1);
  5794. _iframe.contentWindow.document.body.appendChild(script2);
  5795. _iframe.contentWindow.document.body.appendChild(script4);
  5796. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5797. };
  5798. if (onloadListener) {
  5799. _iframe.contentDocument.location.reload()
  5800. } else {
  5801. _iframe.contentDocument.location.reload()
  5802. }
  5803. } else {
  5804. _iframe.onload = () => {
  5805. _iframe.contentWindow.document.body.appendChild(script1);
  5806. _iframe.contentWindow.document.body.appendChild(script2);
  5807. // _iframe.contentWindow.document.body.appendChild(script3);
  5808. _iframe.contentWindow.document.body.appendChild(script4);
  5809. };
  5810. }
  5811. _jie.onclick = async () => {
  5812. let text = ''
  5813. if (aTool == 1) {
  5814. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5815. } else if (aTool == 6) {
  5816. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5817. } else if (aTool == 3) {
  5818. text = await U.MD.D.I.getEditorContent(_iframe);
  5819. }
  5820. _loading.style.display = 'flex'
  5821. console.log(_loading);
  5822. var _ajs = _iframe.contentWindow.document.createElement("script");
  5823. _ajs.type = "text/javascript";
  5824. _ajs.innerHTML =
  5825. // 'console.log(' + _loading + ');\n' +
  5826. 'var _js = document.createElement("script");\n' +
  5827. '_js.type="text/javascript";\n' +
  5828. '_js.charset="UTF-8";\n' +
  5829. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5830. "_js.onload = function(){\n" +
  5831. ' var a = document.getElementsByTagName("img")\n' +
  5832. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5833. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5834. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5835. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5836. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5837. "beforeUpload_shishi(file," +
  5838. "'" +
  5839. _userid +
  5840. "'" +
  5841. ", " +
  5842. "'" +
  5843. _cid +
  5844. "'" +
  5845. ", " +
  5846. "'" +
  5847. _stage +
  5848. "'" +
  5849. ", " +
  5850. "'" +
  5851. _task +
  5852. "'" +
  5853. ", " +
  5854. "'" +
  5855. _tool +
  5856. "'" +
  5857. ", " +
  5858. "'" +
  5859. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5860. "'" +
  5861. ", " +
  5862. "'" +
  5863. aTool +
  5864. "'" +
  5865. ", " +
  5866. "`" +
  5867. text +
  5868. "`" +
  5869. ")\n" +
  5870. " });\n" +
  5871. "}\n" +
  5872. "document.head.appendChild(_js);\n";
  5873. _iframe.contentWindow.document.head.appendChild(_ajs);
  5874. }
  5875. }
  5876. //U.MD.D.I.openClick(str);
  5877. //如果有任务栏信息
  5878. // if (_taskbar) {
  5879. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5880. // }
  5881. }
  5882. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5883. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5884. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5885. _userinfo = US.userInfo, //登录用户信息
  5886. _userid = US.userInfo.userid //登录用户id
  5887. let _iframe;
  5888. let _cid = cid,
  5889. _stage = stage,
  5890. _task = task,
  5891. _tool = tool;
  5892. var _jie = $$("div", {
  5893. "style": {
  5894. "position": "absolute",
  5895. "bottom": "50px",
  5896. "right": "50px",
  5897. "zIndex": "9999",
  5898. "backgroundColor": "#2268bc",
  5899. "color": "#fff",
  5900. "padding": "12px 20px",
  5901. "cursor": "pointer",
  5902. "borderRadius": "4px",
  5903. },
  5904. "innerHTML": "提交作业"
  5905. })
  5906. let aTool = ''
  5907. let _loading = document.createElement('div')
  5908. _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;"
  5909. // _loading.id = "";
  5910. let _lchild = document.createElement('div')
  5911. let _limg = document.createElement('img')
  5912. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5913. _limg.style = "width: 26px;margin-right: 10px;"
  5914. _lchild.appendChild(_limg)
  5915. let _lspan = document.createElement('span')
  5916. _lspan.innerHTML = "上传中..."
  5917. _lchild.appendChild(_lspan)
  5918. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  5919. _loading.appendChild(_lchild)
  5920. var _box = $$('div', {
  5921. "style": {
  5922. "position": "relative",
  5923. "width": "100%",
  5924. "height": "100%",
  5925. },
  5926. })
  5927. _box.appendChild(_loading)
  5928. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5929. switch (str) {
  5930. case "whiteboard":
  5931. aTool = 1;
  5932. _iframe = $$("iframe", {
  5933. "frameborder": "no",
  5934. "border": "0",
  5935. "scrolling ": "no",
  5936. "style": {
  5937. "cssText": "border:0;width:100%;height:100%"
  5938. },
  5939. "src": "https://beta.iwb.cocorobo.cn/"
  5940. })
  5941. _box.appendChild(_iframe);
  5942. _box.appendChild(_jie);
  5943. _formdiv = new U.UF.UI.form(
  5944. "电子白板",
  5945. _box, {
  5946. "id": "whiteboard" + cid + stage + task + tool,
  5947. "style": {
  5948. "width": "90%",
  5949. "height": "90%",
  5950. "overflow": 'hidden'
  5951. },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, {
  5956. "style": {
  5957. "height": "36px"
  5958. }
  5959. }).form; //创建窗体
  5960. _taskbar = {
  5961. "id": str + _formdiv.id,
  5962. "style": {
  5963. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5964. },
  5965. "name": "电子白板",
  5966. "forms": _formdiv,
  5967. "click": function () {
  5968. U.MD.D.I.openApplication(str, obj, info);
  5969. }
  5970. }
  5971. break;
  5972. case "mind":
  5973. aTool = 3;
  5974. _iframe = $$("iframe", {
  5975. "frameborder": "no",
  5976. "border": "0",
  5977. "scrolling ": "no",
  5978. "style": {
  5979. "cssText": "border:0;width:100%;height:100%"
  5980. },
  5981. "src": "/kityminder-editor/dist/index.html"
  5982. })
  5983. _box.appendChild(_iframe);
  5984. _box.appendChild(_jie);
  5985. _formdiv = new U.UF.UI.form(
  5986. "思维导图",
  5987. _box, { //"/jsmind/example/demo.html"
  5988. "id": "mind" + cid + stage + task + tool,
  5989. "style": {
  5990. "width": "90%",
  5991. "height": "90%",
  5992. "overflow": 'hidden'
  5993. },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, {
  5998. "style": {
  5999. "height": "36px"
  6000. }
  6001. }).form; //创建窗体
  6002. _taskbar = {
  6003. "id": str + _formdiv.id,
  6004. "style": {
  6005. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6006. },
  6007. "name": "思维导图",
  6008. "forms": _formdiv,
  6009. "click": function () {
  6010. U.MD.D.I.openApplication(str, obj, info);
  6011. }
  6012. }
  6013. break;
  6014. case "MindMap":
  6015. aTool = 3;
  6016. _iframe = $$("iframe", {
  6017. "frameborder": "no",
  6018. "border": "0",
  6019. "scrolling ": "no",
  6020. "style": {
  6021. "cssText": "border:0;width:100%;height:100%"
  6022. },
  6023. "src": "//cloud.cocorobo.cn/mind/"
  6024. })
  6025. _box.appendChild(_iframe);
  6026. _box.appendChild(_jie);
  6027. _formdiv = new U.UF.UI.form(
  6028. "思维导图",
  6029. _box, { //"/jsmind/example/demo.html"
  6030. "id": "mind" + cid + stage + task + tool,
  6031. "style": {
  6032. "width": "90%",
  6033. "height": "90%",
  6034. "overflow": 'hidden'
  6035. },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, {
  6040. "style": {
  6041. "height": "36px"
  6042. }
  6043. }).form; //创建窗体
  6044. _taskbar = {
  6045. "id": str + _formdiv.id,
  6046. "style": {
  6047. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6048. },
  6049. "name": "思维导图",
  6050. "forms": _formdiv,
  6051. "click": function () {
  6052. U.MD.D.I.openApplication(str, obj, info);
  6053. }
  6054. }
  6055. break;
  6056. case "doc":
  6057. aTool = 6;
  6058. _iframe = $$("iframe", {
  6059. "frameborder": "no",
  6060. "border": "0",
  6061. "scrolling ": "no",
  6062. "style": {
  6063. "cssText": "border:0;width:100%;height:100%"
  6064. },
  6065. "src": "/Office/Word/WordEditArea.htm"
  6066. })
  6067. _box.appendChild(_iframe);
  6068. _box.appendChild(_jie);
  6069. _formdiv = new U.UF.UI.form(
  6070. "协同文档",
  6071. _box, {
  6072. "id": "doc" + cid + stage + task + tool,
  6073. "style": {
  6074. "width": "90%",
  6075. "height": "90%",
  6076. "overflow": 'hidden'
  6077. },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, {
  6082. "style": {
  6083. "height": "36px"
  6084. }
  6085. }).form; //创建窗体
  6086. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6087. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6088. })
  6089. _taskbar = {
  6090. "id": str + _formdiv.id,
  6091. "style": {
  6092. "backgroundImage": "url(/img/icon/doc.png)"
  6093. },
  6094. "name": "协同文档",
  6095. "forms": _formdiv,
  6096. "click": function () {
  6097. U.MD.D.I.openApplication(str, obj, info);
  6098. }
  6099. }
  6100. break;
  6101. case "mindNetwork": //好友打开
  6102. aTool = 7;
  6103. _iframe = $$("iframe", {
  6104. "webkitallowfullscreen": "",
  6105. "mozallowfullscreen": "",
  6106. "allowfullscreen": "",
  6107. "frameborder": "no",
  6108. "border": "0",
  6109. "scrolling ": "no",
  6110. "style": {
  6111. "cssText": "border:0; width:100%; height:100%;"
  6112. },
  6113. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6114. })
  6115. _box.appendChild(_iframe);
  6116. _box.appendChild(_jie);
  6117. _formdiv = new U.UF.UI.form(
  6118. "思维网格",
  6119. _box, {
  6120. "id": "mindNetwork" + cid + stage + task + tool,
  6121. "style": {
  6122. "width": "90%",
  6123. "height": "90%",
  6124. "overflow": 'hidden'
  6125. },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, {
  6130. "style": {
  6131. "height": "36px"
  6132. }
  6133. }).form; //创建窗体
  6134. _taskbar = {
  6135. "id": str + _formdiv.id,
  6136. "style": {
  6137. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6138. },
  6139. "name": "思维网格",
  6140. "forms": _formdiv,
  6141. "click": function () {
  6142. U.MD.D.I.openApplication(str, obj, info);
  6143. }
  6144. }
  6145. break;
  6146. case "courseDesign":
  6147. _iframe = $$("iframe", {
  6148. "webkitallowfullscreen": "",
  6149. "mozallowfullscreen": "",
  6150. "allowfullscreen": "",
  6151. "frameborder": "no",
  6152. "border": "0",
  6153. "scrolling ": "no",
  6154. "style": {
  6155. "cssText": "border:0; width:100%; height:100%;"
  6156. },
  6157. "src": "/course-design-vue"
  6158. })
  6159. _box.appendChild(_iframe);
  6160. _box.appendChild(_jie);
  6161. _formdiv = new U.UF.UI.form(
  6162. "项目设计",
  6163. _box, {
  6164. "id": "courseDesign" + cid + stage + task + tool,
  6165. "style": {
  6166. "width": "90%",
  6167. "height": "90%",
  6168. "overflow": 'hidden'
  6169. },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, {
  6174. "style": {
  6175. "height": "36px"
  6176. }
  6177. }).form; //创建窗体
  6178. _taskbar = {
  6179. "id": str + _formdiv.id,
  6180. "style": {
  6181. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6182. },
  6183. "name": "项目设计",
  6184. "forms": _formdiv,
  6185. "click": function () {
  6186. U.MD.D.I.openApplication(str, obj, info);
  6187. }
  6188. }
  6189. break;
  6190. }
  6191. const script1 = document.createElement("script");
  6192. script1.type = "text/javascript";
  6193. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6194. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6195. const script2 = document.createElement("script");
  6196. script2.type = "text/javascript";
  6197. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6198. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6199. const script3 = document.createElement("script");
  6200. script3.type = "text/javascript";
  6201. script3.charset = "UTF-8";
  6202. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6203. const script4 = document.createElement("script");
  6204. script4.type = "text/javascript";
  6205. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6206. script4.src = window.origin + "/js/Common/jietu2E.js";
  6207. if (_iframe) {
  6208. if (str == 'doc') {
  6209. _iframe = _formdiv.querySelector('iframe')
  6210. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6211. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6212. _iframe.contentWindow.document.body.appendChild(script1);
  6213. _iframe.contentWindow.document.body.appendChild(script2);
  6214. // _iframe.contentWindow.document.body.appendChild(script3);
  6215. _iframe.contentWindow.document.body.appendChild(script4);
  6216. })
  6217. if (onloadListener) {
  6218. _iframe.contentDocument.location.reload()
  6219. } else {
  6220. _iframe.contentDocument.location.reload()
  6221. }
  6222. } else if (str == 'courseDesign') {
  6223. U.UF.DL.iframeLoad(_iframe, function () {
  6224. // _iframe.contentWindow.U.MD.O.W.load();
  6225. // _iframe.contentWindow.document.body.appendChild(script1);
  6226. _iframe.contentWindow.document.body.appendChild(script2);
  6227. _iframe.contentWindow.document.body.appendChild(script4);
  6228. })
  6229. } else if (str == 'mind') {
  6230. _iframe = _formdiv.querySelector('iframe')
  6231. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6232. //
  6233. _iframe.contentWindow.document.body.appendChild(script1);
  6234. _iframe.contentWindow.document.body.appendChild(script2);
  6235. _iframe.contentWindow.document.body.appendChild(script4);
  6236. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6237. })
  6238. if (onloadListener) {
  6239. _iframe.contentDocument.location.reload()
  6240. } else {
  6241. _iframe.contentDocument.location.reload()
  6242. }
  6243. } else if (str == 'whiteboard') {
  6244. _iframe = _formdiv.querySelector('iframe')
  6245. let onloadListener = _iframe.onload = () => {
  6246. _iframe.contentWindow.document.body.appendChild(script1);
  6247. _iframe.contentWindow.document.body.appendChild(script2);
  6248. _iframe.contentWindow.document.body.appendChild(script4);
  6249. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6250. };
  6251. if (onloadListener) {
  6252. _iframe.contentDocument.location.reload()
  6253. } else {
  6254. _iframe.contentDocument.location.reload()
  6255. }
  6256. } else {
  6257. _iframe.onload = () => {
  6258. _iframe.contentWindow.document.body.appendChild(script1);
  6259. _iframe.contentWindow.document.body.appendChild(script2);
  6260. // _iframe.contentWindow.document.body.appendChild(script3);
  6261. _iframe.contentWindow.document.body.appendChild(script4);
  6262. };
  6263. }
  6264. _jie.onclick = async () => {
  6265. let text = ''
  6266. if (aTool == 1) {
  6267. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6268. } else if (aTool == 6) {
  6269. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6270. } else if (aTool == 3) {
  6271. text = await U.MD.D.I.getEditorContent(_iframe);
  6272. }
  6273. _loading.style.display = 'flex'
  6274. console.log(_loading);
  6275. var _ajs = _iframe.contentWindow.document.createElement("script");
  6276. _ajs.type = "text/javascript";
  6277. _ajs.innerHTML =
  6278. // 'console.log(' + _loading + ');\n' +
  6279. 'var _js = document.createElement("script");\n' +
  6280. '_js.type="text/javascript";\n' +
  6281. '_js.charset="UTF-8";\n' +
  6282. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6283. "_js.onload = function(){\n" +
  6284. ' var a = document.getElementsByTagName("img")\n' +
  6285. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6286. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6287. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6288. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6289. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6290. "beforeUpload_shishi(file," +
  6291. "'" +
  6292. _userid +
  6293. "'" +
  6294. ", " +
  6295. "'" +
  6296. _cid +
  6297. "'" +
  6298. ", " +
  6299. "'" +
  6300. _stage +
  6301. "'" +
  6302. ", " +
  6303. "'" +
  6304. _task +
  6305. "'" +
  6306. ", " +
  6307. "'" +
  6308. _tool +
  6309. "'" +
  6310. ", " +
  6311. "'" +
  6312. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6313. "'" +
  6314. ", " +
  6315. "'" +
  6316. aTool +
  6317. "'" +
  6318. ", " +
  6319. "`" +
  6320. text +
  6321. "`" +
  6322. ")\n" +
  6323. " });\n" +
  6324. "}\n" +
  6325. "document.head.appendChild(_js);\n";
  6326. _iframe.contentWindow.document.head.appendChild(_ajs);
  6327. }
  6328. }
  6329. //U.MD.D.I.openClick(str);
  6330. //如果有任务栏信息
  6331. // if (_taskbar) {
  6332. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6333. // }
  6334. }
  6335. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6336. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6337. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6338. _userid = student.userid, //登录用户id
  6339. _username = student.student //用户名字
  6340. let _iframe;
  6341. let _cid = cid,
  6342. _stage = stage,
  6343. _task = task,
  6344. _tool = tool;
  6345. var _jie = $$("div", {
  6346. "style": {
  6347. "position": "absolute",
  6348. "bottom": "50px",
  6349. "right": "50px",
  6350. "zIndex": "9999",
  6351. "backgroundColor": "#2268bc",
  6352. "color": "#fff",
  6353. "padding": "12px 20px",
  6354. "cursor": "pointer",
  6355. "borderRadius": "4px",
  6356. },
  6357. "innerHTML": "提交作业"
  6358. })
  6359. let aTool = ''
  6360. let _loading = document.createElement('div')
  6361. _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;"
  6362. // _loading.id = "";
  6363. let _lchild = document.createElement('div')
  6364. let _limg = document.createElement('img')
  6365. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6366. _limg.style = "width: 26px;margin-right: 10px;"
  6367. _lchild.appendChild(_limg)
  6368. let _lspan = document.createElement('span')
  6369. _lspan.innerHTML = "上传中..."
  6370. _lchild.appendChild(_lspan)
  6371. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  6372. _loading.appendChild(_lchild)
  6373. var _box = $$('div', {
  6374. "style": {
  6375. "position": "relative",
  6376. "width": "100%",
  6377. "height": "100%",
  6378. },
  6379. })
  6380. _box.appendChild(_loading)
  6381. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6382. switch (str) {
  6383. case "whiteboard":
  6384. aTool = 1;
  6385. _iframe = $$("iframe", {
  6386. "frameborder": "no",
  6387. "border": "0",
  6388. "scrolling ": "no",
  6389. "style": {
  6390. "cssText": "border:0;width:100%;height:100%"
  6391. },
  6392. "src": "https://beta.iwb.cocorobo.cn/"
  6393. })
  6394. _box.appendChild(_iframe);
  6395. _box.appendChild(_jie);
  6396. _formdiv = new U.UF.UI.form(
  6397. "电子白板-" + _username,
  6398. _box, {
  6399. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6400. "style": {
  6401. "width": "90%",
  6402. "height": "90%",
  6403. "overflow": 'hidden'
  6404. },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, {
  6409. "style": {
  6410. "height": "36px"
  6411. }
  6412. }).form; //创建窗体
  6413. _taskbar = {
  6414. "id": str + _formdiv.id,
  6415. "style": {
  6416. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6417. },
  6418. "name": "电子白板",
  6419. "forms": _formdiv,
  6420. "click": function () {
  6421. U.MD.D.I.openApplication(str, obj, info);
  6422. }
  6423. }
  6424. break;
  6425. case "mind":
  6426. aTool = 3;
  6427. _iframe = $$("iframe", {
  6428. "frameborder": "no",
  6429. "border": "0",
  6430. "scrolling ": "no",
  6431. "style": {
  6432. "cssText": "border:0;width:100%;height:100%"
  6433. },
  6434. "src": "/kityminder-editor/dist/index.html"
  6435. })
  6436. _box.appendChild(_iframe);
  6437. _box.appendChild(_jie);
  6438. _formdiv = new U.UF.UI.form(
  6439. "思维导图-" + _username,
  6440. _box, { //"/jsmind/example/demo.html"
  6441. "id": "mind" + cid + stage + task + tool + _userid,
  6442. "style": {
  6443. "width": "90%",
  6444. "height": "90%",
  6445. "overflow": 'hidden'
  6446. },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, {
  6451. "style": {
  6452. "height": "36px"
  6453. }
  6454. }).form; //创建窗体
  6455. _taskbar = {
  6456. "id": str + _formdiv.id,
  6457. "style": {
  6458. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6459. },
  6460. "name": "思维导图",
  6461. "forms": _formdiv,
  6462. "click": function () {
  6463. U.MD.D.I.openApplication(str, obj, info);
  6464. }
  6465. }
  6466. break;
  6467. case "MindMap":
  6468. aTool = 3;
  6469. _iframe = $$("iframe", {
  6470. "frameborder": "no",
  6471. "border": "0",
  6472. "scrolling ": "no",
  6473. "style": {
  6474. "cssText": "border:0;width:100%;height:100%"
  6475. },
  6476. "src": "//cloud.cocorobo.cn/mind/"
  6477. })
  6478. _box.appendChild(_iframe);
  6479. _box.appendChild(_jie);
  6480. _formdiv = new U.UF.UI.form(
  6481. "思维导图-" + _username,
  6482. _box, { //"/jsmind/example/demo.html"
  6483. "id": "mind" + cid + stage + task + tool + _userid,
  6484. "style": {
  6485. "width": "90%",
  6486. "height": "90%",
  6487. "overflow": 'hidden'
  6488. },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, {
  6493. "style": {
  6494. "height": "36px"
  6495. }
  6496. }).form; //创建窗体
  6497. _taskbar = {
  6498. "id": str + _formdiv.id,
  6499. "style": {
  6500. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6501. },
  6502. "name": "思维导图",
  6503. "forms": _formdiv,
  6504. "click": function () {
  6505. U.MD.D.I.openApplication(str, obj, info);
  6506. }
  6507. }
  6508. break;
  6509. case "doc":
  6510. aTool = 6;
  6511. _iframe = $$("iframe", {
  6512. "frameborder": "no",
  6513. "border": "0",
  6514. "scrolling ": "no",
  6515. "style": {
  6516. "cssText": "border:0;width:100%;height:100%"
  6517. },
  6518. "src": "/Office/Word/WordEditArea.htm"
  6519. })
  6520. _box.appendChild(_iframe);
  6521. _box.appendChild(_jie);
  6522. _formdiv = new U.UF.UI.form(
  6523. "协同文档-" + _username,
  6524. _box, {
  6525. "id": "doc" + cid + stage + task + tool + _userid,
  6526. "style": {
  6527. "width": "90%",
  6528. "height": "90%",
  6529. "overflow": 'hidden'
  6530. },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, {
  6535. "style": {
  6536. "height": "36px"
  6537. }
  6538. }).form; //创建窗体
  6539. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6540. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6541. })
  6542. _taskbar = {
  6543. "id": str + _formdiv.id,
  6544. "style": {
  6545. "backgroundImage": "url(/img/icon/doc.png)"
  6546. },
  6547. "name": "协同文档",
  6548. "forms": _formdiv,
  6549. "click": function () {
  6550. U.MD.D.I.openApplication(str, obj, info);
  6551. }
  6552. }
  6553. break;
  6554. case "mindNetwork": //好友打开
  6555. aTool = 7;
  6556. _iframe = $$("iframe", {
  6557. "webkitallowfullscreen": "",
  6558. "mozallowfullscreen": "",
  6559. "allowfullscreen": "",
  6560. "frameborder": "no",
  6561. "border": "0",
  6562. "scrolling ": "no",
  6563. "style": {
  6564. "cssText": "border:0; width:100%; height:100%;"
  6565. },
  6566. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6567. })
  6568. _box.appendChild(_iframe);
  6569. _box.appendChild(_jie);
  6570. _formdiv = new U.UF.UI.form(
  6571. "思维网格-" + _username,
  6572. _box, {
  6573. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6574. "style": {
  6575. "width": "90%",
  6576. "height": "90%",
  6577. "overflow": 'hidden'
  6578. },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, {
  6583. "style": {
  6584. "height": "36px"
  6585. }
  6586. }).form; //创建窗体
  6587. _taskbar = {
  6588. "id": str + _formdiv.id,
  6589. "style": {
  6590. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6591. },
  6592. "name": "思维网格",
  6593. "forms": _formdiv,
  6594. "click": function () {
  6595. U.MD.D.I.openApplication(str, obj, info);
  6596. }
  6597. }
  6598. break;
  6599. case "courseDesign":
  6600. _iframe = $$("iframe", {
  6601. "webkitallowfullscreen": "",
  6602. "mozallowfullscreen": "",
  6603. "allowfullscreen": "",
  6604. "frameborder": "no",
  6605. "border": "0",
  6606. "scrolling ": "no",
  6607. "style": {
  6608. "cssText": "border:0; width:100%; height:100%;"
  6609. },
  6610. "src": "/course-design-vue"
  6611. })
  6612. _box.appendChild(_iframe);
  6613. _box.appendChild(_jie);
  6614. _formdiv = new U.UF.UI.form(
  6615. "项目设计-" + _username,
  6616. _box, {
  6617. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6618. "style": {
  6619. "width": "90%",
  6620. "height": "90%",
  6621. "overflow": 'hidden'
  6622. },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, {
  6627. "style": {
  6628. "height": "36px"
  6629. }
  6630. }).form; //创建窗体
  6631. _taskbar = {
  6632. "id": str + _formdiv.id,
  6633. "style": {
  6634. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6635. },
  6636. "name": "项目设计",
  6637. "forms": _formdiv,
  6638. "click": function () {
  6639. U.MD.D.I.openApplication(str, obj, info);
  6640. }
  6641. }
  6642. break;
  6643. }
  6644. const script1 = document.createElement("script");
  6645. script1.type = "text/javascript";
  6646. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6647. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6648. const script2 = document.createElement("script");
  6649. script2.type = "text/javascript";
  6650. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6651. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6652. const script3 = document.createElement("script");
  6653. script3.type = "text/javascript";
  6654. script3.charset = "UTF-8";
  6655. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6656. const script4 = document.createElement("script");
  6657. script4.type = "text/javascript";
  6658. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6659. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6660. if (_iframe) {
  6661. if (str == 'doc') {
  6662. _iframe = _formdiv.querySelector('iframe')
  6663. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6664. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6665. _iframe.contentWindow.document.body.appendChild(script1);
  6666. _iframe.contentWindow.document.body.appendChild(script2);
  6667. // _iframe.contentWindow.document.body.appendChild(script3);
  6668. _iframe.contentWindow.document.body.appendChild(script4);
  6669. })
  6670. if (onloadListener) {
  6671. _iframe.contentDocument.location.reload()
  6672. } else {
  6673. _iframe.contentDocument.location.reload()
  6674. }
  6675. } else if (str == 'courseDesign') {
  6676. U.UF.DL.iframeLoad(_iframe, function () {
  6677. // _iframe.contentWindow.U.MD.O.W.load();
  6678. // _iframe.contentWindow.document.body.appendChild(script1);
  6679. _iframe.contentWindow.document.body.appendChild(script2);
  6680. _iframe.contentWindow.document.body.appendChild(script4);
  6681. })
  6682. } else if (str == 'mind') {
  6683. _iframe = _formdiv.querySelector('iframe')
  6684. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6685. //
  6686. _iframe.contentWindow.document.body.appendChild(script1);
  6687. _iframe.contentWindow.document.body.appendChild(script2);
  6688. _iframe.contentWindow.document.body.appendChild(script4);
  6689. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6690. })
  6691. if (onloadListener) {
  6692. _iframe.contentDocument.location.reload()
  6693. } else {
  6694. _iframe.contentDocument.location.reload()
  6695. }
  6696. } else if (str == 'whiteboard') {
  6697. _iframe = _formdiv.querySelector('iframe')
  6698. let onloadListener = _iframe.onload = () => {
  6699. _iframe.contentWindow.document.body.appendChild(script1);
  6700. _iframe.contentWindow.document.body.appendChild(script2);
  6701. _iframe.contentWindow.document.body.appendChild(script4);
  6702. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6703. };
  6704. if (onloadListener) {
  6705. try {
  6706. _iframe.src += ""
  6707. _iframe.contentWindow.document.location.reload()
  6708. } catch (error) {
  6709. }
  6710. } else {
  6711. _iframe.contentDocument.location.reload()
  6712. }
  6713. } else {
  6714. _iframe.onload = () => {
  6715. _iframe.contentWindow.document.body.appendChild(script1);
  6716. _iframe.contentWindow.document.body.appendChild(script2);
  6717. // _iframe.contentWindow.document.body.appendChild(script3);
  6718. _iframe.contentWindow.document.body.appendChild(script4);
  6719. };
  6720. }
  6721. _jie.onclick = async () => {
  6722. let text = ''
  6723. if (aTool == 1) {
  6724. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6725. } else if (aTool == 6) {
  6726. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6727. } else if (aTool == 3) {
  6728. text = await U.MD.D.I.getEditorContent(_iframe);
  6729. }
  6730. _loading.style.display = 'flex'
  6731. console.log(_loading);
  6732. var _ajs = _iframe.contentWindow.document.createElement("script");
  6733. _ajs.type = "text/javascript";
  6734. _ajs.innerHTML =
  6735. // 'console.log(' + _loading + ');\n' +
  6736. 'var _js = document.createElement("script");\n' +
  6737. '_js.type="text/javascript";\n' +
  6738. '_js.charset="UTF-8";\n' +
  6739. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6740. "_js.onload = function(){\n" +
  6741. ' var a = document.getElementsByTagName("img")\n' +
  6742. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6743. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6744. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6745. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6746. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6747. "beforeUpload_shishi(file," +
  6748. "'" +
  6749. _userid +
  6750. "'" +
  6751. ", " +
  6752. "'" +
  6753. _cid +
  6754. "'" +
  6755. ", " +
  6756. "'" +
  6757. _stage +
  6758. "'" +
  6759. ", " +
  6760. "'" +
  6761. _task +
  6762. "'" +
  6763. ", " +
  6764. "'" +
  6765. _tool +
  6766. "'" +
  6767. ", " +
  6768. "'" +
  6769. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6770. "'" +
  6771. ", " +
  6772. "'" +
  6773. aTool +
  6774. "'" +
  6775. ", " +
  6776. "`" +
  6777. text +
  6778. "`" +
  6779. ")\n" +
  6780. " });\n" +
  6781. "}\n" +
  6782. "document.head.appendChild(_js);\n";
  6783. _iframe.contentWindow.document.head.appendChild(_ajs);
  6784. }
  6785. }
  6786. }
  6787. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6788. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6789. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6790. _userid = student.userid, //登录用户id
  6791. _username = student.student //用户名字
  6792. let _iframe;
  6793. let _cid = cid,
  6794. _stage = stage,
  6795. _task = task,
  6796. _tool = tool;
  6797. var _jie = $$("div", {
  6798. "style": {
  6799. "position": "absolute",
  6800. "bottom": "50px",
  6801. "right": "50px",
  6802. "zIndex": "9999",
  6803. "backgroundColor": "#2268bc",
  6804. "color": "#fff",
  6805. "padding": "12px 20px",
  6806. "cursor": "pointer",
  6807. "borderRadius": "4px",
  6808. },
  6809. "innerHTML": "提交作业"
  6810. })
  6811. let aTool = ''
  6812. let _loading = document.createElement('div')
  6813. _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;"
  6814. // _loading.id = "";
  6815. let _lchild = document.createElement('div')
  6816. let _limg = document.createElement('img')
  6817. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6818. _limg.style = "width: 26px;margin-right: 10px;"
  6819. _lchild.appendChild(_limg)
  6820. let _lspan = document.createElement('span')
  6821. _lspan.innerHTML = "上传中..."
  6822. _lchild.appendChild(_lspan)
  6823. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  6824. _loading.appendChild(_lchild)
  6825. var _box = $$('div', {
  6826. "style": {
  6827. "position": "relative",
  6828. "width": "100%",
  6829. "height": "100%",
  6830. },
  6831. })
  6832. _box.appendChild(_loading)
  6833. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6834. switch (str) {
  6835. case "whiteboard":
  6836. aTool = 1;
  6837. _iframe = $$("iframe", {
  6838. "frameborder": "no",
  6839. "border": "0",
  6840. "scrolling ": "no",
  6841. "style": {
  6842. "cssText": "border:0;width:100%;height:100%"
  6843. },
  6844. "src": "https://beta.iwb.cocorobo.cn/"
  6845. })
  6846. _box.appendChild(_iframe);
  6847. _box.appendChild(_jie);
  6848. _formdiv = new U.UF.UI.form(
  6849. "电子白板-" + _username,
  6850. _box, {
  6851. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6852. "style": {
  6853. "width": "90%",
  6854. "height": "90%",
  6855. "overflow": 'hidden'
  6856. },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, {
  6861. "style": {
  6862. "height": "36px"
  6863. }
  6864. }).form; //创建窗体
  6865. _taskbar = {
  6866. "id": str + _formdiv.id,
  6867. "style": {
  6868. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6869. },
  6870. "name": "电子白板",
  6871. "forms": _formdiv,
  6872. "click": function () {
  6873. U.MD.D.I.openApplication(str, obj, info);
  6874. }
  6875. }
  6876. break;
  6877. case "mind":
  6878. aTool = 3;
  6879. _iframe = $$("iframe", {
  6880. "frameborder": "no",
  6881. "border": "0",
  6882. "scrolling ": "no",
  6883. "style": {
  6884. "cssText": "border:0;width:100%;height:100%"
  6885. },
  6886. "src": "/kityminder-editor/dist/index.html"
  6887. })
  6888. _box.appendChild(_iframe);
  6889. _box.appendChild(_jie);
  6890. _formdiv = new U.UF.UI.form(
  6891. "思维导图-" + _username,
  6892. _box, { //"/jsmind/example/demo.html"
  6893. "id": "mind" + cid + stage + task + tool + _userid,
  6894. "style": {
  6895. "width": "90%",
  6896. "height": "90%",
  6897. "overflow": 'hidden'
  6898. },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, {
  6903. "style": {
  6904. "height": "36px"
  6905. }
  6906. }).form; //创建窗体
  6907. _taskbar = {
  6908. "id": str + _formdiv.id,
  6909. "style": {
  6910. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6911. },
  6912. "name": "思维导图",
  6913. "forms": _formdiv,
  6914. "click": function () {
  6915. U.MD.D.I.openApplication(str, obj, info);
  6916. }
  6917. }
  6918. break;
  6919. case "MindMap":
  6920. aTool = 3;
  6921. _iframe = $$("iframe", {
  6922. "frameborder": "no",
  6923. "border": "0",
  6924. "scrolling ": "no",
  6925. "style": {
  6926. "cssText": "border:0;width:100%;height:100%"
  6927. },
  6928. "src": "//cloud.cocorobo.cn/mind/"
  6929. })
  6930. _box.appendChild(_iframe);
  6931. _box.appendChild(_jie);
  6932. _formdiv = new U.UF.UI.form(
  6933. "思维导图-" + _username,
  6934. _box, { //"/jsmind/example/demo.html"
  6935. "id": "mind" + cid + stage + task + tool + _userid,
  6936. "style": {
  6937. "width": "90%",
  6938. "height": "90%",
  6939. "overflow": 'hidden'
  6940. },
  6941. "onresize": function () { }
  6942. }, {
  6943. closecallback: function () { }
  6944. }, {
  6945. "style": {
  6946. "height": "36px"
  6947. }
  6948. }).form; //创建窗体
  6949. _taskbar = {
  6950. "id": str + _formdiv.id,
  6951. "style": {
  6952. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6953. },
  6954. "name": "思维导图",
  6955. "forms": _formdiv,
  6956. "click": function () {
  6957. U.MD.D.I.openApplication(str, obj, info);
  6958. }
  6959. }
  6960. break;
  6961. case "doc":
  6962. aTool = 6;
  6963. _iframe = $$("iframe", {
  6964. "frameborder": "no",
  6965. "border": "0",
  6966. "scrolling ": "no",
  6967. "style": {
  6968. "cssText": "border:0;width:100%;height:100%"
  6969. },
  6970. "src": "/Office/Word/WordEditArea.htm"
  6971. })
  6972. _box.appendChild(_iframe);
  6973. _box.appendChild(_jie);
  6974. _formdiv = new U.UF.UI.form(
  6975. "协同文档-" + _username,
  6976. _box, {
  6977. "id": "doc" + cid + stage + task + tool + _userid,
  6978. "style": {
  6979. "width": "90%",
  6980. "height": "90%",
  6981. "overflow": 'hidden'
  6982. },
  6983. "onresize": function () { }
  6984. }, {
  6985. closecallback: function () { }
  6986. }, {
  6987. "style": {
  6988. "height": "36px"
  6989. }
  6990. }).form; //创建窗体
  6991. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6992. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6993. })
  6994. _taskbar = {
  6995. "id": str + _formdiv.id,
  6996. "style": {
  6997. "backgroundImage": "url(/img/icon/doc.png)"
  6998. },
  6999. "name": "协同文档",
  7000. "forms": _formdiv,
  7001. "click": function () {
  7002. U.MD.D.I.openApplication(str, obj, info);
  7003. }
  7004. }
  7005. break;
  7006. case "mindNetwork": //好友打开
  7007. aTool = 7;
  7008. _iframe = $$("iframe", {
  7009. "webkitallowfullscreen": "",
  7010. "mozallowfullscreen": "",
  7011. "allowfullscreen": "",
  7012. "frameborder": "no",
  7013. "border": "0",
  7014. "scrolling ": "no",
  7015. "style": {
  7016. "cssText": "border:0; width:100%; height:100%;"
  7017. },
  7018. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7019. })
  7020. _box.appendChild(_iframe);
  7021. _box.appendChild(_jie);
  7022. _formdiv = new U.UF.UI.form(
  7023. "思维网格-" + _username,
  7024. _box, {
  7025. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7026. "style": {
  7027. "width": "90%",
  7028. "height": "90%",
  7029. "overflow": 'hidden'
  7030. },
  7031. "onresize": function () { }
  7032. }, {
  7033. closecallback: function () { }
  7034. }, {
  7035. "style": {
  7036. "height": "36px"
  7037. }
  7038. }).form; //创建窗体
  7039. _taskbar = {
  7040. "id": str + _formdiv.id,
  7041. "style": {
  7042. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7043. },
  7044. "name": "思维网格",
  7045. "forms": _formdiv,
  7046. "click": function () {
  7047. U.MD.D.I.openApplication(str, obj, info);
  7048. }
  7049. }
  7050. break;
  7051. case "courseDesign":
  7052. _iframe = $$("iframe", {
  7053. "webkitallowfullscreen": "",
  7054. "mozallowfullscreen": "",
  7055. "allowfullscreen": "",
  7056. "frameborder": "no",
  7057. "border": "0",
  7058. "scrolling ": "no",
  7059. "style": {
  7060. "cssText": "border:0; width:100%; height:100%;"
  7061. },
  7062. "src": "/course-design-vue"
  7063. })
  7064. _box.appendChild(_iframe);
  7065. _box.appendChild(_jie);
  7066. _formdiv = new U.UF.UI.form(
  7067. "项目设计-" + _username,
  7068. _box, {
  7069. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7070. "style": {
  7071. "width": "90%",
  7072. "height": "90%",
  7073. "overflow": 'hidden'
  7074. },
  7075. "onresize": function () { }
  7076. }, {
  7077. closecallback: function () { }
  7078. }, {
  7079. "style": {
  7080. "height": "36px"
  7081. }
  7082. }).form; //创建窗体
  7083. _taskbar = {
  7084. "id": str + _formdiv.id,
  7085. "style": {
  7086. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7087. },
  7088. "name": "项目设计",
  7089. "forms": _formdiv,
  7090. "click": function () {
  7091. U.MD.D.I.openApplication(str, obj, info);
  7092. }
  7093. }
  7094. break;
  7095. }
  7096. const script1 = document.createElement("script");
  7097. script1.type = "text/javascript";
  7098. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7099. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7100. const script2 = document.createElement("script");
  7101. script2.type = "text/javascript";
  7102. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7103. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7104. const script3 = document.createElement("script");
  7105. script3.type = "text/javascript";
  7106. script3.charset = "UTF-8";
  7107. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7108. const script4 = document.createElement("script");
  7109. script4.type = "text/javascript";
  7110. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7111. script4.src = window.origin + "/js/Common/jietu2E.js";
  7112. if (_iframe) {
  7113. if (str == 'doc') {
  7114. _iframe = _formdiv.querySelector('iframe')
  7115. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7116. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7117. _iframe.contentWindow.document.body.appendChild(script1);
  7118. _iframe.contentWindow.document.body.appendChild(script2);
  7119. // _iframe.contentWindow.document.body.appendChild(script3);
  7120. _iframe.contentWindow.document.body.appendChild(script4);
  7121. })
  7122. if (onloadListener) {
  7123. _iframe.contentDocument.location.reload()
  7124. } else {
  7125. _iframe.contentDocument.location.reload()
  7126. }
  7127. } else if (str == 'courseDesign') {
  7128. U.UF.DL.iframeLoad(_iframe, function () {
  7129. // _iframe.contentWindow.U.MD.O.W.load();
  7130. // _iframe.contentWindow.document.body.appendChild(script1);
  7131. _iframe.contentWindow.document.body.appendChild(script2);
  7132. _iframe.contentWindow.document.body.appendChild(script4);
  7133. })
  7134. } else if (str == 'mind') {
  7135. _iframe = _formdiv.querySelector('iframe')
  7136. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7137. //
  7138. _iframe.contentWindow.document.body.appendChild(script1);
  7139. _iframe.contentWindow.document.body.appendChild(script2);
  7140. _iframe.contentWindow.document.body.appendChild(script4);
  7141. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7142. })
  7143. if (onloadListener) {
  7144. _iframe.contentDocument.location.reload()
  7145. } else {
  7146. _iframe.contentDocument.location.reload()
  7147. }
  7148. } else if (str == 'whiteboard') {
  7149. _iframe = _formdiv.querySelector('iframe')
  7150. let onloadListener = _iframe.onload = () => {
  7151. _iframe.contentWindow.document.body.appendChild(script1);
  7152. _iframe.contentWindow.document.body.appendChild(script2);
  7153. _iframe.contentWindow.document.body.appendChild(script4);
  7154. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7155. };
  7156. if (onloadListener) {
  7157. _iframe.contentDocument.location.reload()
  7158. } else {
  7159. _iframe.contentDocument.location.reload()
  7160. }
  7161. } else {
  7162. _iframe.onload = () => {
  7163. _iframe.contentWindow.document.body.appendChild(script1);
  7164. _iframe.contentWindow.document.body.appendChild(script2);
  7165. // _iframe.contentWindow.document.body.appendChild(script3);
  7166. _iframe.contentWindow.document.body.appendChild(script4);
  7167. };
  7168. }
  7169. _jie.onclick = async () => {
  7170. let text = ''
  7171. if (aTool == 1) {
  7172. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7173. } else if (aTool == 6) {
  7174. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7175. } else if (aTool == 3) {
  7176. text = await U.MD.D.I.getEditorContent(_iframe);
  7177. }
  7178. _loading.style.display = 'flex'
  7179. console.log(_loading);
  7180. var _ajs = _iframe.contentWindow.document.createElement("script");
  7181. _ajs.type = "text/javascript";
  7182. _ajs.innerHTML =
  7183. // 'console.log(' + _loading + ');\n' +
  7184. 'var _js = document.createElement("script");\n' +
  7185. '_js.type="text/javascript";\n' +
  7186. '_js.charset="UTF-8";\n' +
  7187. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7188. "_js.onload = function(){\n" +
  7189. ' var a = document.getElementsByTagName("img")\n' +
  7190. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7191. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7192. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7193. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7194. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7195. "beforeUpload_shishi(file," +
  7196. "'" +
  7197. _userid +
  7198. "'" +
  7199. ", " +
  7200. "'" +
  7201. _cid +
  7202. "'" +
  7203. ", " +
  7204. "'" +
  7205. _stage +
  7206. "'" +
  7207. ", " +
  7208. "'" +
  7209. _task +
  7210. "'" +
  7211. ", " +
  7212. "'" +
  7213. _tool +
  7214. "'" +
  7215. ", " +
  7216. "'" +
  7217. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7218. "'" +
  7219. ", " +
  7220. "'" +
  7221. aTool +
  7222. "'" +
  7223. ", " +
  7224. "`" +
  7225. text +
  7226. "`" +
  7227. ")\n" +
  7228. " });\n" +
  7229. "}\n" +
  7230. "document.head.appendChild(_js);\n";
  7231. _iframe.contentWindow.document.head.appendChild(_ajs);
  7232. }
  7233. }
  7234. }
  7235. U.MD.D.I.getEditorContent = function (iframe) {
  7236. return new Promise((resolve, reject) => {
  7237. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7238. console.log(content);
  7239. resolve(content)
  7240. });
  7241. });
  7242. }
  7243. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7244. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7245. // if (res.value[0].length > 0) {
  7246. // // resolve(res.value[0][0].text);
  7247. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7248. // $(fileInput).val('');
  7249. // });
  7250. // }
  7251. // }, [], { "type": "GET", "withCredentials": true });
  7252. var xmlhttp;
  7253. var Mac, Sn, DeviceId
  7254. if (window.XMLHttpRequest) {
  7255. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7256. xmlhttp = new XMLHttpRequest();
  7257. } else {
  7258. // IE6, IE5 浏览器执行代码
  7259. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7260. }
  7261. xmlhttp.onreadystatechange = function () {
  7262. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7263. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7264. // resolve(res.value[0][0].text);
  7265. if (type == '2') {
  7266. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7267. } else if (type == '3') {
  7268. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7269. }
  7270. } else {
  7271. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7272. }
  7273. }
  7274. }
  7275. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7276. xmlhttp.send();
  7277. }
  7278. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7279. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7280. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7281. _userinfo = US.userInfo, //登录用户信息
  7282. _userid = US.userInfo.userid //登录用户id
  7283. let _iframe;
  7284. let _cid = cid,
  7285. _stage = stage,
  7286. _task = task,
  7287. _tool = tool;
  7288. var _jie = $$("div", {
  7289. "style": {
  7290. "position": "absolute",
  7291. "bottom": "50px",
  7292. "right": "50px",
  7293. "zIndex": "9999",
  7294. "backgroundColor": "#2268bc",
  7295. "color": "#fff",
  7296. "padding": "12px 20px",
  7297. "cursor": "pointer",
  7298. "borderRadius": "4px",
  7299. },
  7300. "innerHTML": "确认并提交"
  7301. })
  7302. let aTool = ''
  7303. let _loading = document.createElement('div')
  7304. _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;"
  7305. // _loading.id = "";
  7306. let _lchild = document.createElement('div')
  7307. let _limg = document.createElement('img')
  7308. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7309. _limg.style = "width: 26px;margin-right: 10px;"
  7310. _lchild.appendChild(_limg)
  7311. let _lspan = document.createElement('span')
  7312. _lspan.innerHTML = "上传中..."
  7313. _lchild.appendChild(_lspan)
  7314. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  7315. _loading.appendChild(_lchild)
  7316. var _box = $$('div', {
  7317. "style": {
  7318. "position": "relative",
  7319. "width": "100%",
  7320. "height": "100%",
  7321. },
  7322. })
  7323. _box.appendChild(_loading)
  7324. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7325. switch (str) {
  7326. case "whiteboard":
  7327. aTool = 1;
  7328. _iframe = $$("iframe", {
  7329. "frameborder": "no",
  7330. "border": "0",
  7331. "scrolling ": "no",
  7332. "style": {
  7333. "cssText": "border:0;width:100%;height:100%"
  7334. },
  7335. "src": "https://beta.iwb.cocorobo.cn/"
  7336. })
  7337. _box.appendChild(_iframe);
  7338. _box.appendChild(_jie);
  7339. _formdiv = new U.UF.UI.form(
  7340. "电子白板",
  7341. _box, {
  7342. "id": "whiteboards" + cid + stage + task + tool,
  7343. "style": {
  7344. "width": "90%",
  7345. "height": "90%",
  7346. "overflow": 'hidden'
  7347. },
  7348. "onresize": function () { }
  7349. }, {
  7350. closecallback: function () { }
  7351. }, {
  7352. "style": {
  7353. "height": "36px"
  7354. }
  7355. }).form; //创建窗体
  7356. _taskbar = {
  7357. "id": str + _formdiv.id,
  7358. "style": {
  7359. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7360. },
  7361. "name": "电子白板",
  7362. "forms": _formdiv,
  7363. "click": function () {
  7364. U.MD.D.I.openApplication(str, obj, info);
  7365. }
  7366. }
  7367. break;
  7368. case "mind":
  7369. aTool = 3;
  7370. _iframe = $$("iframe", {
  7371. "frameborder": "no",
  7372. "border": "0",
  7373. "scrolling ": "no",
  7374. "style": {
  7375. "cssText": "border:0;width:100%;height:100%"
  7376. },
  7377. "src": "/kityminder-editor/dist/index.html"
  7378. });
  7379. _box.appendChild(_iframe);
  7380. _box.appendChild(_jie);
  7381. _formdiv = new U.UF.UI.form(
  7382. "思维导图",
  7383. _box, { //"/jsmind/example/demo.html"
  7384. "id": "minds" + cid + stage + task + tool,
  7385. "style": {
  7386. "width": "90%",
  7387. "height": "90%",
  7388. "overflow": 'hidden'
  7389. },
  7390. "onresize": function () { }
  7391. }, {
  7392. closecallback: function () { }
  7393. }, {
  7394. "style": {
  7395. "height": "36px"
  7396. }
  7397. }).form; //创建窗体
  7398. _taskbar = {
  7399. "id": str + _formdiv.id,
  7400. "style": {
  7401. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7402. },
  7403. "name": "思维导图",
  7404. "forms": _formdiv,
  7405. "click": function () {
  7406. U.MD.D.I.openApplication(str, obj, info);
  7407. }
  7408. }
  7409. break;
  7410. case "doc":
  7411. aTool = 6;
  7412. _iframe = $$("iframe", {
  7413. "frameborder": "no",
  7414. "border": "0",
  7415. "scrolling ": "no",
  7416. "style": {
  7417. "cssText": "border:0;width:100%;height:100%"
  7418. },
  7419. "src": "/Office/Word/WordEditArea.htm"
  7420. })
  7421. _box.appendChild(_iframe);
  7422. _box.appendChild(_jie);
  7423. _formdiv = new U.UF.UI.form(
  7424. "协同文档",
  7425. _box, {
  7426. "id": "docs" + cid + stage + task + tool,
  7427. "style": {
  7428. "width": "90%",
  7429. "height": "90%",
  7430. "overflow": 'hidden'
  7431. },
  7432. "onresize": function () { }
  7433. }, {
  7434. closecallback: function () { }
  7435. }, {
  7436. "style": {
  7437. "height": "36px"
  7438. }
  7439. }).form; //创建窗体
  7440. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7441. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7442. })
  7443. _taskbar = {
  7444. "id": str + _formdiv.id,
  7445. "style": {
  7446. "backgroundImage": "url(/img/icon/doc.png)"
  7447. },
  7448. "name": "协同文档",
  7449. "forms": _formdiv,
  7450. "click": function () {
  7451. U.MD.D.I.openApplication(str, obj, info);
  7452. }
  7453. }
  7454. break;
  7455. }
  7456. const script1 = document.createElement("script");
  7457. script1.type = "text/javascript";
  7458. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7459. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7460. const script2 = document.createElement("script");
  7461. script2.type = "text/javascript";
  7462. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7463. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7464. const script3 = document.createElement("script");
  7465. script3.type = "text/javascript";
  7466. script3.charset = "UTF-8";
  7467. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7468. const script4 = document.createElement("script");
  7469. script4.type = "text/javascript";
  7470. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7471. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7472. if (_iframe) {
  7473. if (str == 'doc') {
  7474. _iframe = _formdiv.querySelector('iframe')
  7475. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7476. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7477. _iframe.contentWindow.document.body.appendChild(script1);
  7478. _iframe.contentWindow.document.body.appendChild(script2);
  7479. // _iframe.contentWindow.document.body.appendChild(script3);
  7480. _iframe.contentWindow.document.body.appendChild(script4);
  7481. })
  7482. if (onloadListener) {
  7483. _iframe.contentDocument.location.reload()
  7484. } else {
  7485. _iframe.contentDocument.location.reload()
  7486. }
  7487. } else if (str == 'mind') {
  7488. _iframe = _formdiv.querySelector('iframe')
  7489. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7490. _iframe.contentWindow.document.body.appendChild(script1);
  7491. _iframe.contentWindow.document.body.appendChild(script2);
  7492. _iframe.contentWindow.document.body.appendChild(script4);
  7493. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7494. })
  7495. if (onloadListener) {
  7496. _iframe.contentDocument.location.reload()
  7497. } else {
  7498. _iframe.contentDocument.location.reload()
  7499. }
  7500. } else {
  7501. _iframe.onload = () => {
  7502. _iframe.contentWindow.document.body.appendChild(script1);
  7503. _iframe.contentWindow.document.body.appendChild(script2);
  7504. // _iframe.contentWindow.document.body.appendChild(script3);
  7505. _iframe.contentWindow.document.body.appendChild(script4);
  7506. };
  7507. }
  7508. _jie.onclick = async () => {
  7509. let text = ''
  7510. if (aTool == 6) {
  7511. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7512. } else if (aTool == 3) {
  7513. text = await U.MD.D.I.getEditorContent(_iframe);
  7514. }
  7515. _loading.style.display = 'flex'
  7516. console.log(_loading);
  7517. var _ajs = _iframe.contentWindow.document.createElement("script");
  7518. _ajs.type = "text/javascript";
  7519. _ajs.innerHTML =
  7520. // 'console.log(' + _loading + ');\n' +
  7521. 'var _js = document.createElement("script");\n' +
  7522. '_js.type="text/javascript";\n' +
  7523. '_js.charset="UTF-8";\n' +
  7524. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7525. "_js.onload = function(){\n" +
  7526. ' var a = document.getElementsByTagName("img")\n' +
  7527. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7528. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7529. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7530. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7531. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7532. "beforeUpload_shishi(file," +
  7533. "'" +
  7534. _userid +
  7535. "'" +
  7536. ", " +
  7537. "'" +
  7538. _cid +
  7539. "'" +
  7540. ", " +
  7541. "'" +
  7542. _stage +
  7543. "'" +
  7544. ", " +
  7545. "'" +
  7546. _task +
  7547. "'" +
  7548. ", " +
  7549. "'" +
  7550. _tool +
  7551. "'" +
  7552. ", " +
  7553. "'" +
  7554. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7555. "'" +
  7556. ", " +
  7557. "'" +
  7558. aTool +
  7559. "'" +
  7560. ", " +
  7561. "`" +
  7562. text +
  7563. "`" +
  7564. ")\n" +
  7565. " });\n" +
  7566. "}\n" +
  7567. "document.head.appendChild(_js);\n";
  7568. _iframe.contentWindow.document.head.appendChild(_ajs);
  7569. }
  7570. }
  7571. //U.MD.D.I.openClick(str);
  7572. //如果有任务栏信息
  7573. // if (_taskbar) {
  7574. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7575. // }
  7576. }
  7577. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7578. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7579. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7580. _userinfo = US.userInfo, //登录用户信息
  7581. _userid = US.userInfo.userid //登录用户id
  7582. let _iframe;
  7583. let _cid = cid,
  7584. _stage = stage,
  7585. _task = task,
  7586. _tool = tool;
  7587. var _jie = $$("div", {
  7588. "style": {
  7589. "position": "absolute",
  7590. "bottom": "50px",
  7591. "right": "50px",
  7592. "zIndex": "9999",
  7593. "backgroundColor": "#2268bc",
  7594. "color": "#fff",
  7595. "padding": "12px 20px",
  7596. "cursor": "pointer",
  7597. "borderRadius": "4px",
  7598. },
  7599. "innerHTML": "确认并提交"
  7600. })
  7601. let aTool = ''
  7602. let _loading = document.createElement('div')
  7603. _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;"
  7604. // _loading.id = "";
  7605. let _lchild = document.createElement('div')
  7606. let _limg = document.createElement('img')
  7607. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7608. _limg.style = "width: 26px;margin-right: 10px;"
  7609. _lchild.appendChild(_limg)
  7610. let _lspan = document.createElement('span')
  7611. _lspan.innerHTML = "上传中..."
  7612. _lchild.appendChild(_lspan)
  7613. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  7614. _loading.appendChild(_lchild)
  7615. var _box = $$('div', {
  7616. "style": {
  7617. "position": "relative",
  7618. "width": "100%",
  7619. "height": "100%",
  7620. },
  7621. })
  7622. _box.appendChild(_loading)
  7623. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7624. switch (str) {
  7625. case "whiteboard":
  7626. aTool = 1;
  7627. _iframe = $$("iframe", {
  7628. "frameborder": "no",
  7629. "border": "0",
  7630. "scrolling ": "no",
  7631. "style": {
  7632. "cssText": "border:0;width:100%;height:100%"
  7633. },
  7634. "src": "https://beta.iwb.cocorobo.cn/"
  7635. })
  7636. _box.appendChild(_iframe);
  7637. _box.appendChild(_jie);
  7638. _formdiv = new U.UF.UI.form(
  7639. "电子白板",
  7640. _box, {
  7641. "id": "whiteboards" + cid + stage + task + tool,
  7642. "style": {
  7643. "width": "90%",
  7644. "height": "90%",
  7645. "overflow": 'hidden'
  7646. },
  7647. "onresize": function () { }
  7648. }, {
  7649. closecallback: function () { }
  7650. }, {
  7651. "style": {
  7652. "height": "36px"
  7653. }
  7654. }).form; //创建窗体
  7655. _taskbar = {
  7656. "id": str + _formdiv.id,
  7657. "style": {
  7658. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7659. },
  7660. "name": "电子白板",
  7661. "forms": _formdiv,
  7662. "click": function () {
  7663. U.MD.D.I.openApplication(str, obj, info);
  7664. }
  7665. }
  7666. break;
  7667. case "mind":
  7668. aTool = 3;
  7669. _iframe = $$("iframe", {
  7670. "frameborder": "no",
  7671. "border": "0",
  7672. "scrolling ": "no",
  7673. "style": {
  7674. "cssText": "border:0;width:100%;height:100%"
  7675. },
  7676. "src": "/kityminder-editor/dist/index.html"
  7677. });
  7678. _box.appendChild(_iframe);
  7679. _box.appendChild(_jie);
  7680. _formdiv = new U.UF.UI.form(
  7681. "思维导图",
  7682. _box, { //"/jsmind/example/demo.html"
  7683. "id": "minds" + cid + stage + task + tool,
  7684. "style": {
  7685. "width": "90%",
  7686. "height": "90%",
  7687. "overflow": 'hidden'
  7688. },
  7689. "onresize": function () { }
  7690. }, {
  7691. closecallback: function () { }
  7692. }, {
  7693. "style": {
  7694. "height": "36px"
  7695. }
  7696. }).form; //创建窗体
  7697. _taskbar = {
  7698. "id": str + _formdiv.id,
  7699. "style": {
  7700. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7701. },
  7702. "name": "思维导图",
  7703. "forms": _formdiv,
  7704. "click": function () {
  7705. U.MD.D.I.openApplication(str, obj, info);
  7706. }
  7707. }
  7708. break;
  7709. case "doc":
  7710. aTool = 6;
  7711. _iframe = $$("iframe", {
  7712. "frameborder": "no",
  7713. "border": "0",
  7714. "scrolling ": "no",
  7715. "style": {
  7716. "cssText": "border:0;width:100%;height:100%"
  7717. },
  7718. "src": "/Office/Word/WordEditArea.htm"
  7719. })
  7720. _box.appendChild(_iframe);
  7721. _box.appendChild(_jie);
  7722. _formdiv = new U.UF.UI.form(
  7723. "协同文档",
  7724. _box, {
  7725. "id": "docs" + cid + stage + task + tool,
  7726. "style": {
  7727. "width": "90%",
  7728. "height": "90%",
  7729. "overflow": 'hidden'
  7730. },
  7731. "onresize": function () { }
  7732. }, {
  7733. closecallback: function () { }
  7734. }, {
  7735. "style": {
  7736. "height": "36px"
  7737. }
  7738. }).form; //创建窗体
  7739. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7740. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7741. })
  7742. _taskbar = {
  7743. "id": str + _formdiv.id,
  7744. "style": {
  7745. "backgroundImage": "url(/img/icon/doc.png)"
  7746. },
  7747. "name": "协同文档",
  7748. "forms": _formdiv,
  7749. "click": function () {
  7750. U.MD.D.I.openApplication(str, obj, info);
  7751. }
  7752. }
  7753. break;
  7754. }
  7755. const script1 = document.createElement("script");
  7756. script1.type = "text/javascript";
  7757. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7758. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7759. const script2 = document.createElement("script");
  7760. script2.type = "text/javascript";
  7761. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7762. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7763. const script3 = document.createElement("script");
  7764. script3.type = "text/javascript";
  7765. script3.charset = "UTF-8";
  7766. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7767. const script4 = document.createElement("script");
  7768. script4.type = "text/javascript";
  7769. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7770. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7771. if (_iframe) {
  7772. if (str == 'doc') {
  7773. _iframe = _formdiv.querySelector('iframe')
  7774. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7775. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7776. _iframe.contentWindow.document.body.appendChild(script1);
  7777. _iframe.contentWindow.document.body.appendChild(script2);
  7778. // _iframe.contentWindow.document.body.appendChild(script3);
  7779. _iframe.contentWindow.document.body.appendChild(script4);
  7780. })
  7781. if (onloadListener) {
  7782. _iframe.contentDocument.location.reload()
  7783. } else {
  7784. _iframe.contentDocument.location.reload()
  7785. }
  7786. } else if (str == 'mind') {
  7787. _iframe = _formdiv.querySelector('iframe')
  7788. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7789. _iframe.contentWindow.document.body.appendChild(script1);
  7790. _iframe.contentWindow.document.body.appendChild(script2);
  7791. _iframe.contentWindow.document.body.appendChild(script4);
  7792. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7793. })
  7794. if (onloadListener) {
  7795. _iframe.contentDocument.location.reload()
  7796. } else {
  7797. _iframe.contentDocument.location.reload()
  7798. }
  7799. } else {
  7800. _iframe.onload = () => {
  7801. _iframe.contentWindow.document.body.appendChild(script1);
  7802. _iframe.contentWindow.document.body.appendChild(script2);
  7803. // _iframe.contentWindow.document.body.appendChild(script3);
  7804. _iframe.contentWindow.document.body.appendChild(script4);
  7805. };
  7806. }
  7807. _jie.onclick = async () => {
  7808. let text = ''
  7809. if (aTool == 6) {
  7810. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7811. } else if (aTool == 3) {
  7812. text = await U.MD.D.I.getEditorContent(_iframe);
  7813. }
  7814. _loading.style.display = 'flex'
  7815. console.log(_loading);
  7816. var _ajs = _iframe.contentWindow.document.createElement("script");
  7817. _ajs.type = "text/javascript";
  7818. _ajs.innerHTML =
  7819. // 'console.log(' + _loading + ');\n' +
  7820. 'var _js = document.createElement("script");\n' +
  7821. '_js.type="text/javascript";\n' +
  7822. '_js.charset="UTF-8";\n' +
  7823. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7824. "_js.onload = function(){\n" +
  7825. ' var a = document.getElementsByTagName("img")\n' +
  7826. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7827. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7828. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7829. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7830. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7831. "beforeUpload_shishi(file," +
  7832. "'" +
  7833. _userid +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. _cid +
  7838. "'" +
  7839. ", " +
  7840. "'" +
  7841. _stage +
  7842. "'" +
  7843. ", " +
  7844. "'" +
  7845. _task +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. _tool +
  7850. "'" +
  7851. ", " +
  7852. "'" +
  7853. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7854. "'" +
  7855. ", " +
  7856. "'" +
  7857. aTool +
  7858. "'" +
  7859. ", " +
  7860. "`" +
  7861. text +
  7862. "`" +
  7863. ")\n" +
  7864. " });\n" +
  7865. "}\n" +
  7866. "document.head.appendChild(_js);\n";
  7867. _iframe.contentWindow.document.head.appendChild(_ajs);
  7868. }
  7869. }
  7870. //U.MD.D.I.openClick(str);
  7871. //如果有任务栏信息
  7872. // if (_taskbar) {
  7873. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7874. // }
  7875. }
  7876. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7877. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7878. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7879. _userinfo = US.userInfo, //登录用户信息
  7880. _userid = US.userInfo.userid //登录用户id
  7881. let _iframe;
  7882. let _cid = cid,
  7883. _stage = stage,
  7884. _task = task,
  7885. _tool = tool;
  7886. var _jie = $$("div", {
  7887. "style": {
  7888. "position": "absolute",
  7889. "bottom": "50px",
  7890. "right": "50px",
  7891. "zIndex": "9999",
  7892. "backgroundColor": "#2268bc",
  7893. "color": "#fff",
  7894. "padding": "12px 20px",
  7895. "cursor": "pointer",
  7896. "borderRadius": "4px",
  7897. },
  7898. "innerHTML": "上传模板"
  7899. })
  7900. let aTool = ''
  7901. let _loading = document.createElement('div')
  7902. _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;"
  7903. // _loading.id = "";
  7904. let _lchild = document.createElement('div')
  7905. let _limg = document.createElement('img')
  7906. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7907. _limg.style = "width: 26px;margin-right: 10px;"
  7908. _lchild.appendChild(_limg)
  7909. let _lspan = document.createElement('span')
  7910. _lspan.innerHTML = "上传中..."
  7911. _lchild.appendChild(_lspan)
  7912. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  7913. _loading.appendChild(_lchild)
  7914. var _box = $$('div', {
  7915. "style": {
  7916. "position": "relative",
  7917. "width": "100%",
  7918. "height": "100%",
  7919. },
  7920. })
  7921. _box.appendChild(_loading)
  7922. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7923. switch (str) {
  7924. case "whiteboard":
  7925. aTool = 1;
  7926. _iframe = $$("iframe", {
  7927. "frameborder": "no",
  7928. "border": "0",
  7929. "scrolling ": "no",
  7930. "style": {
  7931. "cssText": "border:0;width:100%;height:100%"
  7932. },
  7933. "src": "https://beta.iwb.cocorobo.cn/"
  7934. })
  7935. _box.appendChild(_iframe);
  7936. _box.appendChild(_jie);
  7937. _formdiv = new U.UF.UI.form(
  7938. "电子白板",
  7939. _box, {
  7940. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7941. "style": {
  7942. "width": "90%",
  7943. "height": "90%",
  7944. "overflow": 'hidden'
  7945. },
  7946. "onresize": function () { }
  7947. }, {
  7948. closecallback: function () { }
  7949. }, {
  7950. "style": {
  7951. "height": "36px"
  7952. }
  7953. }).form; //创建窗体
  7954. _taskbar = {
  7955. "id": str + _formdiv.id,
  7956. "style": {
  7957. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7958. },
  7959. "name": "电子白板",
  7960. "forms": _formdiv,
  7961. "click": function () {
  7962. U.MD.D.I.openApplication(str, obj, info);
  7963. }
  7964. }
  7965. break;
  7966. case "mind":
  7967. aTool = 3;
  7968. _iframe = $$("iframe", {
  7969. "frameborder": "no",
  7970. "border": "0",
  7971. "scrolling ": "no",
  7972. "style": {
  7973. "cssText": "border:0;width:100%;height:100%"
  7974. },
  7975. "src": "/kityminder-editor/dist/index.html"
  7976. });
  7977. _box.appendChild(_iframe);
  7978. _box.appendChild(_jie);
  7979. _formdiv = new U.UF.UI.form(
  7980. "思维导图",
  7981. _box, { //"/jsmind/example/demo.html"
  7982. "id": "minds_Yu" + cid + stage + task + tool,
  7983. "style": {
  7984. "width": "90%",
  7985. "height": "90%",
  7986. "overflow": 'hidden'
  7987. },
  7988. "onresize": function () { }
  7989. }, {
  7990. closecallback: function () { }
  7991. }, {
  7992. "style": {
  7993. "height": "36px"
  7994. }
  7995. }).form; //创建窗体
  7996. _taskbar = {
  7997. "id": str + _formdiv.id,
  7998. "style": {
  7999. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8000. },
  8001. "name": "思维导图",
  8002. "forms": _formdiv,
  8003. "click": function () {
  8004. U.MD.D.I.openApplication(str, obj, info);
  8005. }
  8006. }
  8007. break;
  8008. case "doc":
  8009. aTool = 6;
  8010. _iframe = $$("iframe", {
  8011. "frameborder": "no",
  8012. "border": "0",
  8013. "scrolling ": "no",
  8014. "style": {
  8015. "cssText": "border:0;width:100%;height:100%"
  8016. },
  8017. "src": "/Office/Word/WordEditArea.htm"
  8018. })
  8019. _box.appendChild(_iframe);
  8020. _box.appendChild(_jie);
  8021. _formdiv = new U.UF.UI.form(
  8022. "协同文档",
  8023. _box, {
  8024. "id": "docs_Yu" + cid + stage + task + tool,
  8025. "style": {
  8026. "width": "90%",
  8027. "height": "90%",
  8028. "overflow": 'hidden'
  8029. },
  8030. "onresize": function () { }
  8031. }, {
  8032. closecallback: function () { }
  8033. }, {
  8034. "style": {
  8035. "height": "36px"
  8036. }
  8037. }).form; //创建窗体
  8038. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8039. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8040. })
  8041. _taskbar = {
  8042. "id": str + _formdiv.id,
  8043. "style": {
  8044. "backgroundImage": "url(/img/icon/doc.png)"
  8045. },
  8046. "name": "协同文档",
  8047. "forms": _formdiv,
  8048. "click": function () {
  8049. U.MD.D.I.openApplication(str, obj, info);
  8050. }
  8051. }
  8052. break;
  8053. case "CocoPi":
  8054. aTool = 57;
  8055. _iframe = $$("iframe", {
  8056. "allowpaymentrequest": "allowpaymentrequest",
  8057. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8058. "webkitallowfullscreen": "",
  8059. "mozallowfullscreen": "",
  8060. "frameborder": "no",
  8061. "border": "0",
  8062. "scrolling ": "no",
  8063. "style": {
  8064. "cssText": "border:0;width:100%;height:100%"
  8065. },
  8066. "src": "https://pi.cocorobo.cn/"
  8067. })
  8068. _box.appendChild(_iframe);
  8069. _box.appendChild(_jie);
  8070. _formdiv = new U.UF.UI.form(
  8071. "CocoPi",
  8072. _box, {
  8073. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8074. "style": {
  8075. "width": "90%",
  8076. "height": "90%",
  8077. "overflow": 'hidden'
  8078. },
  8079. "onresize": function () { }
  8080. }, {
  8081. closecallback: function () { }
  8082. }, {
  8083. "style": {
  8084. "height": "36px"
  8085. }
  8086. }).form; //创建窗体
  8087. _taskbar = {
  8088. "id": str + _formdiv.id,
  8089. "style": {
  8090. "backgroundImage": "url(/img/icon/cocopi.png)"
  8091. },
  8092. "name": "CocoPi",
  8093. "forms": _formdiv,
  8094. "click": function () {
  8095. U.MD.D.I.openApplication(str, obj, info);
  8096. }
  8097. }
  8098. break;
  8099. }
  8100. if (_iframe) {
  8101. if (str == 'doc') {
  8102. _iframe = _formdiv.querySelector('iframe')
  8103. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8104. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8105. })
  8106. if (onloadListener) {
  8107. _iframe.contentDocument.location.reload()
  8108. } else {
  8109. _iframe.contentDocument.location.reload()
  8110. }
  8111. } else if (str == 'mind') {
  8112. _iframe = _formdiv.querySelector('iframe')
  8113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8114. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8115. })
  8116. if (onloadListener) {
  8117. _iframe.contentDocument.location.reload()
  8118. } else {
  8119. _iframe.contentDocument.location.reload()
  8120. }
  8121. } else if (str == 'whiteboard') {
  8122. _iframe = _formdiv.querySelector('iframe')
  8123. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8124. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8125. })
  8126. if (onloadListener) {
  8127. _iframe.contentDocument.location.reload()
  8128. } else {
  8129. _iframe.contentDocument.location.reload()
  8130. }
  8131. } else if (str == 'CocoPi') {
  8132. _iframe = _formdiv.querySelector('iframe')
  8133. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8134. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8135. })
  8136. if (onloadListener) {
  8137. _iframe.contentDocument.location.reload()
  8138. } else {
  8139. _iframe.contentDocument.location.reload()
  8140. }
  8141. } else {
  8142. _iframe.onload = () => { };
  8143. }
  8144. _jie.onclick = async () => {
  8145. let text = ''
  8146. let type = '2'
  8147. if (aTool == 1) {
  8148. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8149. type = '3'
  8150. } else if (aTool == 6) {
  8151. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8152. type = '1'
  8153. } else if (aTool == 3) {
  8154. text = await U.MD.D.I.getEditorContent(_iframe);
  8155. type = '2'
  8156. } else if (aTool == 57) {
  8157. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8158. type = '4'
  8159. }
  8160. _loading.style.display = 'flex'
  8161. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8162. }
  8163. }
  8164. //U.MD.D.I.openClick(str);
  8165. //如果有任务栏信息
  8166. // if (_taskbar) {
  8167. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8168. // }
  8169. }
  8170. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8171. var xmlhttp;
  8172. var Mac, Sn, DeviceId
  8173. if (window.XMLHttpRequest) {
  8174. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8175. xmlhttp = new XMLHttpRequest();
  8176. } else {
  8177. // IE6, IE5 浏览器执行代码
  8178. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8179. }
  8180. xmlhttp.onreadystatechange = function () {
  8181. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8182. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8183. // resolve(res.value[0][0].text);
  8184. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8185. }
  8186. }
  8187. }
  8188. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8189. xmlhttp.send();
  8190. }
  8191. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8192. var xmlhttp;
  8193. var Mac, Sn, DeviceId
  8194. if (window.XMLHttpRequest) {
  8195. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8196. xmlhttp = new XMLHttpRequest();
  8197. } else {
  8198. // IE6, IE5 浏览器执行代码
  8199. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8200. }
  8201. xmlhttp.onreadystatechange = function () {
  8202. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8203. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8204. // resolve(res.value[0][0].text);
  8205. if (type == '2') {
  8206. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8207. } else if (type == '3') {
  8208. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8209. } else if (type == '4') {
  8210. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8211. }
  8212. } else {
  8213. if (type == '2') {
  8214. iframe.contentWindow.editor.minder.importData('json', '')
  8215. } else if (type == '3') {
  8216. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8217. } else if (type == '4') {
  8218. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8219. }
  8220. }
  8221. }
  8222. }
  8223. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8224. xmlhttp.send();
  8225. }
  8226. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8227. var xmlhttp;
  8228. var Mac, Sn, DeviceId
  8229. if (window.XMLHttpRequest) {
  8230. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8231. xmlhttp = new XMLHttpRequest();
  8232. } else {
  8233. // IE6, IE5 浏览器执行代码
  8234. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8235. }
  8236. xmlhttp.onreadystatechange = function () {
  8237. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8238. if (xmlhttp.response) {
  8239. // resolve(res.value[0][0].text);
  8240. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8241. // $(fileInput).val('');
  8242. // });
  8243. span.innerHTML = '上传成功'
  8244. setTimeout(() => {
  8245. loading.style.display = 'none'
  8246. }, 1000);
  8247. }
  8248. }
  8249. }
  8250. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8251. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8252. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8253. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8254. // 设置请求头,表示请求体的编码格式
  8255. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8256. // 设置请求体,使用url-encoded格式的数据
  8257. }
  8258. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8259. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8260. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8261. _userinfo = US.userInfo, //登录用户信息
  8262. _userid = US.userInfo.userid //登录用户id
  8263. let _iframe;
  8264. let _cid = cid,
  8265. _stage = stage,
  8266. _task = task,
  8267. _tool = tool;
  8268. var _jie = $$("div", {
  8269. "style": {
  8270. "position": "absolute",
  8271. "bottom": "50px",
  8272. "right": "50px",
  8273. "zIndex": "9999",
  8274. "backgroundColor": "#2268bc",
  8275. "color": "#fff",
  8276. "padding": "12px 20px",
  8277. "cursor": "pointer",
  8278. "borderRadius": "4px",
  8279. },
  8280. "innerHTML": "提交作业"
  8281. })
  8282. let aTool = ''
  8283. let _loading = document.createElement('div')
  8284. _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;"
  8285. // _loading.id = "";
  8286. let _lchild = document.createElement('div')
  8287. let _limg = document.createElement('img')
  8288. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8289. _limg.style = "width: 26px;margin-right: 10px;"
  8290. _lchild.appendChild(_limg)
  8291. let _lspan = document.createElement('span')
  8292. _lspan.innerHTML = "上传中..."
  8293. _lchild.appendChild(_lspan)
  8294. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  8295. _loading.appendChild(_lchild)
  8296. var _box = $$('div', {
  8297. "style": {
  8298. "position": "relative",
  8299. "width": "100%",
  8300. "height": "100%",
  8301. },
  8302. })
  8303. _box.appendChild(_loading)
  8304. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8305. switch (str) {
  8306. case "CocoPi":
  8307. aTool = 57;
  8308. _iframe = $$("iframe", {
  8309. "allowpaymentrequest": "allowpaymentrequest",
  8310. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8311. "webkitallowfullscreen": "",
  8312. "mozallowfullscreen": "",
  8313. "frameborder": "no",
  8314. "border": "0",
  8315. "scrolling ": "no",
  8316. "style": {
  8317. "cssText": "border:0;width:100%;height:100%"
  8318. },
  8319. "src": "https://pi.cocorobo.cn/"
  8320. })
  8321. _box.appendChild(_iframe);
  8322. _box.appendChild(_jie);
  8323. _formdiv = new U.UF.UI.form(
  8324. "CocoPi",
  8325. _box, {
  8326. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8327. "style": {
  8328. "width": "90%",
  8329. "height": "90%",
  8330. "overflow": 'hidden'
  8331. },
  8332. "onresize": function () { }
  8333. }, {
  8334. closecallback: function () { }
  8335. }, {
  8336. "style": {
  8337. "height": "36px"
  8338. }
  8339. }).form; //创建窗体
  8340. _taskbar = {
  8341. "id": str + _formdiv.id,
  8342. "style": {
  8343. "backgroundImage": "url(/img/icon/cocopi.png)"
  8344. },
  8345. "name": "CocoPi",
  8346. "forms": _formdiv,
  8347. "click": function () {
  8348. U.MD.D.I.openApplication(str, obj, info);
  8349. }
  8350. }
  8351. break;
  8352. }
  8353. if (_iframe) {
  8354. if (str == 'CocoPi') {
  8355. _iframe = _formdiv.querySelector('iframe')
  8356. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8357. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8358. })
  8359. if (onloadListener) {
  8360. _iframe.contentDocument.location.reload()
  8361. } else {
  8362. _iframe.contentDocument.location.reload()
  8363. }
  8364. }
  8365. _jie.onclick = async () => {
  8366. let text = ''
  8367. if (aTool == 57) {
  8368. text = _iframe.contentWindow.getLoadXmlStr()
  8369. }
  8370. _loading.style.display = 'flex'
  8371. console.log(_loading);
  8372. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8373. _loading.style.display = 'none'
  8374. let _div = document.createElement('div')
  8375. _div.style = "width:100%;height:100%;background:#0000008f;position:fixed;top:0;left:0;z-index:99999999999999;display: flex;justify-content: center;align-items: center;"
  8376. let _inner = document.createElement('div')
  8377. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8378. _inner.innerHTML = "上传成功"
  8379. _div.appendChild(_inner)
  8380. _iframe.contentWindow.window.document.body.appendChild(_div)
  8381. _div.onclick = () => {
  8382. _iframe.contentWindow.window.document.body.removeChild(_div)
  8383. }
  8384. setTimeout(() => {
  8385. _iframe.contentWindow.window.document.body.removeChild(_div)
  8386. }, 1000);
  8387. }, [], { "type": "POST", "withCredentials": true });
  8388. }
  8389. }
  8390. }
  8391. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8392. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8393. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8394. _userid = student.userid, //登录用户id
  8395. _username = student.student //用户名字
  8396. let _iframe;
  8397. let _cid = cid,
  8398. _stage = stage,
  8399. _task = task,
  8400. _tool = tool;
  8401. var _jie = $$("div", {
  8402. "style": {
  8403. "position": "absolute",
  8404. "bottom": "50px",
  8405. "right": "50px",
  8406. "zIndex": "9999",
  8407. "backgroundColor": "#2268bc",
  8408. "color": "#fff",
  8409. "padding": "12px 20px",
  8410. "cursor": "pointer",
  8411. "borderRadius": "4px",
  8412. },
  8413. "innerHTML": "提交作业"
  8414. })
  8415. let aTool = ''
  8416. let _loading = document.createElement('div')
  8417. _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;"
  8418. // _loading.id = "";
  8419. let _lchild = document.createElement('div')
  8420. let _limg = document.createElement('img')
  8421. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8422. _limg.style = "width: 26px;margin-right: 10px;"
  8423. _lchild.appendChild(_limg)
  8424. let _lspan = document.createElement('span')
  8425. _lspan.innerHTML = "上传中..."
  8426. _lchild.appendChild(_lspan)
  8427. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  8428. _loading.appendChild(_lchild)
  8429. var _box = $$('div', {
  8430. "style": {
  8431. "position": "relative",
  8432. "width": "100%",
  8433. "height": "100%",
  8434. },
  8435. })
  8436. _box.appendChild(_loading)
  8437. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8438. switch (str) {
  8439. case "CocoPi":
  8440. aTool = 57;
  8441. _iframe = $$("iframe", {
  8442. "allowpaymentrequest": "allowpaymentrequest",
  8443. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8444. "webkitallowfullscreen": "",
  8445. "mozallowfullscreen": "",
  8446. "frameborder": "no",
  8447. "border": "0",
  8448. "scrolling ": "no",
  8449. "style": {
  8450. "cssText": "border:0;width:100%;height:100%"
  8451. },
  8452. "src": "https://pi.cocorobo.cn/"
  8453. })
  8454. _box.appendChild(_iframe);
  8455. _box.appendChild(_jie);
  8456. _formdiv = new U.UF.UI.form(
  8457. "CocoPi-" + _username,
  8458. _box, {
  8459. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8460. "style": {
  8461. "width": "90%",
  8462. "height": "90%",
  8463. "overflow": 'hidden'
  8464. },
  8465. "onresize": function () { }
  8466. }, {
  8467. closecallback: function () { }
  8468. }, {
  8469. "style": {
  8470. "height": "36px"
  8471. }
  8472. }).form; //创建窗体
  8473. _taskbar = {
  8474. "id": str + _formdiv.id,
  8475. "style": {
  8476. "backgroundImage": "url(/img/icon/cocopi.png)"
  8477. },
  8478. "name": "CocoPi",
  8479. "forms": _formdiv,
  8480. "click": function () {
  8481. U.MD.D.I.openApplication(str, obj, info);
  8482. }
  8483. }
  8484. break;
  8485. }
  8486. if (_iframe) {
  8487. if (str == 'CocoPi') {
  8488. _iframe = _formdiv.querySelector('iframe')
  8489. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8490. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8491. })
  8492. if (onloadListener) {
  8493. _iframe.contentDocument.location.reload()
  8494. } else {
  8495. _iframe.contentDocument.location.reload()
  8496. }
  8497. }
  8498. _jie.onclick = async () => {
  8499. let text = ''
  8500. if (aTool == 57) {
  8501. text = _iframe.contentWindow.getLoadXmlStr()
  8502. }
  8503. _loading.style.display = 'flex'
  8504. console.log(_loading);
  8505. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8506. _loading.style.display = 'none'
  8507. let _div = document.createElement('div')
  8508. _div.style = "width:100%;height:100%;background:#0000008f;position:fixed;top:0;left:0;z-index:99999999999999;display: flex;justify-content: center;align-items: center;"
  8509. let _inner = document.createElement('div')
  8510. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8511. _inner.innerHTML = "上传成功"
  8512. _div.appendChild(_inner)
  8513. _iframe.contentWindow.window.document.body.appendChild(_div)
  8514. _div.onclick = () => {
  8515. _iframe.contentWindow.window.document.body.removeChild(_div)
  8516. }
  8517. setTimeout(() => {
  8518. _iframe.contentWindow.window.document.body.removeChild(_div)
  8519. }, 1000);
  8520. }, [], { "type": "POST", "withCredentials": true });
  8521. }
  8522. }
  8523. }
  8524. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8525. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8526. if (res.value[0].length > 0) {
  8527. if (atool == 57) {
  8528. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8529. }
  8530. } else {
  8531. if (atool == 57) {
  8532. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8533. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8534. }
  8535. }
  8536. }, [], { "type": "POST", "withCredentials": true });
  8537. }