DeskTop.js 673 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  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": "项目管理", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.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": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. ];
  1561. //SPROUT Lab
  1562. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. ];
  1573. //010204
  1574. U.MD.D.I.x010204StudentDeskIcon = [
  1575. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailTeacherDeskIcon = [
  1582. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1583. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1585. ];
  1586. //trail
  1587. U.MD.D.I.trailStudentDeskIcon = [
  1588. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1589. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1590. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1592. ];
  1593. //010504
  1594. U.MD.D.I.x010504TeacherDeskIcon = [
  1595. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1596. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1604. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1605. ];
  1606. //010504
  1607. U.MD.D.I.x010504StudentDeskIcon = [
  1608. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. ];
  1613. //SCNUET
  1614. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1615. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1616. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1620. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1621. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1622. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1626. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1627. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1628. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1629. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1631. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1632. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1633. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1635. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1636. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1637. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1638. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1639. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1640. ];
  1641. //SCNUET
  1642. U.MD.D.I.SCNUETAdminDeskIcon = [
  1643. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1644. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1648. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1649. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1650. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1652. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1653. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1654. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1655. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1656. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1657. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1660. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1661. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1662. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1663. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1666. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1667. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1668. ];
  1669. //SCNUET
  1670. U.MD.D.I.SCNUETStudentDeskIcon = [
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. ];
  1676. //x020201
  1677. U.MD.D.I.x020201TeacherDeskIcon = [
  1678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1694. ];
  1695. //x020201
  1696. U.MD.D.I.x020201AdminDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1702. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1706. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1707. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1711. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1712. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1713. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1714. ];
  1715. //020201
  1716. U.MD.D.I.x020201StudentDeskIcon = [
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //010611
  1723. U.MD.D.I.x010611TeacherDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1727. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1732. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1733. ];
  1734. //010611
  1735. U.MD.D.I.x010611StudentDeskIcon = [
  1736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. ];
  1741. //tianyuan
  1742. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1743. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1744. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1745. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1746. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1747. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1751. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1752. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1753. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1754. ];
  1755. //010611
  1756. U.MD.D.I.tianyuanStudentDeskIcon = [
  1757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1761. ];
  1762. //320101
  1763. U.MD.D.I.x320101TeacherDeskIcon = [
  1764. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1765. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1766. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1767. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1768. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1769. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1770. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1771. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1772. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1773. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1774. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1775. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1776. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1777. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1778. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1779. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1780. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1781. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1782. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1783. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1784. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1785. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1786. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1787. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1788. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1789. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1790. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1791. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1792. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1793. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1794. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1795. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1796. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1801. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1802. ];
  1803. //320101
  1804. U.MD.D.I.x320101StudentDeskIcon = [
  1805. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. ];
  1810. //#region 桌面初始化a
  1811. /**
  1812. * 初始化桌面的起始函数
  1813. *
  1814. */
  1815. U.MD.D.I.init = function () {
  1816. if ($("#U_MD_D_K")[0]) {
  1817. //初始化桌面图标
  1818. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1819. // var clickUrl = ':12588/requestIp.php';
  1820. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1821. // U.MD.D.I.Ip = data;
  1822. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1823. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1824. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1825. // })
  1826. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1827. // })
  1828. }
  1829. }
  1830. /**
  1831. * 模式切换
  1832. *
  1833. */
  1834. U.MD.D.I.ModeCheck = function (type) {
  1835. if (US.Config.type == type) {
  1836. return
  1837. }
  1838. US.Config.type = type
  1839. $('.U_PBL_Check .active')[0].className = ''
  1840. if (type == 1) {
  1841. $('.U_PBL_Check div')[0].className = 'active'
  1842. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1843. } else {
  1844. $('.U_PBL_Check div')[1].className = 'active'
  1845. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1846. }
  1847. //初始化桌面图标
  1848. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1849. if (type == 2) {
  1850. U.MD.D.I.openApplication("project")
  1851. }
  1852. }
  1853. /**
  1854. * 隐藏任务栏
  1855. *
  1856. * @param {element} 桌面元素
  1857. */
  1858. U.MD.D.I.hiddenTaskbar = function (el) {
  1859. //任务栏位置变小
  1860. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1861. //桌面的位置变大
  1862. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1863. }
  1864. /**
  1865. * 隐藏任务栏
  1866. *
  1867. * @param {element} 桌面元素
  1868. */
  1869. U.MD.D.I.hiddenTaskbarout = function (el) {
  1870. //任务栏位置变小
  1871. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1872. //任务栏位置变化
  1873. U.selectEl(el).css({ "bottom": "-60px" });
  1874. //桌面的位置变大
  1875. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1876. }
  1877. }
  1878. /**
  1879. * 初始化打印桌面图标
  1880. *
  1881. * @param {element} 桌面元素
  1882. */
  1883. U.MD.D.I.initDesktopIcons = function (el, type) {
  1884. var i, //用于循环
  1885. _content, //桌面图标元素
  1886. _iconcontent, //桌面图标元素
  1887. _frag = $$("frag"), //定义一个碎片元素
  1888. _type = US.userInfo.type,
  1889. _org = US.userInfo.org,
  1890. _oid = US.userInfo.organizeid,
  1891. _role = US.userInfo.role,
  1892. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1893. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1894. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1895. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1896. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1897. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1898. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1899. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1900. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1901. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1902. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1903. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1904. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1905. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1906. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1907. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1908. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1909. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1910. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1911. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1912. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1913. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1914. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1915. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1916. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1917. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1918. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1919. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1920. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1921. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1922. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1923. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1924. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1925. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1926. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1927. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1928. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1929. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1930. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1931. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1932. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1933. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1934. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1935. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1936. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1937. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1938. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1939. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1940. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1941. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1942. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1943. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1944. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1945. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1946. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1947. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1948. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1949. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1950. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1951. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1952. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1953. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1954. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1955. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1956. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1957. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1958. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1959. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1960. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1961. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1962. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1963. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1964. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1965. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1966. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1967. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1968. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1969. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1970. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1971. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1972. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1973. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1974. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1975. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1976. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1977. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1978. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1979. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1980. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1981. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1982. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1983. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1984. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1985. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1986. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1987. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1988. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1989. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1990. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1991. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1992. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1993. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1994. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1995. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1996. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1997. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1998. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1999. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2000. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2001. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2002. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2003. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2004. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2005. 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','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2006. 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','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'];
  2007. //清楚桌面图标
  2008. el.innerHTML = "";
  2009. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2010. _teacherDesktopIconInfo.push(
  2011. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2012. { "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)" } },
  2013. )
  2014. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2015. }
  2016. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2017. _teacherDesktopIconInfo.push(
  2018. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2019. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2020. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2021. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2022. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2023. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2024. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2025. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2026. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2027. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2028. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2029. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2030. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2031. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2032. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2033. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2034. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2035. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2036. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2037. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2038. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2039. )
  2040. }
  2041. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2042. _teacherDesktopIconInfo.push(
  2043. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2044. )
  2045. }
  2046. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2047. // _teacherDesktopIconInfo.push(
  2048. // )
  2049. // }
  2050. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. )
  2055. }
  2056. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2057. _teacherDesktopIconInfo.push(
  2058. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2060. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2061. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2062. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2063. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2064. )
  2065. _studentDesktopIconInfo.push(
  2066. )
  2067. }
  2068. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2069. _teacherDesktopIconInfo.push(
  2070. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2071. )
  2072. _studentDesktopIconInfo.push(
  2073. )
  2074. }
  2075. //010606 组织
  2076. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2077. _teacherDesktopIconInfo.push(
  2078. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2079. )
  2080. _studentDesktopIconInfo.push(
  2081. )
  2082. }
  2083. //麒麟二中 和 民新小学
  2084. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2085. _teacherDesktopIconInfo.push(
  2086. )
  2087. }
  2088. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2089. _teacherDesktopIconInfo.push(
  2090. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2091. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2092. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2093. )
  2094. }
  2095. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2096. _hkTeacherDeskIconInfo.push(
  2097. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2098. )
  2099. }
  2100. //北师大附中(010601)
  2101. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2102. // _teacherDesktopIconInfo.push(
  2103. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2104. // )
  2105. // _studentDesktopIconInfo.push(
  2106. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2107. // )
  2108. // }
  2109. //樂善堂余近卿中學
  2110. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2111. _teacherDesktopIconInfo.push(
  2112. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2113. )
  2114. }
  2115. // Education Artificial Intelligence
  2116. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2117. _teacherDesktopIconInfo.push(
  2118. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2119. )
  2120. }
  2121. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2122. _teacherDesktopIconInfo.push(
  2123. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2124. )
  2125. }
  2126. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2127. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2128. _teacherDesktopIconInfo.push(
  2129. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2130. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2131. )
  2132. }
  2133. //麒麟二中
  2134. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2135. _studentDesktopIconInfo.push(
  2136. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2137. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2138. )
  2139. }
  2140. //万科双语
  2141. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2142. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2143. if (el.Name == '项目管理') {
  2144. el.Name = 'PBL项目'
  2145. }
  2146. return el
  2147. })
  2148. _studentDesktopIconInfo3.push(
  2149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2150. )
  2151. }
  2152. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2153. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2154. return el.Name != '魔盒识字' && el.Name != '24点'
  2155. })
  2156. }
  2157. 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) {
  2158. _studentDesktopIconInfo.push(
  2159. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2160. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2161. )
  2162. }
  2163. //循环创建桌面图标
  2164. if (type == 1) {
  2165. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2166. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2167. _content = $$("div", {
  2168. className: "U_MD_D_KO",
  2169. "onmousedown": U.UF.C.closure(function (obj) {
  2170. //防止拖动图标即打开了桌面应用
  2171. U.MD.D.click(this, obj);
  2172. }, [_studentDesktopIconInfo[i]]),
  2173. "onclick": U.UF.C.closure(function (obj) {
  2174. //防止拖动图标即打开了桌面应用
  2175. U.MD.D.click(this, obj);
  2176. }, [_studentDesktopIconInfo[i]])
  2177. }, _frag); //
  2178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2181. }
  2182. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2183. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2184. _content = $$("div", {
  2185. className: "U_MD_D_KO",
  2186. "onmousedown": U.UF.C.closure(function (obj) {
  2187. //防止拖动图标即打开了桌面应用
  2188. U.MD.D.click(this, obj);
  2189. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2190. "onclick": U.UF.C.closure(function (obj) {
  2191. //防止拖动图标即打开了桌面应用
  2192. U.MD.D.click(this, obj);
  2193. }, [_hkZJLSStudentDeskIconInfo[i]])
  2194. }, _frag); //
  2195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2198. } //
  2199. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2200. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_ytyStudentDeskIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_ytyStudentDeskIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2215. } //
  2216. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2217. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_jccssylStudentDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_jccssylStudentDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2232. }
  2233. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2234. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_scnuaiStudentDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_scnuaiStudentDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2249. }
  2250. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2251. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_caleStudentDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_caleStudentDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2268. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2269. _content = $$("div", {
  2270. className: "U_MD_D_KO",
  2271. "onmousedown": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_thuioeStudentDeskIconInfo[i]]),
  2275. "onclick": U.UF.C.closure(function (obj) {
  2276. //防止拖动图标即打开了桌面应用
  2277. U.MD.D.click(this, obj);
  2278. }, [_thuioeStudentDeskIconInfo[i]])
  2279. }, _frag); //
  2280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2283. }
  2284. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2285. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_tpcStudentDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_tpcStudentDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2300. } //
  2301. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2302. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2303. _content = $$("div", {
  2304. className: "U_MD_D_KO",
  2305. "onmousedown": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_chjyjStudentDeskIconInfo[i]]),
  2309. "onclick": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_chjyjStudentDeskIconInfo[i]])
  2313. }, _frag); //
  2314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2317. }
  2318. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2319. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2320. _content = $$("div", {
  2321. className: "U_MD_D_KO",
  2322. "onmousedown": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_szjkyStudentDeskIconInfo[i]]),
  2326. "onclick": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_szjkyStudentDeskIconInfo[i]])
  2330. }, _frag); //
  2331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2334. }
  2335. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2336. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2337. _content = $$("div", {
  2338. className: "U_MD_D_KO",
  2339. "onmousedown": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_x020201StudentDeskIconInfo[i]]),
  2343. "onclick": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_x020201StudentDeskIconInfo[i]])
  2347. }, _frag); //
  2348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2351. }
  2352. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2353. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2354. _content = $$("div", {
  2355. className: "U_MD_D_KO",
  2356. "onmousedown": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_SCNUETStudentDeskIconInfo[i]]),
  2360. "onclick": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_SCNUETStudentDeskIconInfo[i]])
  2364. }, _frag); //
  2365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2368. }
  2369. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2370. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2371. _content = $$("div", {
  2372. className: "U_MD_D_KO",
  2373. "onmousedown": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_dseiStudentDeskIconInfo[i]]),
  2377. "onclick": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_dseiStudentDeskIconInfo[i]])
  2381. }, _frag); //
  2382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2385. }
  2386. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2387. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2404. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_nsfxStudentDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_nsfxStudentDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2419. }
  2420. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2421. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_stiaStudentDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_stiaStudentDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2438. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2439. _content = $$("div", {
  2440. className: "U_MD_D_KO",
  2441. "onmousedown": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_szdjgStudentDeskIconInfo[i]]),
  2445. "onclick": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szdjgStudentDeskIconInfo[i]])
  2449. }, _frag); //
  2450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2453. }
  2454. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2455. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_x010607StudentDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x010607StudentDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2472. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_xhlyStudentDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_xhlyStudentDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2489. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2506. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_x010503StudentDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_x010503StudentDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2523. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_x010504StudentDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_x010504StudentDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2540. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010204StudentDeskIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_x010204StudentDeskIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2557. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x320101StudentDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_x320101StudentDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2574. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_trailStudentDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_trailStudentDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2589. }
  2590. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2591. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2608. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_x010608StudentDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_x010608StudentDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2625. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_x010611StudentDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_x010611StudentDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2642. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2643. _content = $$("div", {
  2644. className: "U_MD_D_KO",
  2645. "onmousedown": U.UF.C.closure(function (obj) {
  2646. //防止拖动图标即打开了桌面应用
  2647. U.MD.D.click(this, obj);
  2648. }, [_tianyuantudentDeskIconInfo[i]]),
  2649. "onclick": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_tianyuantudentDeskIconInfo[i]])
  2653. }, _frag); //
  2654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2657. }
  2658. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2659. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2660. _content = $$("div", {
  2661. className: "U_MD_D_KO",
  2662. "onmousedown": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_siesStudentDeskIconInfo[i]]),
  2666. "onclick": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_siesStudentDeskIconInfo[i]])
  2670. }, _frag); //
  2671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2674. }
  2675. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2676. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_guzmsStudentDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_guzmsStudentDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2691. }
  2692. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2693. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2694. _content = $$("div", {
  2695. className: "U_MD_D_KO",
  2696. "onmousedown": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_hkStudentDeskIconInfo[i]]),
  2700. "onclick": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_hkStudentDeskIconInfo[i]])
  2704. }, _frag); //
  2705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2708. }
  2709. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2710. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_hkaceStudentDeskIconInfo[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_hkaceStudentDeskIconInfo[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2725. }
  2726. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2727. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_BSDNSstudentDesktopIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2744. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_cocobizStudentDeskIconInfo[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_cocobizStudentDeskIconInfo[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2759. }
  2760. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2761. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_xxzjkyStudentDeskIconInfo[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2776. }
  2777. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2778. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_studentDesktopIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_studentDesktopIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2795. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_tcStudentDeskIconInfo[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_tcStudentDeskIconInfo[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2810. }
  2811. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2812. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_szscStudentDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_szscStudentDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2829. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2830. _content = $$("div", {
  2831. className: "U_MD_D_KO",
  2832. "onmousedown": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_studentDesktopIconInfo3[i]]),
  2836. "onclick": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_studentDesktopIconInfo3[i]])
  2840. }, _frag); //
  2841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2844. }
  2845. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2846. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2847. _content = $$("div", {
  2848. className: "U_MD_D_KO",
  2849. "onmousedown": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_studentDesktopIconInfo2[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_studentDesktopIconInfo2[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2861. }
  2862. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2863. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2864. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2865. continue
  2866. }
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_wanketeacherDesktopIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_wanketeacherDesktopIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2883. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_wankeAdminDesktopIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_wankeAdminDesktopIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2900. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2901. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2902. continue
  2903. }
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_scnuaiTeacherDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2920. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2921. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2922. continue
  2923. }
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_BSDNSteacherDesktopIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2940. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_scnuaiAdminDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_scnuaiAdminDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2957. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2958. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_jccssylTeacherDeskIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_jccssylTeacherDeskIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2977. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2978. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_caleTeacherDeskIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_caleTeacherDeskIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2997. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2998. _content = $$("div", {
  2999. className: "U_MD_D_KO",
  3000. "onmousedown": U.UF.C.closure(function (obj) {
  3001. //防止拖动图标即打开了桌面应用
  3002. U.MD.D.click(this, obj);
  3003. }, [_tpcOrganizerDeskIconInfo[i]]),
  3004. "onclick": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_tpcOrganizerDeskIconInfo[i]])
  3008. }, _frag); //
  3009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3012. }
  3013. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3014. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3015. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3016. continue
  3017. }
  3018. _content = $$("div", {
  3019. className: "U_MD_D_KO",
  3020. "onmousedown": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_tpcTeacherDeskIconInfo[i]]),
  3024. "onclick": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_tpcTeacherDeskIconInfo[i]])
  3028. }, _frag); //
  3029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3032. }
  3033. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3034. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3035. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3036. continue
  3037. }
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_teacherDesktopIconInfo2[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_teacherDesktopIconInfo2[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3054. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3055. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_thuioeTeacherDeskIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_thuioeTeacherDeskIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3074. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3075. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3076. continue
  3077. }
  3078. _content = $$("div", {
  3079. className: "U_MD_D_KO",
  3080. "onmousedown": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_lotechTeacherDeskIconInfo[i]]),
  3084. "onclick": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_lotechTeacherDeskIconInfo[i]])
  3088. }, _frag); //
  3089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3092. }//
  3093. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3094. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3095. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3096. continue
  3097. }
  3098. _content = $$("div", {
  3099. className: "U_MD_D_KO",
  3100. "onmousedown": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3104. "onclick": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3108. }, _frag); //
  3109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3112. }
  3113. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3114. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3115. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3116. continue
  3117. }
  3118. _content = $$("div", {
  3119. className: "U_MD_D_KO",
  3120. "onmousedown": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_siesTeacherDeskIconInfo[i]]),
  3124. "onclick": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_siesTeacherDeskIconInfo[i]])
  3128. }, _frag); //
  3129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3132. }
  3133. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3134. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3135. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3136. continue
  3137. }
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_guzmsTeacherDeskIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_guzmsTeacherDeskIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3154. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3155. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3156. continue
  3157. }
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_longhuaTeacherDeskIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_longhuaTeacherDeskIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3174. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3176. continue
  3177. }
  3178. _content = $$("div", {
  3179. className: "U_MD_D_KO",
  3180. "onmousedown": U.UF.C.closure(function (obj) {
  3181. //防止拖动图标即打开了桌面应用
  3182. U.MD.D.click(this, obj);
  3183. }, [_ytyTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_ytyTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3194. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3195. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3196. continue
  3197. }
  3198. _content = $$("div", {
  3199. className: "U_MD_D_KO",
  3200. "onmousedown": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3204. "onclick": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_yunhaiTeacherDeskIconInfo[i]])
  3208. }, _frag); //
  3209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3212. } //_hkStudentDeskIconInfo
  3213. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3214. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3215. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3216. continue
  3217. }
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3234. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3235. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3236. continue
  3237. }
  3238. _content = $$("div", {
  3239. className: "U_MD_D_KO",
  3240. "onmousedown": U.UF.C.closure(function (obj) {
  3241. //防止拖动图标即打开了桌面应用
  3242. U.MD.D.click(this, obj);
  3243. }, [_hkTeacherDeskIconInfo[i]]),
  3244. "onclick": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_hkTeacherDeskIconInfo[i]])
  3248. }, _frag); //
  3249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3252. }
  3253. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3254. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3255. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3256. continue
  3257. }
  3258. _content = $$("div", {
  3259. className: "U_MD_D_KO",
  3260. "onmousedown": U.UF.C.closure(function (obj) {
  3261. //防止拖动图标即打开了桌面应用
  3262. U.MD.D.click(this, obj);
  3263. }, [_hkaceTeacherDeskIconInfo[i]]),
  3264. "onclick": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_hkaceTeacherDeskIconInfo[i]])
  3268. }, _frag); //
  3269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3272. }
  3273. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3274. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3275. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3276. continue
  3277. }
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_cocobizTeacherDeskIconInfo[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_cocobizTeacherDeskIconInfo[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3294. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3295. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3296. continue
  3297. }
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3312. }
  3313. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3314. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_gdjgAdminDeskIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_gdjgAdminDeskIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3329. }
  3330. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3331. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3332. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3333. continue
  3334. }
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_gdjgTeacherDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_gdjgTeacherDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3349. }
  3350. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3351. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3352. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3353. continue
  3354. }
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_szherTeacherDeskIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_szherTeacherDeskIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3369. }
  3370. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3371. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_heyuannAdminDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_heyuannAdminDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3388. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3389. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_heyuanTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_heyuanTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. } //
  3407. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3408. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_dseiAdminDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_dseiAdminDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3425. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_dseiTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_dseiTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. } //
  3444. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3445. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3446. _content = $$("div", {
  3447. className: "U_MD_D_KO",
  3448. "onmousedown": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_chjyjAdminDeskIconInfo[i]]),
  3452. "onclick": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_chjyjAdminDeskIconInfo[i]])
  3456. }, _frag); //
  3457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3460. }//
  3461. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3462. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3463. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3464. continue
  3465. }
  3466. _content = $$("div", {
  3467. className: "U_MD_D_KO",
  3468. "onmousedown": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_chjyjTeacherDeskIconInfo[i]]),
  3472. "onclick": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_chjyjTeacherDeskIconInfo[i]])
  3476. }, _frag); //
  3477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3480. }
  3481. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3482. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3483. _content = $$("div", {
  3484. className: "U_MD_D_KO",
  3485. "onmousedown": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_szjkyAdminDeskIconInfo[i]]),
  3489. "onclick": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_szjkyAdminDeskIconInfo[i]])
  3493. }, _frag); //
  3494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3497. }//
  3498. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3499. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3500. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3501. continue
  3502. }
  3503. _content = $$("div", {
  3504. className: "U_MD_D_KO",
  3505. "onmousedown": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_szjkyTeacherDeskIconInfo[i]]),
  3509. "onclick": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_szjkyTeacherDeskIconInfo[i]])
  3513. }, _frag); //
  3514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3517. }
  3518. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3519. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3520. _content = $$("div", {
  3521. className: "U_MD_D_KO",
  3522. "onmousedown": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_x020201AdminDeskIconInfo[i]]),
  3526. "onclick": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_x020201AdminDeskIconInfo[i]])
  3530. }, _frag); //
  3531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3534. }//
  3535. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3536. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3537. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3538. continue
  3539. }
  3540. _content = $$("div", {
  3541. className: "U_MD_D_KO",
  3542. "onmousedown": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_x020201TeacherDeskIconInfo[i]]),
  3546. "onclick": U.UF.C.closure(function (obj) {
  3547. //防止拖动图标即打开了桌面应用
  3548. U.MD.D.click(this, obj);
  3549. }, [_x020201TeacherDeskIconInfo[i]])
  3550. }, _frag); //
  3551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3554. }
  3555. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3556. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_SCNUETAdminDeskIconInfo[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_SCNUETAdminDeskIconInfo[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3571. }//
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3573. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3574. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3575. continue
  3576. }
  3577. _content = $$("div", {
  3578. className: "U_MD_D_KO",
  3579. "onmousedown": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3583. "onclick": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_SCNUETTeacherDeskIconInfo[i]])
  3587. }, _frag); //
  3588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3591. }
  3592. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3593. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_futianAdminDeskIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_futianAdminDeskIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3610. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3611. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3612. continue
  3613. }
  3614. _content = $$("div", {
  3615. className: "U_MD_D_KO",
  3616. "onmousedown": U.UF.C.closure(function (obj) {
  3617. //防止拖动图标即打开了桌面应用
  3618. U.MD.D.click(this, obj);
  3619. }, [_futianTeacherDeskIconInfo[i]]),
  3620. "onclick": U.UF.C.closure(function (obj) {
  3621. //防止拖动图标即打开了桌面应用
  3622. U.MD.D.click(this, obj);
  3623. }, [_futianTeacherDeskIconInfo[i]])
  3624. }, _frag); //
  3625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3628. }
  3629. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3630. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3631. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3632. continue
  3633. }
  3634. _content = $$("div", {
  3635. className: "U_MD_D_KO",
  3636. "onmousedown": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_MingdeTeacherDeskIcon[i]]),
  3640. "onclick": U.UF.C.closure(function (obj) {
  3641. //防止拖动图标即打开了桌面应用
  3642. U.MD.D.click(this, obj);
  3643. }, [_MingdeTeacherDeskIcon[i]])
  3644. }, _frag); //
  3645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3648. }
  3649. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3650. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3651. _content = $$("div", {
  3652. className: "U_MD_D_KO",
  3653. "onmousedown": U.UF.C.closure(function (obj) {
  3654. //防止拖动图标即打开了桌面应用
  3655. U.MD.D.click(this, obj);
  3656. }, [_lhsAdminDesktopIconInfo[i]]),
  3657. "onclick": U.UF.C.closure(function (obj) {
  3658. //防止拖动图标即打开了桌面应用
  3659. U.MD.D.click(this, obj);
  3660. }, [_lhsAdminDesktopIconInfo[i]])
  3661. }, _frag); //
  3662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3665. }
  3666. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3667. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3668. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3669. continue
  3670. }
  3671. _content = $$("div", {
  3672. className: "U_MD_D_KO",
  3673. "onmousedown": U.UF.C.closure(function (obj) {
  3674. //防止拖动图标即打开了桌面应用
  3675. U.MD.D.click(this, obj);
  3676. }, [_lhsteacherDesktopIconInfo[i]]),
  3677. "onclick": U.UF.C.closure(function (obj) {
  3678. //防止拖动图标即打开了桌面应用
  3679. U.MD.D.click(this, obj);
  3680. }, [_lhsteacherDesktopIconInfo[i]])
  3681. }, _frag); //
  3682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3685. }
  3686. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3687. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3688. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3689. continue
  3690. }
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. "onmousedown": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3697. "onclick": U.UF.C.closure(function (obj) {
  3698. //防止拖动图标即打开了桌面应用
  3699. U.MD.D.click(this, obj);
  3700. }, [_zhoujiateacherDesktopIconInfo[i]])
  3701. }, _frag); //
  3702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3705. }
  3706. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3707. for (i = 0; i < _hanDeskIcon.length; i++) {
  3708. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3709. continue
  3710. }
  3711. _content = $$("div", {
  3712. className: "U_MD_D_KO",
  3713. "onmousedown": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_hanDeskIcon[i]]),
  3717. "onclick": U.UF.C.closure(function (obj) {
  3718. //防止拖动图标即打开了桌面应用
  3719. U.MD.D.click(this, obj);
  3720. }, [_hanDeskIcon[i]])
  3721. }, _frag); //
  3722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3725. }
  3726. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3727. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3728. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3729. continue
  3730. }
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_orgStemDeskIcon[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_orgStemDeskIcon[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3745. }
  3746. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3747. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3748. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_szulsDeskIcon[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_szulsDeskIcon[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3767. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3768. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3769. continue
  3770. }
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_orgDesktopIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖动图标即打开了桌面应用
  3779. U.MD.D.click(this, obj);
  3780. }, [_orgDesktopIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3785. }
  3786. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3787. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3788. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_schoolDesktopIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_schoolDesktopIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3807. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3808. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_GMteacherDesktopIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_GMteacherDesktopIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3825. }
  3826. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3827. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3828. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3829. continue
  3830. }
  3831. _content = $$("div", {
  3832. className: "U_MD_D_KO",
  3833. "onmousedown": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_SONGteacherDesktopIconInfo[i]]),
  3837. "onclick": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_SONGteacherDesktopIconInfo[i]])
  3841. }, _frag); //
  3842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3845. }
  3846. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3847. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3848. _content = $$("div", {
  3849. className: "U_MD_D_KO",
  3850. "onmousedown": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_GMstudentDesktopIconInfo[i]]),
  3854. "onclick": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_GMstudentDesktopIconInfo[i]])
  3858. }, _frag); //
  3859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3862. }
  3863. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3864. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3865. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3866. continue
  3867. }
  3868. _content = $$("div", {
  3869. className: "U_MD_D_KO",
  3870. "onmousedown": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_tcTeacherDeskIconInfo[i]]),
  3874. "onclick": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_tcTeacherDeskIconInfo[i]])
  3878. }, _frag); //
  3879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3882. }
  3883. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3884. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3885. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3886. continue
  3887. }
  3888. _content = $$("div", {
  3889. className: "U_MD_D_KO",
  3890. "onmousedown": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_tcOrganizerDeskIconInfo[i]]),
  3894. "onclick": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_tcOrganizerDeskIconInfo[i]])
  3898. }, _frag); //
  3899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3902. }
  3903. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3904. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3905. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3906. continue
  3907. }
  3908. _content = $$("div", {
  3909. className: "U_MD_D_KO",
  3910. "onmousedown": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_szscTeacherDeskIconInfo[i]]),
  3914. "onclick": U.UF.C.closure(function (obj) {
  3915. //防止拖动图标即打开了桌面应用
  3916. U.MD.D.click(this, obj);
  3917. }, [_szscTeacherDeskIconInfo[i]])
  3918. }, _frag); //
  3919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3922. }
  3923. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3924. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3925. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3926. continue
  3927. }
  3928. _content = $$("div", {
  3929. className: "U_MD_D_KO",
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_szscOrganizerDeskIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_szscOrganizerDeskIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3942. }
  3943. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3944. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3945. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3946. continue
  3947. }
  3948. _content = $$("div", {
  3949. className: "U_MD_D_KO",
  3950. "onmousedown": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_nsfxTeacherDeskIconInfo[i]]),
  3954. "onclick": U.UF.C.closure(function (obj) {
  3955. //防止拖动图标即打开了桌面应用
  3956. U.MD.D.click(this, obj);
  3957. }, [_nsfxTeacherDeskIconInfo[i]])
  3958. }, _frag); //
  3959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3962. }
  3963. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3964. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3965. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3966. continue
  3967. }
  3968. _content = $$("div", {
  3969. className: "U_MD_D_KO",
  3970. "onmousedown": U.UF.C.closure(function (obj) {
  3971. //防止拖动图标即打开了桌面应用
  3972. U.MD.D.click(this, obj);
  3973. }, [_stiaTeacherDeskIconInfo[i]]),
  3974. "onclick": U.UF.C.closure(function (obj) {
  3975. //防止拖动图标即打开了桌面应用
  3976. U.MD.D.click(this, obj);
  3977. }, [_stiaTeacherDeskIconInfo[i]])
  3978. }, _frag); //
  3979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3982. }
  3983. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3984. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3985. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3986. continue
  3987. }
  3988. _content = $$("div", {
  3989. className: "U_MD_D_KO",
  3990. "onmousedown": U.UF.C.closure(function (obj) {
  3991. //防止拖动图标即打开了桌面应用
  3992. U.MD.D.click(this, obj);
  3993. }, [_szdjgTeacherDeskIconInfo[i]]),
  3994. "onclick": U.UF.C.closure(function (obj) {
  3995. //防止拖动图标即打开了桌面应用
  3996. U.MD.D.click(this, obj);
  3997. }, [_szdjgTeacherDeskIconInfo[i]])
  3998. }, _frag); //
  3999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4002. }
  4003. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4004. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4005. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4006. continue
  4007. }
  4008. _content = $$("div", {
  4009. className: "U_MD_D_KO",
  4010. "onmousedown": U.UF.C.closure(function (obj) {
  4011. //防止拖动图标即打开了桌面应用
  4012. U.MD.D.click(this, obj);
  4013. }, [_x010607TeacherDeskIconInfo[i]]),
  4014. "onclick": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_x010607TeacherDeskIconInfo[i]])
  4018. }, _frag); //
  4019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4022. }
  4023. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4024. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4025. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4026. continue
  4027. }
  4028. _content = $$("div", {
  4029. className: "U_MD_D_KO",
  4030. "onmousedown": U.UF.C.closure(function (obj) {
  4031. //防止拖动图标即打开了桌面应用
  4032. U.MD.D.click(this, obj);
  4033. }, [_xhlyTeacherDeskIconInfo[i]]),
  4034. "onclick": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_xhlyTeacherDeskIconInfo[i]])
  4038. }, _frag); //
  4039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4042. }
  4043. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4044. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4045. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4046. continue
  4047. }
  4048. _content = $$("div", {
  4049. className: "U_MD_D_KO",
  4050. "onmousedown": U.UF.C.closure(function (obj) {
  4051. //防止拖动图标即打开了桌面应用
  4052. U.MD.D.click(this, obj);
  4053. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4054. "onclick": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4058. }, _frag); //
  4059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4062. }
  4063. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4064. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4065. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4066. continue
  4067. }
  4068. _content = $$("div", {
  4069. className: "U_MD_D_KO",
  4070. "onmousedown": U.UF.C.closure(function (obj) {
  4071. //防止拖动图标即打开了桌面应用
  4072. U.MD.D.click(this, obj);
  4073. }, [_x010503TeacherDeskIconInfo[i]]),
  4074. "onclick": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_x010503TeacherDeskIconInfo[i]])
  4078. }, _frag); //
  4079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4082. }
  4083. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4084. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4085. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4086. continue
  4087. }
  4088. _content = $$("div", {
  4089. className: "U_MD_D_KO",
  4090. "onmousedown": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_x010504TeacherDeskIconInfo[i]]),
  4094. "onclick": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_x010504TeacherDeskIconInfo[i]])
  4098. }, _frag); //
  4099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4102. }
  4103. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4104. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4105. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4106. continue
  4107. }
  4108. _content = $$("div", {
  4109. className: "U_MD_D_KO",
  4110. "onmousedown": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_x010204TeacherDeskIconInfo[i]]),
  4114. "onclick": U.UF.C.closure(function (obj) {
  4115. //防止拖动图标即打开了桌面应用
  4116. U.MD.D.click(this, obj);
  4117. }, [_x010204TeacherDeskIconInfo[i]])
  4118. }, _frag); //
  4119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4122. }
  4123. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4124. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4125. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4126. continue
  4127. }
  4128. _content = $$("div", {
  4129. className: "U_MD_D_KO",
  4130. "onmousedown": U.UF.C.closure(function (obj) {
  4131. //防止拖动图标即打开了桌面应用
  4132. U.MD.D.click(this, obj);
  4133. }, [_x320101TeacherDeskIconInfo[i]]),
  4134. "onclick": U.UF.C.closure(function (obj) {
  4135. //防止拖动图标即打开了桌面应用
  4136. U.MD.D.click(this, obj);
  4137. }, [_x320101TeacherDeskIconInfo[i]])
  4138. }, _frag); //
  4139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4142. }
  4143. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4144. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4145. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4146. continue
  4147. }
  4148. _content = $$("div", {
  4149. className: "U_MD_D_KO",
  4150. "onmousedown": U.UF.C.closure(function (obj) {
  4151. //防止拖动图标即打开了桌面应用
  4152. U.MD.D.click(this, obj);
  4153. }, [_trailTeacherDeskIconInfo[i]]),
  4154. "onclick": U.UF.C.closure(function (obj) {
  4155. //防止拖动图标即打开了桌面应用
  4156. U.MD.D.click(this, obj);
  4157. }, [_trailTeacherDeskIconInfo[i]])
  4158. }, _frag); //
  4159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4162. }
  4163. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4164. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4165. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4166. continue
  4167. }
  4168. _content = $$("div", {
  4169. className: "U_MD_D_KO",
  4170. "onmousedown": U.UF.C.closure(function (obj) {
  4171. //防止拖动图标即打开了桌面应用
  4172. U.MD.D.click(this, obj);
  4173. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4174. "onclick": U.UF.C.closure(function (obj) {
  4175. //防止拖动图标即打开了桌面应用
  4176. U.MD.D.click(this, obj);
  4177. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4178. }, _frag); //
  4179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4182. }
  4183. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4184. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4185. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4186. continue
  4187. }
  4188. _content = $$("div", {
  4189. className: "U_MD_D_KO",
  4190. "onmousedown": U.UF.C.closure(function (obj) {
  4191. //防止拖动图标即打开了桌面应用
  4192. U.MD.D.click(this, obj);
  4193. }, [_x010608TeacherDeskIconInfo[i]]),
  4194. "onclick": U.UF.C.closure(function (obj) {
  4195. //防止拖动图标即打开了桌面应用
  4196. U.MD.D.click(this, obj);
  4197. }, [_x010608TeacherDeskIconInfo[i]])
  4198. }, _frag); //
  4199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4202. }
  4203. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4204. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4205. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4206. continue
  4207. }
  4208. _content = $$("div", {
  4209. className: "U_MD_D_KO",
  4210. "onmousedown": U.UF.C.closure(function (obj) {
  4211. //防止拖动图标即打开了桌面应用
  4212. U.MD.D.click(this, obj);
  4213. }, [_x010611TeacherDeskIconInfo[i]]),
  4214. "onclick": U.UF.C.closure(function (obj) {
  4215. //防止拖动图标即打开了桌面应用
  4216. U.MD.D.click(this, obj);
  4217. }, [_x010611TeacherDeskIconInfo[i]])
  4218. }, _frag); //
  4219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4222. }
  4223. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4224. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4225. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4226. continue
  4227. }
  4228. _content = $$("div", {
  4229. className: "U_MD_D_KO",
  4230. "onmousedown": U.UF.C.closure(function (obj) {
  4231. //防止拖动图标即打开了桌面应用
  4232. U.MD.D.click(this, obj);
  4233. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4234. "onclick": U.UF.C.closure(function (obj) {
  4235. //防止拖动图标即打开了桌面应用
  4236. U.MD.D.click(this, obj);
  4237. }, [_tianyuanTeacherDeskIconInfo[i]])
  4238. }, _frag); //
  4239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4242. }
  4243. } else {
  4244. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4245. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4246. continue
  4247. }
  4248. _content = $$("div", {
  4249. className: "U_MD_D_KO",
  4250. "onmousedown": U.UF.C.closure(function (obj) {
  4251. //防止拖动图标即打开了桌面应用
  4252. U.MD.D.click(this, obj);
  4253. }, [_teacherDesktopIconInfo[i]]),
  4254. "onclick": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_teacherDesktopIconInfo[i]])
  4258. }, _frag); //
  4259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4262. }
  4263. }
  4264. } else {
  4265. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4266. _content = $$("div", {
  4267. className: "U_MD_D_KO",
  4268. style: { 'width': '124px', 'height': '145px' },
  4269. "onmousedown": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_easyDesktopIconInfo[i]]),
  4273. "onclick": U.UF.C.closure(function (obj) {
  4274. //防止拖动图标即打开了桌面应用
  4275. U.MD.D.click(this, obj);
  4276. }, [_easyDesktopIconInfo[i]])
  4277. }, _frag); //
  4278. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4281. }
  4282. }
  4283. if (type == 1) {
  4284. //加载好后给图标定位
  4285. U.MD.D.iconPostion($(_frag).Child());
  4286. } else {
  4287. //加载好后给图标定位
  4288. U.MD.D.iconPostion2($(_frag).Child());
  4289. }
  4290. //把图标加载到页面
  4291. el.appendChild(_frag);
  4292. }
  4293. /**
  4294. * 显示任务栏
  4295. *
  4296. * @param {element} 桌面元素
  4297. */
  4298. U.MD.D.I.displayTaskbar = function (el) {
  4299. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4300. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4301. //任务栏位置变化
  4302. U.selectEl(el).css({ "bottom": "0px" });
  4303. //桌面位置变话
  4304. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4305. }
  4306. }
  4307. //#region 桌面图标拖动逻辑
  4308. /**
  4309. * 桌面排列图标
  4310. *
  4311. * @param {element} 桌面元素
  4312. * @param {object} 上下相距的距离
  4313. * @param {object} 左右相距的距离
  4314. * @return {object} 命名空间
  4315. */
  4316. U.MD.D.iconPostion = function (childs, top, left) {
  4317. var i; //用于循环处理
  4318. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4319. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4320. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4321. for (i = 0; i < childs.length; i++) {
  4322. //如果竖排top超过了范围处理
  4323. if (top + 95 > US.height - 10) {
  4324. //left超过了页面范围处理,则向上重叠打印处理
  4325. if ((left + 180) > US.width) {
  4326. top -= 110;
  4327. left -= 90;
  4328. }
  4329. //没有超过范围,那么left+90添加到下一个竖排打印
  4330. else {
  4331. left += 90;
  4332. top = 15;
  4333. };
  4334. }
  4335. //给图标的位置赋值
  4336. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4337. if (i < childs.length - 1) {
  4338. //页面图标每次向下加95
  4339. top += 95;
  4340. }
  4341. }
  4342. //返回最后调用的图标的位置
  4343. return [top, left];
  4344. }
  4345. /**
  4346. * 桌面排列图标
  4347. *
  4348. * @param {element} 桌面元素
  4349. * @param {object} 上下相距的距离
  4350. * @param {object} 左右相距的距离
  4351. * @return {object} 命名空间
  4352. */
  4353. U.MD.D.iconPostion2 = function (childs, top, left) {
  4354. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4355. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4356. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4357. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4358. for (i = 0; i < childs.length; i++) {
  4359. //如果竖排top超过了范围处理
  4360. if (left + 150 > US.width - 10) {
  4361. //left超过了页面范围处理,则向上重叠打印处理
  4362. if ((top + 180) > US.Height) {
  4363. top -= 150;
  4364. left -= 150;
  4365. }
  4366. //没有超过范围,那么left+90添加到下一个竖排打印
  4367. else {
  4368. top += 150;
  4369. left = ol;
  4370. };
  4371. }
  4372. //给图标的位置赋值
  4373. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4374. if (i < childs.length - 1) {
  4375. //页面图标每次向下加95
  4376. left += 150;
  4377. }
  4378. }
  4379. //返回最后调用的图标的位置
  4380. return [top, left];
  4381. }
  4382. /**
  4383. * 桌面点击事件逻辑
  4384. *
  4385. * @param {element} 桌面元素
  4386. * @param {object} 上下相距的距离
  4387. * @param {object} 左右相距的距离
  4388. * @return {object} 命名空间
  4389. */
  4390. U.MD.D.click = function (el, obj) {
  4391. var _buttonnumber = event.button; //点击的按钮的事件值
  4392. var _userinfo = US.userInfo;
  4393. U.UF.EV.stopBubble(); //阻止向上冒泡
  4394. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4395. if (_buttonnumber < 2) {
  4396. //如果是click事件的处理
  4397. if (event.type == "click") {
  4398. //如果元素在mousemove事件中没有移动则出发click事件
  4399. if (!U.MD.D.I.IsDrag) {
  4400. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4401. U.alert("请先登录您的账号!");
  4402. setTimeout(() => {
  4403. U.MD.U.L.login();
  4404. }, 2000);
  4405. } else {
  4406. //打开应用处理
  4407. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4408. }
  4409. }
  4410. }
  4411. //如果是mouse事件的处理
  4412. else {
  4413. if (US.Config.type == '1') {
  4414. //拖动处理,添加拖动和拖动结束事件
  4415. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4416. }
  4417. }
  4418. U.MD.D.I.IsDrag = false;
  4419. }
  4420. }
  4421. /**
  4422. * 拖动的处理
  4423. *
  4424. */
  4425. U.MD.D.iconMove = function () {
  4426. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4427. U.MD.D.I.IsDrag = true;
  4428. }
  4429. /**
  4430. * 拖动结束后,这里是定位处理,以网状的形式定位
  4431. *
  4432. * @param {element} 拖动的元素
  4433. * @return {object} 命名空间
  4434. */
  4435. U.MD.D.iconUp = function (el) {
  4436. var _top = 15,
  4437. _left = 20,
  4438. _margin,
  4439. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4440. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4441. if (_positioninfo["OT"] > 15) {
  4442. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4443. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4444. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4445. }
  4446. if (_positioninfo["OL"] > 20) {
  4447. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4448. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4449. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4450. }
  4451. //while循环判断么一个重叠的元素
  4452. do {
  4453. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4454. _top = _positioninfo[0] + 95; //得到定位后的top
  4455. _left = _positioninfo[1]; //得到定位后的left
  4456. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4457. }
  4458. /**
  4459. * 判断拖动后图标是否重叠
  4460. *
  4461. * @param {element} 拖动的元素
  4462. * @param {element} 桌面所有的元素
  4463. * @param {array} 拖动元素的位置
  4464. ----------[0] 上 top
  4465. ----------[1] 左 left
  4466. * @return {object} 命名空间
  4467. */
  4468. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4469. //循环所有的图标
  4470. for (var i = 0; i < childs.length; i++) {
  4471. //判断有没有和该图标诶子重叠的元素
  4472. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4473. return childs[i]; //如果有返回
  4474. }
  4475. }
  4476. }
  4477. //#endregion
  4478. //#endregion
  4479. //#region 桌面应用
  4480. /**
  4481. * 打开应用
  4482. *
  4483. * @param {string} 类型
  4484. -----------------Disk 网盘系统
  4485. -----------------PDisk 学习系统网盘
  4486. -----------------Poto 图片
  4487. -----------------Video 视频
  4488. -----------------Music 音乐
  4489. -----------------Word word
  4490. -----------------Excel excel
  4491. -----------------Txt 记事本
  4492. -----------------PB 学习系统
  4493. -----------------Blog 朋友圈系统
  4494. -----------------FTP ftp系统
  4495. -----------------Group 好友群
  4496. -----------------SY 首页系统
  4497. -----------------Set 个人设置
  4498. -----------------XSet 系统设置
  4499. -----------------App 我们所有的app
  4500. -----------------BC c.1473.cn 平台
  4501. -----------------CWeb d.1473.cn 变成平台
  4502. -----------------其他的外联系统 我们统一用iframe打开
  4503. * @param {array} 类型
  4504. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4505. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4506. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4507. 如果第一个参数为其他,则无第二个参数
  4508. * @returns {array}
  4509. */
  4510. window.addEventListener('message', function (e) { // 监听 message 事件
  4511. // alert(e.data.type);
  4512. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4513. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4514. //3是展示全部阶段 2学生 1老师 4专家
  4515. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4516. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4517. //3是展示全部阶段 2学生 1老师 4专家
  4518. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4519. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4520. //3是展示全部阶段 2学生 1老师 4专家
  4521. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4522. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4523. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4524. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4525. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4526. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4527. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4528. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4529. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4530. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4531. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4532. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4533. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4534. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4535. //3是展示全部阶段 2学生 1老师 4专家
  4536. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4537. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4538. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4539. U.MD.D.I.selectUser();
  4540. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4541. var _formel = document.getElementById("study");
  4542. U.UF.F.windowZooming(_formel);
  4543. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4544. var _formel = document.getElementById("studyDetail");
  4545. U.UF.F.windowZooming(_formel);
  4546. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4547. var _formel = document.getElementById("studyDetail");
  4548. U.UF.F.windowZooming(_formel);
  4549. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4550. var _formel = document.getElementById("studentStudy");
  4551. U.UF.F.windowZooming(_formel);
  4552. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4553. // var _formel = document.getElementById("study");
  4554. //如果最大化了,那么就把他缩小
  4555. // if (_formel.ismaximize) {
  4556. // return;
  4557. // }
  4558. // U.UF.F.windowZooming(_formel);
  4559. // U.UF.F.topWindow(_formel);
  4560. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4561. // var _formel = document.getElementById("studyDetail");
  4562. //如果最大化了,那么就把他缩小
  4563. // if (_formel.ismaximize) {
  4564. // return;
  4565. // }
  4566. // U.UF.F.windowZooming(_formel);
  4567. // U.UF.F.topWindow(_formel);
  4568. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4569. // var _formel = document.getElementById("studentStudy");
  4570. // if (_formel.ismaximize) {
  4571. // return;
  4572. // }
  4573. // U.UF.F.windowZooming(_formel);
  4574. // U.UF.F.topWindow(_formel);
  4575. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4576. var _formel = document.getElementById("study");
  4577. // if (_formel.ismaximize) {
  4578. // return;
  4579. // }
  4580. // U.UF.F.windowZooming(_formel);
  4581. U.UF.F.topWindow(_formel);
  4582. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4583. var _formel = document.getElementById("studentIndex");
  4584. U.UF.F.windowZooming(_formel);
  4585. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4586. var _formel = document.getElementById("studyDetailS");
  4587. U.UF.F.windowZooming(_formel);
  4588. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4589. var _formel = document.getElementById("studioIndex");
  4590. U.UF.F.windowZooming(_formel);
  4591. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4592. var _formel = document.getElementById("studyDetailStudio");
  4593. U.UF.F.windowZooming(_formel);
  4594. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4595. var _formel = document.getElementById("studyDetailStudio");
  4596. U.UF.F.windowZooming(_formel);
  4597. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4598. var _formel = document.getElementById("studyDetailNT");
  4599. U.UF.F.windowZooming(_formel);
  4600. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4601. var _formel = document.getElementById("studyDetailS");
  4602. U.UF.F.windowZooming(_formel);
  4603. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4604. var _formel = document.getElementById("studyDetailS");
  4605. U.UF.F.topWindow(_formel);
  4606. } else if (e.data.tools && e.data.tools == "1") {
  4607. // U.MD.D.I.openApplication("whiteboard")
  4608. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "2") {
  4610. U.MD.D.I.openApplication("note")
  4611. } else if (e.data.tools && e.data.tools == "3") {
  4612. // U.MD.D.I.openApplication("mind")
  4613. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4614. } else if (e.data.tools && e.data.tools == "4") {
  4615. U.MD.D.I.openApplication("investigation")
  4616. } else if (e.data.tools && e.data.tools == "6") {
  4617. // U.MD.D.I.openApplication("doc")
  4618. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4619. } else if (e.data.tools && e.data.tools == "7") {
  4620. // U.MD.D.I.openApplication("mindNetwork")
  4621. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4622. } else if (e.data.tools && e.data.tools == "8") {
  4623. U.MD.D.I.openApplication("library")
  4624. } else if (e.data.tools && e.data.tools == "17") {
  4625. U.MD.D.I.openApplication("stuLibrary")
  4626. } else if (e.data.tools && e.data.tools == "18") {
  4627. U.MD.D.I.openApplication("train")
  4628. } else if (e.data.tools && e.data.tools == "21") {
  4629. U.MD.D.I.openApplication("program")
  4630. } else if (e.data.tools && e.data.tools == "22") {
  4631. U.MD.D.I.openApplication("AIprogram2")
  4632. } else if (e.data.tools && e.data.tools == "23") {
  4633. U.MD.D.I.openApplication("Pythonprogram")
  4634. } else if (e.data.tools && e.data.tools == "24") {
  4635. U.MD.D.I.openApplication("AIprogram")
  4636. } else if (e.data.tools && e.data.tools == "25") {
  4637. U.MD.D.I.openApplication("sys")
  4638. } else if (e.data.tools && e.data.tools == "26") {
  4639. // U.MD.D.I.openApplication("courseDesign")
  4640. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4641. } else if (e.data.tools && e.data.tools == "31") {
  4642. U.MD.D.I.openApplication("netWorkPanel")
  4643. } else if (e.data.tools && e.data.tools == "32") {
  4644. U.MD.D.I.openApplication("codeEdit")
  4645. } else if (e.data.tools && e.data.tools == "57") {
  4646. U.MD.D.I.openApplication("CocoPi")
  4647. } else if (e.data.tools && e.data.tools == "63") {
  4648. U.MD.D.I.openApplication("Wood")
  4649. } else if (e.data.tools && e.data.tools == "58") {
  4650. U.MD.D.I.openApplication("car")
  4651. } else if (e.data.tools && e.data.tools == "59") {
  4652. U.MD.D.I.openApplication("lineSearch")
  4653. } else if (e.data.tools && e.data.tools == "60") {
  4654. U.MD.D.I.openApplication("deepLearning")
  4655. } else if (e.data.tools && e.data.tools == "61") {
  4656. U.MD.D.I.openApplication("allHistory")
  4657. } else if (e.data.tools && e.data.tools == "28") {
  4658. U.MD.D.I.openApplication("translation")
  4659. } else if (e.data.tools && e.data.tools == "37") {
  4660. U.MD.D.I.openApplication("mohe")
  4661. } else if (e.data.tools && e.data.tools == "38") {
  4662. U.MD.D.I.openApplication("24game")
  4663. } else if (e.data.tools && e.data.tools == "39") {
  4664. U.MD.D.I.openApplication("GeoGebra")
  4665. } else if (e.data.tools && e.data.tools == "43") {
  4666. U.MD.D.I.openApplication("studentEvaluate")
  4667. } else if (e.data.tools && e.data.tools == "44") {
  4668. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4669. } else if (e.data.tools && e.data.tools == "46") {
  4670. U.MD.D.I.openApplication("project")
  4671. } else if (e.data.tools && e.data.tools == "71") {
  4672. U.MD.D.I.openApplication("aigptCourse")
  4673. } else if (e.data.tools && e.data.tools == "1s") {
  4674. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4675. } else if (e.data.tools && e.data.tools == "3s") {
  4676. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4677. } else if (e.data.tools && e.data.tools == "6s") {
  4678. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "1studio") {
  4680. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4681. } else if (e.data.tools && e.data.tools == "3studio") {
  4682. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "6studio") {
  4684. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4685. } else if (e.data.tools && e.data.tools == "3y") {
  4686. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4687. } else if (e.data.tools && e.data.tools == "1y") {
  4688. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4689. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4690. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4691. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4692. U.MD.D.I.openApplication("AIAnalyse")
  4693. } else if (e.data.tools && e.data.tools == "1teacher") {
  4694. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4695. } else if (e.data.tools && e.data.tools == "3teacher") {
  4696. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4697. } else if (e.data.tools && e.data.tools == "7teacher") {
  4698. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4699. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4700. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4701. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4702. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4703. } else if (e.data.tools && e.data.tools == "1E") {
  4704. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4705. } else if (e.data.tools && e.data.tools == "3E") {
  4706. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4707. } else if (e.data.tools && e.data.tools == "57y") {
  4708. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4709. } else if (e.data.tools && e.data.tools == "57u") {
  4710. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4711. } else if (e.data.tools && e.data.tools == "57teacher") {
  4712. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4713. } else if (e.data.tools && e.data.tools == "64") {
  4714. U.MD.D.I.openApplication("AIChat")
  4715. } else if (e.data.tools && e.data.tools == "66") {
  4716. U.MD.D.I.openApplication("formulaEdi")
  4717. } else if (e.data.tools && e.data.tools == "67") {
  4718. U.MD.D.I.openApplication("molStr")
  4719. } else if (e.data.tools && e.data.tools == "68") {
  4720. U.MD.D.I.openApplication("timeAxis")
  4721. } else if (e.data.tools && e.data.tools == "openCourse") {
  4722. let _data = {
  4723. typea: e.data.typea || '',
  4724. typeb: e.data.typeb || '',
  4725. typed: e.data.typed || '',
  4726. }
  4727. U.MD.D.I.openInApplication("index", _data)
  4728. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4729. let _data = {
  4730. classid: e.data.classid || '',
  4731. }
  4732. U.MD.D.I.openInApplication("dataClass", _data)
  4733. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4734. let _data = {
  4735. cid: e.data.cid || '',
  4736. gid: e.data.gid || '',
  4737. }
  4738. U.MD.D.I.openInApplication("opencCscl", _data)
  4739. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4740. U.MD.D.I.openApplication("dataBoardTest")
  4741. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4742. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4743. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4744. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4745. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4746. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4747. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4748. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4749. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4750. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4751. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4752. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4753. }else if (e.data.tools && e.data.tools == "loginSz") {
  4754. U.MD.D.I.openInApplication("loginSz")
  4755. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4756. if($('#classroom_observation_board')[0]){
  4757. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4758. }
  4759. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4760. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4761. if($('#classroom_observation_ob_comment')[0]){
  4762. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4763. }
  4764. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4765. }else if (e.data.tools && e.data.tools == "logout"){
  4766. U.MD.U.LO.logoutSystem()
  4767. }else if (e.data.tools && e.data.tools == "getLogin"){
  4768. let _iframe = $('#UI_Login')[0];
  4769. if (_iframe) {
  4770. var userInfo = US.userInfo;
  4771. var type = 2
  4772. if(userInfo && userInfo.userid){
  4773. type = 1
  4774. }
  4775. _contentWindow = _iframe.contentWindow;
  4776. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4777. }
  4778. }
  4779. });
  4780. U.MD.D.I.selectUser = function () {
  4781. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4782. if (res.value[0].length > 0) {
  4783. US.userInfo = res.value[0][0];
  4784. $(".userName")[0].innerHTML = US.userInfo.username;
  4785. }
  4786. }, [], { "type": "GET", "withCredentials": true });
  4787. }
  4788. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4789. var _userinfo = US.userInfo, //登录用户信息
  4790. _userid = US.userInfo.userid, //登录用户id
  4791. _oid = _userinfo.organizeid,
  4792. _type = US.userInfo.type,
  4793. _org = US.userInfo.org,
  4794. _role = US.userInfo.role,
  4795. _classId = US.userInfo.classid;
  4796. if (_type == 4) {
  4797. tType = 4
  4798. }
  4799. switch (str) {
  4800. case "studyDetailNT": //无终端模式
  4801. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4802. setTimeout(() => {
  4803. U.MD.U.L.login();
  4804. }, 2000);
  4805. } else {
  4806. _formdiv = new U.UF.UI.form(
  4807. "课程详情",
  4808. $$("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 }), {
  4809. "id": "studyDetailNT",
  4810. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _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); } }
  4816. break;
  4817. }
  4818. case "studyDetail":
  4819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4820. setTimeout(() => {
  4821. U.MD.U.L.login();
  4822. }, 2000);
  4823. } else {
  4824. _formdiv = new U.UF.UI.form(
  4825. "课程详情",
  4826. $$("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 }), {
  4827. "id": "studyDetail",
  4828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _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); } }
  4834. break;
  4835. }
  4836. case "studyDetailTrain":
  4837. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4838. setTimeout(() => {
  4839. U.MD.U.L.login();
  4840. }, 2000);
  4841. } else {
  4842. _formdiv = new U.UF.UI.form(
  4843. "培训详情",
  4844. $$("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 }), {
  4845. "id": "studyDetailTrain",
  4846. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _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); } }
  4852. break;
  4853. }
  4854. case "studyDetailS":
  4855. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4856. setTimeout(() => {
  4857. U.MD.U.L.login();
  4858. }, 2000);
  4859. } else {
  4860. _formdiv = new U.UF.UI.form(
  4861. "项目详情",
  4862. $$("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 }), {
  4863. "id": "studyDetailS",
  4864. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _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); } }
  4870. break;
  4871. }
  4872. case "studyDetailStudio":
  4873. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4874. setTimeout(() => {
  4875. U.MD.U.L.login();
  4876. }, 2000);
  4877. } else {
  4878. _formdiv = new U.UF.UI.form(
  4879. "工作详情",
  4880. $$("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 }), {
  4881. "id": "studyDetailStudio",
  4882. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _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); } }
  4888. break;
  4889. }
  4890. case "studyDetailS5":
  4891. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4892. setTimeout(() => {
  4893. U.MD.U.L.login();
  4894. }, 2000);
  4895. } else {
  4896. _formdiv = new U.UF.UI.form(
  4897. "项目详情",
  4898. $$("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 }), {
  4899. "id": "studyDetailS",
  4900. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _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); } }
  4906. break;
  4907. }
  4908. case "studyDetailGM":
  4909. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4910. setTimeout(() => {
  4911. U.MD.U.L.login();
  4912. }, 2000);
  4913. } else {
  4914. _formdiv = new U.UF.UI.form(
  4915. "课程详情",
  4916. $$("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 }), {
  4917. "id": "studyDetail",
  4918. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _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); } }
  4924. break;
  4925. }
  4926. case "hanUrl":
  4927. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4928. setTimeout(() => {
  4929. U.MD.U.L.login();
  4930. }, 2000);
  4931. } else {
  4932. _formdiv = new U.UF.UI.form(
  4933. "汉字宫",
  4934. $$("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" }), {
  4935. "id": "hanUrl",
  4936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //创建窗体
  4941. _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); } }
  4942. break;
  4943. }
  4944. case "index":
  4945. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4946. setTimeout(() => {
  4947. U.MD.U.L.login();
  4948. }, 2000);
  4949. } else {
  4950. _formdiv = new U.UF.UI.form(
  4951. "课程中心",
  4952. $$("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 }), {
  4953. "id": "study",
  4954. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. _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); } }
  4960. break;
  4961. }
  4962. case "dataClass":
  4963. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4964. setTimeout(() => {
  4965. U.MD.U.L.login();
  4966. }, 2000);
  4967. } else {
  4968. _formdiv = new U.UF.UI.form(
  4969. "数据报告",
  4970. $$("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 }), {
  4971. "id": "dataClass",
  4972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. closecallback: function () { }
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. _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); } }
  4978. break;
  4979. }
  4980. case "opencCscl":
  4981. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4982. setTimeout(() => {
  4983. U.MD.U.L.login();
  4984. }, 2000);
  4985. } else {
  4986. _formdiv = new U.UF.UI.form(
  4987. "协同建构",
  4988. $$("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 }), {
  4989. "id": "futureClass",
  4990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _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); } }
  4996. break;
  4997. }
  4998. case "openCourseUpdate":
  4999. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5000. setTimeout(() => {
  5001. U.MD.U.L.login();
  5002. }, 2000);
  5003. } else {
  5004. _formdiv = new U.UF.UI.form(
  5005. "课程管理",
  5006. $$("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 }), {
  5007. "id": "openCourseUpdate",
  5008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. break;
  5014. }
  5015. case "openNewCourseUpdate":
  5016. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5017. setTimeout(() => {
  5018. U.MD.U.L.login();
  5019. }, 2000);
  5020. } else {
  5021. _formdiv = new U.UF.UI.form(
  5022. "课程管理",
  5023. $$("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 }), {
  5024. "id": "openCourseUpdate",
  5025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. break;
  5031. }
  5032. case "openCourseEUpdate":
  5033. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5034. setTimeout(() => {
  5035. U.MD.U.L.login();
  5036. }, 2000);
  5037. } else {
  5038. _formdiv = new U.UF.UI.form(
  5039. "课程管理",
  5040. $$("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 }), {
  5041. "id": "openCourseUpdate",
  5042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. break;
  5048. }
  5049. case "openCourseAiUpdate":
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. setTimeout(() => {
  5052. U.MD.U.L.login();
  5053. }, 2000);
  5054. } else {
  5055. _formdiv = new U.UF.UI.form(
  5056. "课程管理",
  5057. $$("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/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5058. "id": "openCourseUpdate",
  5059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. break;
  5065. }
  5066. case "openCourseAiUpdate2":
  5067. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5068. setTimeout(() => {
  5069. U.MD.U.L.login();
  5070. }, 2000);
  5071. } else {
  5072. _formdiv = new U.UF.UI.form(
  5073. "课程管理",
  5074. $$("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/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5075. "id": "openCourseUpdate",
  5076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. break;
  5082. }
  5083. case "openCourseNewUpdate":
  5084. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5085. setTimeout(() => {
  5086. U.MD.U.L.login();
  5087. }, 2000);
  5088. } else {
  5089. _formdiv = new U.UF.UI.form(
  5090. "课程管理",
  5091. $$("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 }), {
  5092. "id": "openCourseUpdate",
  5093. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //创建窗体
  5098. break;
  5099. }
  5100. case "inviteLoginSz":
  5101. _formdiv = new U.UF.UI.form(
  5102. "随机码登录",
  5103. $$("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 }), {
  5104. "id": "loginSz",
  5105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //创建窗体
  5110. break;
  5111. case "loginSz":
  5112. _formdiv = new U.UF.UI.form(
  5113. "教师登录",
  5114. $$("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" }), {
  5115. "id": "loginSz",
  5116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5117. "onresize": function () { }
  5118. }, {
  5119. closecallback: function () { }
  5120. }, { "style": { "height": "36px" } }).form; //创建窗体
  5121. break;
  5122. case "teacher":
  5123. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5124. setTimeout(() => {
  5125. U.MD.U.L.login();
  5126. }, 2000);
  5127. } else {
  5128. _formdiv = new U.UF.UI.form(
  5129. "教师管理",
  5130. $$("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 }), {
  5131. "id": "teacher",
  5132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5133. "onresize": function () { }
  5134. }, {
  5135. closecallback: function () { }
  5136. }, { "style": { "height": "36px" } }).form; //创建窗体
  5137. break;
  5138. }
  5139. case "dataBoardSZArea":
  5140. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5141. setTimeout(() => {
  5142. U.MD.U.L.login();
  5143. }, 2000);
  5144. } else {
  5145. _formdiv = new U.UF.UI.form(
  5146. "综合数据看板",
  5147. $$("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 }), {
  5148. "id": "dataBoardSZArea",
  5149. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. break;
  5155. }
  5156. case "dataBoardSZCity":
  5157. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5158. setTimeout(() => {
  5159. U.MD.U.L.login();
  5160. }, 2000);
  5161. } else {
  5162. _formdiv = new U.UF.UI.form(
  5163. "综合数据看板",
  5164. $$("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 }), {
  5165. "id": "dataBoardSZCity",
  5166. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. break;
  5172. }
  5173. case "classroom_observation_board":
  5174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5175. setTimeout(() => {
  5176. U.MD.U.L.login();
  5177. }, 2000);
  5178. } else {
  5179. _formdiv = new U.UF.UI.form(
  5180. "课堂观察",
  5181. $$("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 }), {
  5182. "id": "classroom_observation_board",
  5183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. break;
  5189. }
  5190. case "classroom_observation_ob_comment":
  5191. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5192. setTimeout(() => {
  5193. U.MD.U.L.login();
  5194. }, 2000);
  5195. } else {
  5196. _formdiv = new U.UF.UI.form(
  5197. "课堂审核",
  5198. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5199. "id": "classroom_observation_ob_comment",
  5200. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. break;
  5206. }
  5207. }
  5208. }
  5209. U.MD.D.I.openApplication = function (str, obj, info) {
  5210. obj = obj || {};
  5211. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5212. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5213. _userinfo = US.userInfo, //登录用户信息
  5214. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5215. _oid = obj.organizeid || _userinfo.organizeid,
  5216. _type = US.userInfo.type,
  5217. _org = US.userInfo.org,
  5218. _role = US.userInfo.role,
  5219. _classId = US.userInfo.classid,
  5220. _TscreenType = 1
  5221. _screenType = 2,
  5222. _SscreenType = 3;
  5223. let _iframe;
  5224. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5225. return;
  5226. }
  5227. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5228. switch (str) {
  5229. case "studnetProject": //好友打开
  5230. _formdiv = new U.UF.UI.form(
  5231. "我的项目",
  5232. $$("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 }), {
  5233. "id": "studnetProject",
  5234. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5235. "onresize": function () { }
  5236. }, {
  5237. closecallback: function () { }
  5238. }, { "style": { "height": "36px" } }).form; //创建窗体
  5239. _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); } }
  5240. break;
  5241. case "studentEvaluate": //好友打开
  5242. _formdiv = new U.UF.UI.form(
  5243. "我的评价",
  5244. $$("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 }), {
  5245. "id": "studentEvaluate",
  5246. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5247. "onresize": function () { }
  5248. }, {
  5249. closecallback: function () { }
  5250. }, { "style": { "height": "36px" } }).form; //创建窗体
  5251. _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); } }
  5252. break;
  5253. case "my":
  5254. _formdiv = new U.UF.UI.form(
  5255. "我的资料",
  5256. $$("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 }), {
  5257. "id": "my",
  5258. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5259. "onresize": function () { }
  5260. }, {
  5261. closecallback: function () { }
  5262. }, { "style": { "height": "36px" } }).form; //创建窗体
  5263. _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); } }
  5264. break;
  5265. case "program":
  5266. _formdiv = new U.UF.UI.form(
  5267. "编程平台",
  5268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5269. "id": "program",
  5270. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _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); } }
  5276. break;
  5277. case "library":
  5278. _formdiv = new U.UF.UI.form(
  5279. "素材库",
  5280. $$("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 }), {
  5281. "id": "library",
  5282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5283. "onresize": function () { }
  5284. }, {
  5285. closecallback: function () { }
  5286. }, { "style": { "height": "36px" } }).form; //创建窗体
  5287. _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); } }
  5288. break;
  5289. case "whiteboard":
  5290. _formdiv = new U.UF.UI.form(
  5291. "电子白板",
  5292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5293. "id": "whiteboard",
  5294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5295. "onresize": function () { }
  5296. }, {
  5297. closecallback: function () { }
  5298. }, { "style": { "height": "36px" } }).form; //创建窗体
  5299. _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); } }
  5300. break;
  5301. case "investigation":
  5302. _formdiv = new U.UF.UI.form(
  5303. "问卷调查",
  5304. $$("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 }), {
  5305. "id": "investigation",
  5306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _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); } }
  5312. break;
  5313. case "note":
  5314. _formdiv = new U.UF.UI.form(
  5315. "便签分类",
  5316. $$("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 }), {
  5317. "id": "note",
  5318. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. _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); } }
  5324. break;
  5325. // case "score":
  5326. // _formdiv = new U.UF.UI.form(
  5327. // "量规评分",
  5328. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5329. // "id": "score",
  5330. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5331. // "onresize": function() {}
  5332. // }, {
  5333. // closecallback: function() {}
  5334. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5335. // _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); } }
  5336. // break;
  5337. case "mind":
  5338. _formdiv = new U.UF.UI.form(
  5339. "思维导图",
  5340. $$("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"
  5341. "id": "mind",
  5342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _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); } }
  5348. break;
  5349. case "doc":
  5350. // U.MD.D.I.isRoom();
  5351. _formdiv = new U.UF.UI.form(
  5352. "协同文档",
  5353. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5354. "id": "doc",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //创建窗体
  5360. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5361. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5362. // })
  5363. _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); } }
  5364. break;
  5365. case "studentStudy":
  5366. _formdiv = new U.UF.UI.form(
  5367. "课程中心",
  5368. $$("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
  5369. "id": "studentStudy",
  5370. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5371. "onresize": function () { }
  5372. }, {
  5373. closecallback: function () { }
  5374. }, { "style": { "height": "36px" } }).form; //创建窗体
  5375. _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); } }
  5376. break;
  5377. case "train": //好友打开
  5378. _formdiv = new U.UF.UI.form(
  5379. "训练平台",
  5380. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5381. "id": "train",
  5382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5383. "onresize": function () { }
  5384. }, {
  5385. closecallback: function () { }
  5386. }, { "style": { "height": "36px" } }).form; //创建窗体
  5387. _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); } }
  5388. break;
  5389. case "mindNetwork": //好友打开
  5390. _formdiv = new U.UF.UI.form(
  5391. "思维网格",
  5392. $$("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 }), {
  5393. "id": "mindNetwork",
  5394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5395. "onresize": function () { }
  5396. }, {
  5397. closecallback: function () { }
  5398. }, { "style": { "height": "36px" } }).form; //创建窗体
  5399. _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); } }
  5400. break;
  5401. case "studentClassRoom": //好友打开
  5402. _formdiv = new U.UF.UI.form(
  5403. "实时课堂",
  5404. $$("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 }), {
  5405. "id": "studentClassRoom",
  5406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5407. "onresize": function () { }
  5408. }, {
  5409. closecallback: function () { }
  5410. }, { "style": { "height": "36px" } }).form; //创建窗体
  5411. _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); } }
  5412. setTimeout(() => {
  5413. U.UF.F.windowZooming(_formdiv)
  5414. }, 0);
  5415. break;
  5416. }
  5417. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5418. switch (str) {
  5419. case "studnetProject": //好友打开
  5420. _formdiv = new U.UF.UI.form(
  5421. "我的项目",
  5422. $$("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 }), {
  5423. "id": "studnetProject",
  5424. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. _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); } }
  5430. break;
  5431. case "studentEvaluate": //好友打开
  5432. _formdiv = new U.UF.UI.form(
  5433. "我的评价",
  5434. $$("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 }), {
  5435. "id": "studentEvaluate",
  5436. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5437. "onresize": function () { }
  5438. }, {
  5439. closecallback: function () { }
  5440. }, { "style": { "height": "36px" } }).form; //创建窗体
  5441. _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); } }
  5442. break;
  5443. case "my":
  5444. _formdiv = new U.UF.UI.form(
  5445. "我的资料",
  5446. $$("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 }), {
  5447. "id": "my",
  5448. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5449. "onresize": function () { }
  5450. }, {
  5451. closecallback: function () { }
  5452. }, { "style": { "height": "36px" } }).form; //创建窗体
  5453. _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); } }
  5454. break;
  5455. case "program":
  5456. _formdiv = new U.UF.UI.form(
  5457. "编程平台",
  5458. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5459. "id": "program",
  5460. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5461. "onresize": function () { }
  5462. }, {
  5463. closecallback: function () { }
  5464. }, { "style": { "height": "36px" } }).form; //创建窗体
  5465. _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); } }
  5466. break;
  5467. case "library":
  5468. _formdiv = new U.UF.UI.form(
  5469. "素材库",
  5470. $$("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 }), {
  5471. "id": "library",
  5472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5473. "onresize": function () { }
  5474. }, {
  5475. closecallback: function () { }
  5476. }, { "style": { "height": "36px" } }).form; //创建窗体
  5477. _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); } }
  5478. break;
  5479. case "whiteboard":
  5480. _formdiv = new U.UF.UI.form(
  5481. "电子白板",
  5482. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5483. "id": "whiteboard",
  5484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. _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); } }
  5490. break;
  5491. case "investigation":
  5492. _formdiv = new U.UF.UI.form(
  5493. "问卷调查",
  5494. $$("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 }), {
  5495. "id": "investigation",
  5496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _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); } }
  5502. break;
  5503. case "note":
  5504. _formdiv = new U.UF.UI.form(
  5505. "便签分类",
  5506. $$("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 }), {
  5507. "id": "note",
  5508. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. // case "score":
  5516. // _formdiv = new U.UF.UI.form(
  5517. // "量规评分",
  5518. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5519. // "id": "score",
  5520. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5521. // "onresize": function() {}
  5522. // }, {
  5523. // closecallback: function() {}
  5524. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. // _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); } }
  5526. // break;
  5527. case "mind":
  5528. _formdiv = new U.UF.UI.form(
  5529. "思维导图",
  5530. $$("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"
  5531. "id": "mind",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _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); } }
  5538. break;
  5539. case "doc":
  5540. // U.MD.D.I.isRoom();
  5541. _formdiv = new U.UF.UI.form(
  5542. "协同文档",
  5543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5544. "id": "doc",
  5545. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5546. "onresize": function () { }
  5547. }, {
  5548. closecallback: function () { }
  5549. }, { "style": { "height": "36px" } }).form; //创建窗体
  5550. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5551. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5552. })
  5553. _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); } }
  5554. break;
  5555. case "train": //好友打开
  5556. _formdiv = new U.UF.UI.form(
  5557. "训练平台",
  5558. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5559. "id": "train",
  5560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //创建窗体
  5565. _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); } }
  5566. break;
  5567. case "studentStudy":
  5568. _formdiv = new U.UF.UI.form(
  5569. "课程中心",
  5570. $$("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
  5571. "id": "studentStudy",
  5572. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5573. "onresize": function () { }
  5574. }, {
  5575. closecallback: function () { }
  5576. }, { "style": { "height": "36px" } }).form; //创建窗体
  5577. _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); } }
  5578. break;
  5579. case "mindNetwork": //好友打开
  5580. _formdiv = new U.UF.UI.form(
  5581. "思维网格",
  5582. $$("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 }), {
  5583. "id": "mindNetwork",
  5584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5585. "onresize": function () { }
  5586. }, {
  5587. closecallback: function () { }
  5588. }, { "style": { "height": "36px" } }).form; //创建窗体
  5589. _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); } }
  5590. break;
  5591. case "studentClassRoom": //好友打开
  5592. _formdiv = new U.UF.UI.form(
  5593. "实时课堂",
  5594. $$("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 }), {
  5595. "id": "studentClassRoom",
  5596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //创建窗体
  5601. _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); } }
  5602. setTimeout(() => {
  5603. U.UF.F.windowZooming(_formdiv)
  5604. }, 0);
  5605. break;
  5606. }
  5607. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5608. //选择应用处理
  5609. switch (str) {
  5610. case "project": //好友打开
  5611. _formdiv = new U.UF.UI.form(
  5612. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5613. $$("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 }), {
  5614. "id": "project",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _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); } }
  5621. break;
  5622. case "student":
  5623. _formdiv = new U.UF.UI.form(
  5624. "学生管理",
  5625. $$("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 }), {
  5626. "id": "student",
  5627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _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); } }
  5633. break;
  5634. case "evaluate":
  5635. _formdiv = new U.UF.UI.form(
  5636. "学生评价",
  5637. $$("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 }), {
  5638. "id": "evaluate",
  5639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. _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); } }
  5645. break;
  5646. case "sys":
  5647. _formdiv = new U.UF.UI.form(
  5648. "目标管理",
  5649. $$("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 }), {
  5650. "id": "sys",
  5651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _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); } }
  5657. break;
  5658. case "courseDesign":
  5659. _formdiv = new U.UF.UI.form(
  5660. "项目设计",
  5661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5662. "id": "courseDesign",
  5663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _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); } }
  5669. break;
  5670. case "program":
  5671. _formdiv = new U.UF.UI.form(
  5672. "编程平台",
  5673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5674. "id": "program",
  5675. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5676. "onresize": function () { }
  5677. }, {
  5678. closecallback: function () { }
  5679. }, { "style": { "height": "36px" } }).form; //创建窗体
  5680. _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); } }
  5681. break;
  5682. case "class":
  5683. _formdiv = new U.UF.UI.form(
  5684. "班级管理",
  5685. $$("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 }), {
  5686. "id": "class",
  5687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _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); } }
  5693. break;
  5694. case "Grade":
  5695. _formdiv = new U.UF.UI.form(
  5696. "年级管理",
  5697. $$("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 }), {
  5698. "id": "Grade",
  5699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5700. "onresize": function () { }
  5701. }, {
  5702. closecallback: function () { }
  5703. }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. _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); } }
  5705. break;
  5706. case "teacherOffice":
  5707. _formdiv = new U.UF.UI.form(
  5708. "教研室",
  5709. $$("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 }), {
  5710. "id": "teacherOffice",
  5711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _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); } }
  5717. break;
  5718. case "my":
  5719. _formdiv = new U.UF.UI.form(
  5720. "我的资料",
  5721. $$("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 }), {
  5722. "id": "my",
  5723. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _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); } }
  5729. break;
  5730. case "notice":
  5731. _formdiv = new U.UF.UI.form(
  5732. "通知公告",
  5733. $$("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 }), {
  5734. "id": "notice",
  5735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _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); } }
  5741. break;
  5742. case "library":
  5743. _formdiv = new U.UF.UI.form(
  5744. "素材库",
  5745. $$("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 }), {
  5746. "id": "library",
  5747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _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); } }
  5753. break;
  5754. case "whiteboard":
  5755. _formdiv = new U.UF.UI.form(
  5756. "电子白板",
  5757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5758. "id": "whiteboard",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _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); } }
  5765. break;
  5766. case "investigation":
  5767. _formdiv = new U.UF.UI.form(
  5768. "问卷调查",
  5769. $$("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 }), {
  5770. "id": "investigation",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _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); } }
  5777. break;
  5778. case "note":
  5779. _formdiv = new U.UF.UI.form(
  5780. "便签分类",
  5781. $$("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 }), {
  5782. "id": "note",
  5783. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _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); } }
  5789. break;
  5790. // case "score":
  5791. // _formdiv = new U.UF.UI.form(
  5792. // "量规评分",
  5793. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5794. // "id": "score",
  5795. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5796. // "onresize": function() {}
  5797. // }, {
  5798. // closecallback: function() {}
  5799. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5800. // _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); } }
  5801. // break;
  5802. case "mind":
  5803. _formdiv = new U.UF.UI.form(
  5804. "思维导图",
  5805. $$("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"
  5806. "id": "mind",
  5807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. _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); } }
  5813. break;
  5814. case "doc":
  5815. // U.MD.D.I.isRoom();
  5816. _formdiv = new U.UF.UI.form(
  5817. "协同文档",
  5818. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5819. "id": "doc",
  5820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5821. "onresize": function () { }
  5822. }, {
  5823. closecallback: function () { }
  5824. }, { "style": { "height": "36px" } }).form; //创建窗体
  5825. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5826. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5827. })
  5828. _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); } }
  5829. break;
  5830. case "study":
  5831. _formdiv = new U.UF.UI.form(
  5832. "课程中心",
  5833. $$("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
  5834. "id": "study",
  5835. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //创建窗体
  5840. _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); } }
  5841. break;
  5842. case "mindNetwork": //好友打开
  5843. _formdiv = new U.UF.UI.form(
  5844. "思维网格",
  5845. $$("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 }), {
  5846. "id": "mindNetwork",
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. _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); } }
  5853. break;
  5854. case "train": //好友打开
  5855. _formdiv = new U.UF.UI.form(
  5856. "训练平台",
  5857. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5858. "id": "mindNetwork",
  5859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. _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); } }
  5865. break;
  5866. case "teacherClassRoom": //好友打开
  5867. _formdiv = new U.UF.UI.form(
  5868. "实时课堂",
  5869. $$("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 }), {
  5870. "id": "teacherClassRoom",
  5871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5872. "onresize": function () { }
  5873. }, {
  5874. closecallback: function () { }
  5875. }, { "style": { "height": "36px" } }).form; //创建窗体
  5876. _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); } }
  5877. setTimeout(() => {
  5878. U.UF.F.windowZooming(_formdiv)
  5879. }, 0);
  5880. break;
  5881. }
  5882. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5883. switch (str) {
  5884. case "project": //好友打开
  5885. _formdiv = new U.UF.UI.form(
  5886. "课程管理",
  5887. $$("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 }), {
  5888. "id": "project",
  5889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. _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); } }
  5895. break;
  5896. case "evaluate":
  5897. _formdiv = new U.UF.UI.form(
  5898. "学生评价",
  5899. $$("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 }), {
  5900. "id": "evaluate",
  5901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _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); } }
  5907. break;
  5908. case "notice":
  5909. _formdiv = new U.UF.UI.form(
  5910. "通知公告",
  5911. $$("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 }), {
  5912. "id": "notice",
  5913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _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); } }
  5919. break;
  5920. case "stuLibrary":
  5921. _formdiv = new U.UF.UI.form(
  5922. "学习资料",
  5923. $$("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 }), {
  5924. "id": "stuLibrary",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _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); } }
  5931. break;
  5932. case "program":
  5933. _formdiv = new U.UF.UI.form(
  5934. "编程平台",
  5935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5936. "id": "program",
  5937. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _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); } }
  5943. break;
  5944. case "whiteboard":
  5945. _formdiv = new U.UF.UI.form(
  5946. "电子白板",
  5947. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5948. "id": "whiteboard",
  5949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _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); } }
  5955. break;
  5956. case "investigation":
  5957. _formdiv = new U.UF.UI.form(
  5958. "问卷调查",
  5959. $$("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 }), {
  5960. "id": "investigation",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. case "mind":
  5969. _formdiv = new U.UF.UI.form(
  5970. "思维导图",
  5971. $$("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"
  5972. "id": "mind",
  5973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _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); } }
  5979. break;
  5980. case "doc":
  5981. // U.MD.D.I.isRoom();
  5982. _formdiv = new U.UF.UI.form(
  5983. "协同文档",
  5984. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5985. "id": "doc",
  5986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5992. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5993. })
  5994. _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); } }
  5995. break;
  5996. case "study":
  5997. _formdiv = new U.UF.UI.form(
  5998. "课程中心",
  5999. $$("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
  6000. "id": "study",
  6001. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. _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); } }
  6007. break;
  6008. case "mindNetwork": //好友打开
  6009. _formdiv = new U.UF.UI.form(
  6010. "思维网格",
  6011. $$("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 }), {
  6012. "id": "mindNetwork",
  6013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, { "style": { "height": "36px" } }).form; //创建窗体
  6018. _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); } }
  6019. break;
  6020. case "train": //好友打开
  6021. _formdiv = new U.UF.UI.form(
  6022. "训练平台",
  6023. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6024. "id": "train",
  6025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6026. "onresize": function () { }
  6027. }, {
  6028. closecallback: function () { }
  6029. }, { "style": { "height": "36px" } }).form; //创建窗体
  6030. _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); } }
  6031. break;
  6032. case "sys":
  6033. _formdiv = new U.UF.UI.form(
  6034. "目标管理",
  6035. $$("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 }), {
  6036. "id": "sys",
  6037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //创建窗体
  6042. _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); } }
  6043. break;
  6044. case "courseDesign":
  6045. _formdiv = new U.UF.UI.form(
  6046. "项目设计",
  6047. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6048. "id": "courseDesign",
  6049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //创建窗体
  6054. _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); } }
  6055. break;
  6056. }
  6057. } else if (!_type) {
  6058. switch (str) {
  6059. case "my":
  6060. _formdiv = new U.UF.UI.form(
  6061. "我的资料",
  6062. $$("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 }), {
  6063. "id": "my",
  6064. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6065. "onresize": function () { }
  6066. }, {
  6067. closecallback: function () { }
  6068. }, { "style": { "height": "36px" } }).form; //创建窗体
  6069. _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); } }
  6070. break;
  6071. }
  6072. }
  6073. switch (str) {
  6074. // AIprogram2 AI体验 aihub.cocorobo.cn
  6075. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6076. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6077. case "formulaEdi": //公式编辑
  6078. _formdiv = new U.UF.UI.form(
  6079. "公式编辑",
  6080. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6081. "id": "formulaEdi",
  6082. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6083. "onresize": function () { }
  6084. }, {
  6085. closecallback: function () { }
  6086. }, { "style": { "height": "36px" } }).form; //创建窗体
  6087. _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); } }
  6088. break;
  6089. case "molStr": //分子结构
  6090. _formdiv = new U.UF.UI.form(
  6091. "分子结构",
  6092. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6093. "id": "molStr",
  6094. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6095. "onresize": function () { }
  6096. }, {
  6097. closecallback: function () { }
  6098. }, { "style": { "height": "36px" } }).form; //创建窗体
  6099. _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); } }
  6100. break;
  6101. case "timeAxis": //时间轴
  6102. _formdiv = new U.UF.UI.form(
  6103. "时间轴",
  6104. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6105. "id": "timeAxis",
  6106. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6107. "onresize": function () { }
  6108. }, {
  6109. closecallback: function () { }
  6110. }, { "style": { "height": "36px" } }).form; //创建窗体
  6111. _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); } }
  6112. break;
  6113. case "AIprogram2": //AI体验
  6114. _formdiv = new U.UF.UI.form(
  6115. "AI体验",
  6116. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6117. "id": "AIprogram2",
  6118. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6119. "onresize": function () { }
  6120. }, {
  6121. closecallback: function () { }
  6122. }, { "style": { "height": "36px" } }).form; //创建窗体
  6123. _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); } }
  6124. break;
  6125. case "Pythonprogram": //python编程
  6126. _formdiv = new U.UF.UI.form(
  6127. "Python编程",
  6128. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6129. "id": "Pythonprogram",
  6130. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6131. "onresize": function () { }
  6132. }, {
  6133. closecallback: function () { }
  6134. }, { "style": { "height": "36px" } }).form; //创建窗体
  6135. _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); } }
  6136. break;
  6137. case "AIprogram": //ai编程
  6138. _formdiv = new U.UF.UI.form(
  6139. "AI编程平台",
  6140. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6141. "id": "AIprogram",
  6142. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "CocoPi": //CocoPi
  6150. _formdiv = new U.UF.UI.form(
  6151. "CocoPi",
  6152. $$("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" }), {
  6153. "id": "CocoPi",
  6154. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "Wood": //Wood
  6162. _formdiv = new U.UF.UI.form(
  6163. "海龟编程",
  6164. $$("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/" }), {
  6165. "id": "Wood",
  6166. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "car": //模拟驾驶
  6174. _formdiv = new U.UF.UI.form(
  6175. "模拟驾驶",
  6176. $$("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/" }), {
  6177. "id": "car",
  6178. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. break;
  6185. case "lineSearch": //路径搜索
  6186. _formdiv = new U.UF.UI.form(
  6187. "路径搜索",
  6188. $$("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/" }), {
  6189. "id": "lineSearch",
  6190. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. break;
  6197. case "deepLearning": //深度学习
  6198. _formdiv = new U.UF.UI.form(
  6199. "深度学习",
  6200. $$("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/#" }), {
  6201. "id": "deepLearning",
  6202. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _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); } }
  6208. break;
  6209. case "allHistory": //深度学习
  6210. _formdiv = new U.UF.UI.form(
  6211. "全历史",
  6212. $$("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/" }), {
  6213. "id": "allHistory",
  6214. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. _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); } }
  6220. break;
  6221. case "chatPDF": //ai编程
  6222. _formdiv = new U.UF.UI.form(
  6223. "chatPDF",
  6224. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6225. "id": "chatPDF",
  6226. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //创建窗体
  6231. _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); } }
  6232. break;
  6233. case "resources": //国家教育
  6234. _formdiv = new U.UF.UI.form(
  6235. "国家教育",
  6236. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6237. "id": "resources",
  6238. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. _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); } }
  6244. break;
  6245. case "codeEdit": //源码编辑
  6246. _formdiv = new U.UF.UI.form(
  6247. "源码编辑",
  6248. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6249. "id": "codeEdit",
  6250. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break; //
  6257. case "MindMap": //MindMap
  6258. _formdiv = new U.UF.UI.form(
  6259. "MindMap",
  6260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6261. "id": "MindMap",
  6262. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _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); } }
  6268. break;
  6269. case "netWorkPanel": //netWorkPanel
  6270. _formdiv = new U.UF.UI.form(
  6271. "netWorkPanel",
  6272. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6273. "id": "netWorkPanel",
  6274. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _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); } }
  6280. break;
  6281. case "GeoGebra": //GeoGebra
  6282. _formdiv = new U.UF.UI.form(
  6283. "GeoGebra",
  6284. $$("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" }), {
  6285. "id": "GeoGebra",
  6286. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _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); } }
  6292. break;
  6293. case "translation": //翻译
  6294. _formdiv = new U.UF.UI.form(
  6295. "翻译",
  6296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6297. "id": "translation",
  6298. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _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); } }
  6304. break;
  6305. case "mohe": //魔盒
  6306. _formdiv = new U.UF.UI.form(
  6307. "魔盒识字",
  6308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6309. "id": "mohe",
  6310. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _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); } }
  6316. break;
  6317. case "24game": //24点
  6318. _formdiv = new U.UF.UI.form(
  6319. "24点",
  6320. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6321. "id": "24game",
  6322. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _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); } }
  6328. break;
  6329. case "case":
  6330. _formdiv = new U.UF.UI.form(
  6331. "课程进展",
  6332. $$("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 }), {
  6333. "id": "case",
  6334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. case "snf":
  6342. _formdiv = new U.UF.UI.form(
  6343. "赛诺梵",
  6344. $$("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" }), {
  6345. "id": "snf",
  6346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _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); } }
  6352. break;
  6353. case "hanFamily":
  6354. _formdiv = new U.UF.UI.form(
  6355. "汉字家族",
  6356. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6357. "id": "hanFamily",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. case "hanClassics":
  6366. _formdiv = new U.UF.UI.form(
  6367. "国学经典",
  6368. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6369. "id": "hanClassics",
  6370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _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); } }
  6376. break;
  6377. case "hanTraining":
  6378. _formdiv = new U.UF.UI.form(
  6379. "笔画训练",
  6380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6381. "id": "hanTraining",
  6382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. case "hanClass":
  6390. _formdiv = new U.UF.UI.form(
  6391. "书法课堂",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6393. "id": "hanClass",
  6394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. case "han":
  6402. _formdiv = new U.UF.UI.form(
  6403. "汉字宫",
  6404. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6405. "id": "han",
  6406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _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); } }
  6412. break;
  6413. case "projectGM": //课程管理
  6414. _formdiv = new U.UF.UI.form(
  6415. "课程管理",
  6416. $$("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 }), {
  6417. "id": "projectGM",
  6418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _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); } }
  6424. break;
  6425. case "studyGM": //课程中心
  6426. _formdiv = new U.UF.UI.form(
  6427. "课程中心",
  6428. $$("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
  6429. "id": "study",
  6430. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _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); } }
  6436. break;
  6437. // studentGM
  6438. case "studentGM": //学生管理
  6439. _formdiv = new U.UF.UI.form(
  6440. "学生管理",
  6441. $$("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 }), {
  6442. "id": "studentGM",
  6443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6444. "onresize": function () { }
  6445. }, {
  6446. closecallback: function () { }
  6447. }, { "style": { "height": "36px" } }).form; //创建窗体
  6448. _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); } }
  6449. break;
  6450. case "evaluateGM": //学生评价
  6451. _formdiv = new U.UF.UI.form(
  6452. "学生评价",
  6453. $$("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 }), {
  6454. "id": "evaluateGM",
  6455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, { "style": { "height": "36px" } }).form; //创建窗体
  6460. _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); } }
  6461. break;
  6462. // classGM
  6463. case "classGM": //班级管理
  6464. _formdiv = new U.UF.UI.form(
  6465. "班级管理",
  6466. $$("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 }), {
  6467. "id": "classGM",
  6468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6469. "onresize": function () { }
  6470. }, {
  6471. closecallback: function () { }
  6472. }, { "style": { "height": "36px" } }).form; //创建窗体
  6473. _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); } }
  6474. break;
  6475. // dataGM
  6476. case "dataGM":
  6477. _formdiv = new U.UF.UI.form(
  6478. "我的资料",
  6479. $$("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 }), {
  6480. "id": "dataGM",
  6481. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6482. "onresize": function () { }
  6483. }, {
  6484. closecallback: function () { }
  6485. }, { "style": { "height": "36px" } }).form; //创建窗体
  6486. _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); } }
  6487. break;
  6488. // caseGM
  6489. case "caseGM": //课程进展
  6490. _formdiv = new U.UF.UI.form(
  6491. "课程进展",
  6492. $$("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 }), {
  6493. "id": "caseGM",
  6494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _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); } }
  6500. break;
  6501. // meterialGM
  6502. case "meterialGM": //素材库
  6503. _formdiv = new U.UF.UI.form(
  6504. "素材库",
  6505. $$("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 }), {
  6506. "id": "meterialGM",
  6507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //创建窗体
  6512. _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); } }
  6513. break;
  6514. // evaluateSGM
  6515. case "evaluateSGM": //我的评价
  6516. _formdiv = new U.UF.UI.form(
  6517. "我的评价",
  6518. $$("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 }), {
  6519. "id": "evaluateSGM",
  6520. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. _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); } }
  6526. break;
  6527. case "jupyter": //jupyter
  6528. _formdiv = new U.UF.UI.form(
  6529. "jupyter",
  6530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6531. "id": "jupyter",
  6532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6533. "onresize": function () { }
  6534. }, {
  6535. closecallback: function () { }
  6536. }, { "style": { "height": "36px" } }).form; //创建窗体
  6537. _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); } }
  6538. break;
  6539. case "number": //数字实验室
  6540. _formdiv = new U.UF.UI.form(
  6541. "数字实验室",
  6542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6543. "id": "number",
  6544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6545. "onresize": function () { }
  6546. }, {
  6547. closecallback: function () { }
  6548. }, { "style": { "height": "36px" } }).form; //创建窗体
  6549. _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); } }
  6550. break;
  6551. case "studentCourse": //项目管理 学生
  6552. _formdiv = new U.UF.UI.form(
  6553. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6554. $$("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 }), {
  6555. "id": "studentCourse",
  6556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //创建窗体
  6561. _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); } }
  6562. break;
  6563. case "studentCourseS": //项目管理 老师
  6564. _formdiv = new U.UF.UI.form(
  6565. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6566. $$("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 }), {
  6567. "id": "studentCourseS",
  6568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //创建窗体
  6573. _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); } }
  6574. break;
  6575. case "studentIndex": //项目中心
  6576. _formdiv = new U.UF.UI.form(
  6577. "项目中心",
  6578. $$("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 }), {
  6579. "id": "studentIndex",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _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); } }
  6586. break;
  6587. case "CaseDesignS":
  6588. _formdiv = new U.UF.UI.form(
  6589. "项目进展",
  6590. $$("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 }), {
  6591. "id": "case",
  6592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _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); } }
  6598. break;
  6599. case "tcStudent": //腾讯学生管理
  6600. _formdiv = new U.UF.UI.form(
  6601. "学生管理",
  6602. $$("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 }), {
  6603. "id": "tcStudent",
  6604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _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); } }
  6610. break;
  6611. case "tcSchool": //腾讯学校管理
  6612. _formdiv = new U.UF.UI.form(
  6613. "学校管理",
  6614. $$("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 }), {
  6615. "id": "tcSchool",
  6616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _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); } }
  6622. break;
  6623. case "tcTeacher": //腾讯学校管理
  6624. _formdiv = new U.UF.UI.form(
  6625. "教师管理",
  6626. $$("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 }), {
  6627. "id": "tcTeacher",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "teacher":
  6636. _formdiv = new U.UF.UI.form(
  6637. "教师管理",
  6638. $$("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 }), {
  6639. "id": "teacher",
  6640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. break;
  6647. case "tcData": //腾讯我的资料
  6648. _formdiv = new U.UF.UI.form(
  6649. "我的资料",
  6650. $$("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 }), {
  6651. "id": "tcData",
  6652. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _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); } }
  6658. break;
  6659. case "tcNotice": //腾讯消息通知
  6660. _formdiv = new U.UF.UI.form(
  6661. "消息通知",
  6662. $$("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 }), {
  6663. "id": "tcNotice",
  6664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _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); } }
  6670. break;
  6671. case "myReport": //好友打开
  6672. _formdiv = new U.UF.UI.form(
  6673. "我的评价",
  6674. $$("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 }), {
  6675. "id": "myReport",
  6676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "learnAna": //好友打开
  6684. _formdiv = new U.UF.UI.form(
  6685. "学习分析",
  6686. $$("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 }), {
  6687. "id": "learnAna",
  6688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "AIChat": //AI共创
  6696. _formdiv = new U.UF.UI.form(
  6697. "AI共创",
  6698. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6699. "id": "AIChat",
  6700. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. istop: true,
  6704. closecallback: function () { $("#aichat_icon").remove(); },
  6705. narrowcallback: function () {
  6706. if (!$("#aichat_icon")[0]) {
  6707. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6708. }
  6709. },
  6710. }, { "style": { "height": "36px" } }).form; //创建窗体
  6711. _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); } }
  6712. break;
  6713. case "ainew": //AI共创
  6714. _formdiv = new U.UF.UI.form(
  6715. "AI协同",
  6716. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6717. "id": "ainew",
  6718. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //创建窗体
  6723. _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); } }
  6724. break;
  6725. case "gpt4": //gpt4
  6726. _formdiv = new U.UF.UI.form(
  6727. "AI助手",
  6728. $$("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 }), {
  6729. "id": "gpt4",
  6730. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, { "style": { "height": "36px" } }).form; //创建窗体
  6735. _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); } }
  6736. break;
  6737. case "aigpt": //gpt4
  6738. _formdiv = new U.UF.UI.form(
  6739. "AI助手+",
  6740. $$("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 }), {
  6741. "id": "aigpt",
  6742. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6743. "onresize": function () { }
  6744. }, {
  6745. closecallback: function () {
  6746. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6747. }
  6748. }, { "style": { "height": "36px" } }).form; //创建窗体
  6749. _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); } }
  6750. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6751. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6752. })
  6753. break;
  6754. case "aiKnowledge": //aiKnowledge
  6755. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6756. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6757. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6758. }
  6759. _formdiv = new U.UF.UI.form(
  6760. "知识建构",
  6761. $$("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": _url }), {
  6762. "id": "aiKnowledge",
  6763. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6764. "onresize": function () { }
  6765. }, {
  6766. closecallback: function () { }
  6767. }, { "style": { "height": "36px" } }).form; //创建窗体
  6768. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6769. break;
  6770. case "futureClass": //AI共创
  6771. _formdiv = new U.UF.UI.form(
  6772. "协同建构",
  6773. $$("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
  6774. "id": "synergyCourse",
  6775. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () {
  6779. $("iframe", _formdiv)[0].contentWindow.loginout();
  6780. }
  6781. }, { "style": { "height": "36px" } }).form; //创建窗体
  6782. _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); } }
  6783. break;
  6784. case "aiagent": //ai agent
  6785. _formdiv = new U.UF.UI.form(
  6786. "AI Agent",
  6787. $$("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" }), {
  6788. "id": "AIAgent",
  6789. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6790. "onresize": function () { }
  6791. }, {
  6792. closecallback: function () { }
  6793. }, { "style": { "height": "36px" } }).form; //创建窗体
  6794. _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); } }
  6795. break;
  6796. case "dataBoard": //数据看板
  6797. _formdiv = new U.UF.UI.form(
  6798. "数据看板",
  6799. $$("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 }), {
  6800. "id": "dataBoard",
  6801. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _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); } }
  6807. break;
  6808. case "dataBoardSies": //数据融合
  6809. _formdiv = new U.UF.UI.form(
  6810. "数据融合",
  6811. $$("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 }), {
  6812. "id": "dataBoardSies",
  6813. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _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); } }
  6819. break;
  6820. case "dataBoardNew": //数据看板
  6821. _formdiv = new U.UF.UI.form(
  6822. "综合看板",
  6823. _iframe = $$("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 }), {
  6824. "id": "dataBoardNew",
  6825. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6826. "onresize": function () { }
  6827. }, {
  6828. closecallback: function () { }
  6829. }, { "style": { "height": "36px" } }).form; //创建窗体
  6830. _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); } }
  6831. break;
  6832. case "dataBoardTest": //数据看板
  6833. _formdiv = new U.UF.UI.form(
  6834. "评测看板",
  6835. $$("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 }), {
  6836. "id": "dataBoardTest",
  6837. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //创建窗体
  6842. _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); } }
  6843. break;
  6844. case "AIAnalyse": //AI共创
  6845. _formdiv = new U.UF.UI.form(
  6846. "AI分析",
  6847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6848. "id": "AIAnalyse",
  6849. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. case "studioCourse": //AI共创
  6857. _formdiv = new U.UF.UI.form(
  6858. "工作管理",
  6859. $$("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 }), {
  6860. "id": "studioCourse",
  6861. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _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); } }
  6867. break;
  6868. case "studioIndex": //AI共创
  6869. _formdiv = new U.UF.UI.form(
  6870. "工作中心",
  6871. $$("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 }), {
  6872. "id": "studioIndex",
  6873. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _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); } }
  6879. break;
  6880. case "source":
  6881. _formdiv = new U.UF.UI.form(
  6882. "教学资源",
  6883. $$("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 }), {
  6884. "id": "source",
  6885. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _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); } }
  6891. break;
  6892. case "testTeacher":
  6893. _formdiv = new U.UF.UI.form(
  6894. "智能表单",
  6895. $$("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 }), {
  6896. "id": "testTeacher",
  6897. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _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); } }
  6903. break;
  6904. case "testStudent":
  6905. _formdiv = new U.UF.UI.form(
  6906. "教师中心",
  6907. $$("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 }), {
  6908. "id": "testStudent",
  6909. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, { "style": { "height": "36px" } }).form; //创建窗体
  6914. _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); } }
  6915. break;
  6916. case "testTeacherSies":
  6917. _formdiv = new U.UF.UI.form(
  6918. "教师管理",
  6919. $$("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/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6920. "id": "testTeacherSies",
  6921. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6922. "onresize": function () { }
  6923. }, {
  6924. closecallback: function () { }
  6925. }, { "style": { "height": "36px" } }).form; //创建窗体
  6926. _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); } }
  6927. break;
  6928. case "testStudentSies":
  6929. _formdiv = new U.UF.UI.form(
  6930. "教师中心",
  6931. $$("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 }), {
  6932. "id": "testStudentSies",
  6933. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _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); } }
  6939. break;
  6940. case "ytpbl": //消息通知
  6941. _formdiv = new U.UF.UI.form(
  6942. "案例征集",
  6943. $$("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 }), {
  6944. "id": "ytpbl",
  6945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _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); } }
  6951. // 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");
  6952. break;
  6953. case "aiCourseResource": //人工智能窗体
  6954. _formdiv = new U.UF.UI.form(
  6955. false,
  6956. $$("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 }), {
  6957. "id": "aiCourseResource",
  6958. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6959. "onresize": function () { },
  6960. "isdrag": false,
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //创建窗体
  6964. _taskbar = ''
  6965. break;
  6966. case "szdjgCocooroboX": //图形化编程
  6967. _formdiv = new U.UF.UI.form(
  6968. "图形化编程",
  6969. $$("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" }), {
  6970. "id": "szdjgCocooroboX",
  6971. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _taskbar = ''
  6977. break;
  6978. case "szdjgPython": //python编程
  6979. _formdiv = new U.UF.UI.form(
  6980. "Python编程",
  6981. $$("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" }), {
  6982. "id": "szdjgPython",
  6983. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //创建窗体
  6988. _taskbar = ''
  6989. break;
  6990. case "Record":
  6991. _formdiv = new U.UF.UI.form(
  6992. "观察记录",
  6993. $$("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 }), {
  6994. "id": "Record",
  6995. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _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); } }
  7001. break;
  7002. case "aigptCourse":
  7003. _formdiv = new U.UF.UI.form(
  7004. "AI智能体",
  7005. $$("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' }), {
  7006. "id": "aigptCourse",
  7007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () { }
  7011. }, { "style": { "height": "36px" } }).form; //创建窗体
  7012. _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); } }
  7013. break;
  7014. case "classroomObservation":
  7015. _formdiv = new U.UF.UI.form(
  7016. "课堂观察",
  7017. $$("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 }), {
  7018. "id": "classroomObservation",
  7019. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7020. "onresize": function () { }
  7021. }, {
  7022. closecallback: function () { }
  7023. }, { "style": { "height": "36px" } }).form; //创建窗体
  7024. _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); } }
  7025. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7026. break;
  7027. case "pblCourse":
  7028. _formdiv = new U.UF.UI.form(
  7029. "学生PBL",
  7030. $$("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/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7031. "id": "pblCourse",
  7032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7033. "onresize": function () { }
  7034. }, {
  7035. closecallback: function () { }
  7036. }, { "style": { "height": "36px" } }).form; //创建窗体
  7037. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7038. break;
  7039. case "appStore":
  7040. _formdiv = new U.UF.UI.form(
  7041. "CocoFlow",
  7042. $$("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": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7043. "id": "appStore",
  7044. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7045. "onresize": function () { }
  7046. }, {
  7047. closecallback: function () { }
  7048. }, { "style": { "height": "36px" } }).form; //创建窗体
  7049. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7050. break;
  7051. case "sassPlatform":
  7052. _formdiv = new U.UF.UI.form(
  7053. "Sass通用后台管理",
  7054. $$("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/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7055. "id": "sassPlatform",
  7056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7057. "onresize": function () { }
  7058. }, {
  7059. closecallback: function () { }
  7060. }, { "style": { "height": "36px" } }).form; //创建窗体
  7061. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7062. break;
  7063. case "EDU":
  7064. _formdiv = new U.UF.UI.form(
  7065. "EDU",
  7066. $$("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": "//edu.cocorobo.cn" }), {
  7067. "id": "EDU",
  7068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7069. "onresize": function () { }
  7070. }, {
  7071. closecallback: function () { }
  7072. }, { "style": { "height": "36px" } }).form; //创建窗体
  7073. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7074. break;
  7075. case "knowledge":
  7076. _formdiv = new U.UF.UI.form(
  7077. "知识库",
  7078. $$("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://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7079. "id": "knowledge",
  7080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7081. "onresize": function () { }
  7082. }, {
  7083. closecallback: function () { }
  7084. }, { "style": { "height": "36px" } }).form; //创建窗体
  7085. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7086. break;
  7087. case "userExamine":
  7088. _formdiv = new U.UF.UI.form(
  7089. "账号申请",
  7090. $$("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": "//user.cocorobo.cn/#/examineDialog" }), {
  7091. "id": "userExamine",
  7092. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7093. "onresize": function () { }
  7094. }, {
  7095. closecallback: function () { }
  7096. }, { "style": { "height": "36px" } }).form; //创建窗体
  7097. break;
  7098. }
  7099. //U.MD.D.I.openClick(str);
  7100. //如果有任务栏信息
  7101. if (_taskbar) {
  7102. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7103. }
  7104. if(str == "dataBoardNew"){
  7105. U.UF.DL.loading(_formdiv)
  7106. U.UF.DL.iframeLoad(_iframe, function () {
  7107. U.UF.DL.loading(_formdiv)
  7108. })
  7109. }
  7110. }
  7111. // U.MD.D.I.openClick = function(str){
  7112. // var click = '';
  7113. // switch(str){
  7114. // case 'friend':
  7115. // click = '我的好友';
  7116. // break;
  7117. // case 'domain':
  7118. // click = '域名管理';
  7119. // break;
  7120. // case 'disk':
  7121. // click = '我的云盘';
  7122. // break;
  7123. // case 'word':
  7124. // click = 'Word';
  7125. // break;
  7126. // case 'excel':
  7127. // click = 'Execl';
  7128. // break;
  7129. // case 'txt':
  7130. // click = '文本文件';
  7131. // break;
  7132. // case 'lookupFriend':
  7133. // click = '查找好友';
  7134. // break;
  7135. // case 'ftp':
  7136. // click = 'FTP';
  7137. // break;
  7138. // case 'group':
  7139. // click = '群组';
  7140. // break;
  7141. // case 'set':
  7142. // click = '我的设置';
  7143. // break;
  7144. // case 'systemSet':
  7145. // click = '系统设置';
  7146. // break;
  7147. // case 'boomYun':
  7148. // click = '互联办公';
  7149. // break;
  7150. // case 'xz':
  7151. // click = '云端下载';
  7152. // break;
  7153. // case 'client':
  7154. // click = '有思浏览器';
  7155. // break;
  7156. // case 'backEndProgramming':
  7157. // click = '在线后台编程';
  7158. // break;
  7159. // case 'frontEndProgramming':
  7160. // click = '在线前端编程';
  7161. // break;
  7162. // default: break;
  7163. // }
  7164. // if(U.MD.D.I.Ip && click){
  7165. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7166. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7167. // })
  7168. // }
  7169. // }
  7170. /**
  7171. *函数作用:ajax简易函数,使用post格式
  7172. *@param url {data} 后台地址
  7173. *@param data {data} 参数json
  7174. *@param fn {data} 回调函数
  7175. *
  7176. */
  7177. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7178. // var xhr = new XMLHttpRequest();
  7179. // xhr.open("GET",url,true);
  7180. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7181. // xhr.onreadystatechange = function(){
  7182. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7183. // fn.call(this,xhr.responseText);
  7184. // }
  7185. // };
  7186. // xhr.send();
  7187. // }
  7188. /*判断是否是内网IP*/
  7189. // U.MD.D.I.isInnerIPFn = function(str){
  7190. // var curPageUrl = str;
  7191. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7192. // curPageUrl =curPageUrl.replace(reg1,'');
  7193. // // console.log('curPageUrl-1 '+curPageUrl);
  7194. // var reg2 = /\:+/g;//替换冒号为一点
  7195. // curPageUrl =curPageUrl.replace(reg2,'.');
  7196. // // console.log('curPageUrl-2 '+curPageUrl);
  7197. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7198. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7199. // if(curPageUrl[2] != '16'){
  7200. // return ipAddress;
  7201. // }else{
  7202. // return false;
  7203. // }
  7204. // }
  7205. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7206. // //compatibility for firefox and chrome
  7207. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7208. // var pc = new myPeerConnection({
  7209. // iceServers: []
  7210. // }),
  7211. // noop = function() {},
  7212. // localIPs = {},
  7213. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7214. // key;
  7215. // function iterateIP(ip) {
  7216. // if (!localIPs[ip]) onNewIP(ip);
  7217. // localIPs[ip] = true;
  7218. // }
  7219. // //create a bogus data channel
  7220. // pc.createDataChannel("");
  7221. // // create offer and set local description
  7222. // pc.createOffer().then(function(sdp) {
  7223. // sdp.sdp.split('\n').forEach(function(line) {
  7224. // if (line.indexOf('candidate') < 0) return;
  7225. // line.match(ipRegex).forEach(iterateIP);
  7226. // });
  7227. // pc.setLocalDescription(sdp, noop, noop);
  7228. // }).catch(function(reason) {
  7229. // // An error occurred, so handle the failure to connect
  7230. // });
  7231. // //sten for candidate events
  7232. // pc.onicecandidate = function(ice) {
  7233. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7234. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7235. // };
  7236. // }
  7237. // U.MD.D.I.getUserIpBool = function(callback){
  7238. // U.MD.D.I.getUserIP(function(ip){
  7239. // alert("Got IP! :" + ip);
  7240. // });
  7241. //}
  7242. //#endregion
  7243. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7244. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7245. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7246. _userinfo = US.userInfo, //登录用户信息
  7247. _userid = US.userInfo.userid //登录用户id
  7248. let _iframe;
  7249. let _cid = cid,
  7250. _stage = stage,
  7251. _task = task,
  7252. _tool = tool;
  7253. var _jie = $$("div", {
  7254. "style": {
  7255. "position": "absolute",
  7256. "bottom": "50px",
  7257. "right": "50px",
  7258. "zIndex": "9999",
  7259. "backgroundColor": "#2268bc",
  7260. "color": "#fff",
  7261. "padding": "12px 20px",
  7262. "cursor": "pointer",
  7263. "borderRadius": "4px",
  7264. },
  7265. "innerHTML": "提交作业"
  7266. })
  7267. let aTool = ''
  7268. let _loading = document.createElement('div')
  7269. _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;"
  7270. // _loading.id = "";
  7271. let _lchild = document.createElement('div')
  7272. let _limg = document.createElement('img')
  7273. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7274. _limg.style = "width: 26px;margin-right: 10px;"
  7275. _lchild.appendChild(_limg)
  7276. let _lspan = document.createElement('span')
  7277. _lspan.innerHTML = "上传中..."
  7278. _lchild.appendChild(_lspan)
  7279. _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%);"
  7280. _loading.appendChild(_lchild)
  7281. var _box = $$('div', {
  7282. "style": {
  7283. "position": "relative",
  7284. "width": "100%",
  7285. "height": "100%",
  7286. },
  7287. })
  7288. _box.appendChild(_loading)
  7289. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7290. switch (str) {
  7291. case "whiteboard":
  7292. aTool = 1;
  7293. _iframe = $$("iframe", {
  7294. "frameborder": "no",
  7295. "border": "0",
  7296. "scrolling ": "no",
  7297. "style": {
  7298. "cssText": "border:0;width:100%;height:100%"
  7299. },
  7300. "src": "https://beta.iwb.cocorobo.cn/"
  7301. })
  7302. _box.appendChild(_iframe);
  7303. _box.appendChild(_jie);
  7304. _formdiv = new U.UF.UI.form(
  7305. "电子白板",
  7306. _box, {
  7307. "id": "whiteboard" + cid + stage + task + tool,
  7308. "style": {
  7309. "width": "90%",
  7310. "height": "90%",
  7311. "overflow": 'hidden'
  7312. },
  7313. "onresize": function () { }
  7314. }, {
  7315. closecallback: function () { }
  7316. }, {
  7317. "style": {
  7318. "height": "36px"
  7319. }
  7320. }).form; //创建窗体
  7321. _taskbar = {
  7322. "id": str + _formdiv.id,
  7323. "style": {
  7324. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7325. },
  7326. "name": "电子白板",
  7327. "forms": _formdiv,
  7328. "click": function () {
  7329. U.MD.D.I.openApplication(str, obj, info);
  7330. }
  7331. }
  7332. break;
  7333. case "mind":
  7334. aTool = 3;
  7335. _iframe = $$("iframe", {
  7336. "frameborder": "no",
  7337. "border": "0",
  7338. "scrolling ": "no",
  7339. "style": {
  7340. "cssText": "border:0;width:100%;height:100%"
  7341. },
  7342. "src": "/kityminder-editor/dist/index.html"
  7343. })
  7344. _box.appendChild(_iframe);
  7345. _box.appendChild(_jie);
  7346. _formdiv = new U.UF.UI.form(
  7347. "思维导图",
  7348. _box, { //"/jsmind/example/demo.html"
  7349. "id": "mind" + cid + stage + task + tool,
  7350. "style": {
  7351. "width": "90%",
  7352. "height": "90%",
  7353. "overflow": 'hidden'
  7354. },
  7355. "onresize": function () { }
  7356. }, {
  7357. closecallback: function () { }
  7358. }, {
  7359. "style": {
  7360. "height": "36px"
  7361. }
  7362. }).form; //创建窗体
  7363. _taskbar = {
  7364. "id": str + _formdiv.id,
  7365. "style": {
  7366. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7367. },
  7368. "name": "思维导图",
  7369. "forms": _formdiv,
  7370. "click": function () {
  7371. U.MD.D.I.openApplication(str, obj, info);
  7372. }
  7373. }
  7374. break;
  7375. case "MindMap":
  7376. aTool = 3;
  7377. _iframe = $$("iframe", {
  7378. "frameborder": "no",
  7379. "border": "0",
  7380. "scrolling ": "no",
  7381. "style": {
  7382. "cssText": "border:0;width:100%;height:100%"
  7383. },
  7384. "src": "//cloud.cocorobo.cn/mind/"
  7385. })
  7386. _box.appendChild(_iframe);
  7387. _box.appendChild(_jie);
  7388. _formdiv = new U.UF.UI.form(
  7389. "思维导图",
  7390. _box, { //"/jsmind/example/demo.html"
  7391. "id": "mind" + cid + stage + task + tool,
  7392. "style": {
  7393. "width": "90%",
  7394. "height": "90%",
  7395. "overflow": 'hidden'
  7396. },
  7397. "onresize": function () { }
  7398. }, {
  7399. closecallback: function () { }
  7400. }, {
  7401. "style": {
  7402. "height": "36px"
  7403. }
  7404. }).form; //创建窗体
  7405. _taskbar = {
  7406. "id": str + _formdiv.id,
  7407. "style": {
  7408. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7409. },
  7410. "name": "思维导图",
  7411. "forms": _formdiv,
  7412. "click": function () {
  7413. U.MD.D.I.openApplication(str, obj, info);
  7414. }
  7415. }
  7416. break;
  7417. case "doc":
  7418. aTool = 6;
  7419. _iframe = $$("iframe", {
  7420. "frameborder": "no",
  7421. "border": "0",
  7422. "scrolling ": "no",
  7423. "style": {
  7424. "cssText": "border:0;width:100%;height:100%"
  7425. },
  7426. "src": "/Office/Word/WordEditArea.htm"
  7427. })
  7428. _box.appendChild(_iframe);
  7429. _box.appendChild(_jie);
  7430. _formdiv = new U.UF.UI.form(
  7431. "协同文档",
  7432. _box, {
  7433. "id": "doc" + cid + stage + task + tool,
  7434. "style": {
  7435. "width": "90%",
  7436. "height": "90%",
  7437. "overflow": 'hidden'
  7438. },
  7439. "onresize": function () { }
  7440. }, {
  7441. closecallback: function () { }
  7442. }, {
  7443. "style": {
  7444. "height": "36px"
  7445. }
  7446. }).form; //创建窗体
  7447. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7448. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7449. })
  7450. _taskbar = {
  7451. "id": str + _formdiv.id,
  7452. "style": {
  7453. "backgroundImage": "url(/img/icon/doc.png)"
  7454. },
  7455. "name": "协同文档",
  7456. "forms": _formdiv,
  7457. "click": function () {
  7458. U.MD.D.I.openApplication(str, obj, info);
  7459. }
  7460. }
  7461. break;
  7462. case "mindNetwork": //好友打开
  7463. aTool = 7;
  7464. _iframe = $$("iframe", {
  7465. "webkitallowfullscreen": "",
  7466. "mozallowfullscreen": "",
  7467. "allowfullscreen": "",
  7468. "frameborder": "no",
  7469. "border": "0",
  7470. "scrolling ": "no",
  7471. "style": {
  7472. "cssText": "border:0; width:100%; height:100%;"
  7473. },
  7474. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7475. })
  7476. _box.appendChild(_iframe);
  7477. _box.appendChild(_jie);
  7478. _formdiv = new U.UF.UI.form(
  7479. "思维网格",
  7480. _box, {
  7481. "id": "mindNetwork" + cid + stage + task + tool,
  7482. "style": {
  7483. "width": "90%",
  7484. "height": "90%",
  7485. "overflow": 'hidden'
  7486. },
  7487. "onresize": function () { }
  7488. }, {
  7489. closecallback: function () { }
  7490. }, {
  7491. "style": {
  7492. "height": "36px"
  7493. }
  7494. }).form; //创建窗体
  7495. _taskbar = {
  7496. "id": str + _formdiv.id,
  7497. "style": {
  7498. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7499. },
  7500. "name": "思维网格",
  7501. "forms": _formdiv,
  7502. "click": function () {
  7503. U.MD.D.I.openApplication(str, obj, info);
  7504. }
  7505. }
  7506. break;
  7507. case "courseDesign":
  7508. _iframe = $$("iframe", {
  7509. "webkitallowfullscreen": "",
  7510. "mozallowfullscreen": "",
  7511. "allowfullscreen": "",
  7512. "frameborder": "no",
  7513. "border": "0",
  7514. "scrolling ": "no",
  7515. "style": {
  7516. "cssText": "border:0; width:100%; height:100%;"
  7517. },
  7518. "src": "/course-design-vue"
  7519. })
  7520. _box.appendChild(_iframe);
  7521. _box.appendChild(_jie);
  7522. _formdiv = new U.UF.UI.form(
  7523. "项目设计",
  7524. _box, {
  7525. "id": "courseDesign" + cid + stage + task + tool,
  7526. "style": {
  7527. "width": "90%",
  7528. "height": "90%",
  7529. "overflow": 'hidden'
  7530. },
  7531. "onresize": function () { }
  7532. }, {
  7533. closecallback: function () { }
  7534. }, {
  7535. "style": {
  7536. "height": "36px"
  7537. }
  7538. }).form; //创建窗体
  7539. _taskbar = {
  7540. "id": str + _formdiv.id,
  7541. "style": {
  7542. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7543. },
  7544. "name": "项目设计",
  7545. "forms": _formdiv,
  7546. "click": function () {
  7547. U.MD.D.I.openApplication(str, obj, info);
  7548. }
  7549. }
  7550. break;
  7551. }
  7552. const script1 = document.createElement("script");
  7553. script1.type = "text/javascript";
  7554. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7555. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7556. const script2 = document.createElement("script");
  7557. script2.type = "text/javascript";
  7558. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7559. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7560. const script3 = document.createElement("script");
  7561. script3.type = "text/javascript";
  7562. script3.charset = "UTF-8";
  7563. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7564. const script4 = document.createElement("script");
  7565. script4.type = "text/javascript";
  7566. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7567. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7568. if (_iframe) {
  7569. if (str == 'doc') {
  7570. _iframe = _formdiv.querySelector('iframe')
  7571. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7572. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7573. _iframe.contentWindow.document.body.appendChild(script1);
  7574. _iframe.contentWindow.document.body.appendChild(script2);
  7575. // _iframe.contentWindow.document.body.appendChild(script3);
  7576. _iframe.contentWindow.document.body.appendChild(script4);
  7577. })
  7578. if (onloadListener) {
  7579. _iframe.contentDocument.location.reload()
  7580. } else {
  7581. _iframe.contentDocument.location.reload()
  7582. }
  7583. } else if (str == 'courseDesign') {
  7584. U.UF.DL.iframeLoad(_iframe, function () {
  7585. // _iframe.contentWindow.U.MD.O.W.load();
  7586. // _iframe.contentWindow.document.body.appendChild(script1);
  7587. _iframe.contentWindow.document.body.appendChild(script2);
  7588. _iframe.contentWindow.document.body.appendChild(script4);
  7589. })
  7590. } else if (str == 'mind') {
  7591. _iframe = _formdiv.querySelector('iframe')
  7592. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7593. //
  7594. _iframe.contentWindow.document.body.appendChild(script1);
  7595. _iframe.contentWindow.document.body.appendChild(script2);
  7596. _iframe.contentWindow.document.body.appendChild(script4);
  7597. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7598. })
  7599. if (onloadListener) {
  7600. _iframe.contentDocument.location.reload()
  7601. } else {
  7602. _iframe.contentDocument.location.reload()
  7603. }
  7604. } else if (str == 'whiteboard') {
  7605. _iframe = _formdiv.querySelector('iframe')
  7606. let onloadListener = _iframe.onload = () => {
  7607. _iframe.contentWindow.document.body.appendChild(script1);
  7608. _iframe.contentWindow.document.body.appendChild(script2);
  7609. _iframe.contentWindow.document.body.appendChild(script4);
  7610. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7611. };
  7612. // if (onloadListener) {
  7613. // try {
  7614. // _iframe.src += "?cocorobo="+new Date().getTime()
  7615. // _iframe.contentWindow.document.location.reload()
  7616. // } catch (error) {
  7617. // }
  7618. // } else {
  7619. // _iframe.contentDocument.location.reload()
  7620. // }
  7621. } else {
  7622. _iframe.onload = () => {
  7623. _iframe.contentWindow.document.body.appendChild(script1);
  7624. _iframe.contentWindow.document.body.appendChild(script2);
  7625. // _iframe.contentWindow.document.body.appendChild(script3);
  7626. _iframe.contentWindow.document.body.appendChild(script4);
  7627. };
  7628. }
  7629. _jie.onclick = async () => {
  7630. let text = ''
  7631. if (aTool == 1) {
  7632. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7633. } else if (aTool == 6) {
  7634. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7635. } else if (aTool == 3) {
  7636. text = await U.MD.D.I.getEditorContent(_iframe);
  7637. }
  7638. _loading.style.display = 'flex'
  7639. console.log(_loading);
  7640. var _ajs = _iframe.contentWindow.document.createElement("script");
  7641. _ajs.type = "text/javascript";
  7642. _ajs.innerHTML =
  7643. // 'console.log(' + _loading + ');\n' +
  7644. 'var _js = document.createElement("script");\n' +
  7645. '_js.type="text/javascript";\n' +
  7646. '_js.charset="UTF-8";\n' +
  7647. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7648. "_js.onload = function(){\n" +
  7649. ' var a = document.getElementsByTagName("img")\n' +
  7650. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7651. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7652. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7653. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7654. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7655. "beforeUpload_shishi(file," +
  7656. "'" +
  7657. _userid +
  7658. "'" +
  7659. ", " +
  7660. "'" +
  7661. _cid +
  7662. "'" +
  7663. ", " +
  7664. "'" +
  7665. _stage +
  7666. "'" +
  7667. ", " +
  7668. "'" +
  7669. _task +
  7670. "'" +
  7671. ", " +
  7672. "'" +
  7673. _tool +
  7674. "'" +
  7675. ", " +
  7676. "'" +
  7677. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7678. "'" +
  7679. ", " +
  7680. "'" +
  7681. aTool +
  7682. "'" +
  7683. ", " +
  7684. "`" +
  7685. text +
  7686. "`" +
  7687. ")\n" +
  7688. " });\n" +
  7689. "}\n" +
  7690. "document.head.appendChild(_js);\n";
  7691. _iframe.contentWindow.document.head.appendChild(_ajs);
  7692. }
  7693. }
  7694. //U.MD.D.I.openClick(str);
  7695. //如果有任务栏信息
  7696. // if (_taskbar) {
  7697. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7698. // }
  7699. }
  7700. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7701. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7702. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7703. _userinfo = US.userInfo, //登录用户信息
  7704. _userid = US.userInfo.userid //登录用户id
  7705. let _iframe;
  7706. let _cid = cid,
  7707. _stage = stage,
  7708. _task = task,
  7709. _tool = tool;
  7710. var _jie = $$("div", {
  7711. "style": {
  7712. "position": "absolute",
  7713. "bottom": "50px",
  7714. "right": "50px",
  7715. "zIndex": "9999",
  7716. "backgroundColor": "#2268bc",
  7717. "color": "#fff",
  7718. "padding": "12px 20px",
  7719. "cursor": "pointer",
  7720. "borderRadius": "4px",
  7721. },
  7722. "innerHTML": "提交作业"
  7723. })
  7724. let aTool = ''
  7725. let _loading = document.createElement('div')
  7726. _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;"
  7727. // _loading.id = "";
  7728. let _lchild = document.createElement('div')
  7729. let _limg = document.createElement('img')
  7730. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7731. _limg.style = "width: 26px;margin-right: 10px;"
  7732. _lchild.appendChild(_limg)
  7733. let _lspan = document.createElement('span')
  7734. _lspan.innerHTML = "上传中..."
  7735. _lchild.appendChild(_lspan)
  7736. _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%);"
  7737. _loading.appendChild(_lchild)
  7738. let _box = $$('div', {
  7739. "style": {
  7740. "position": "relative",
  7741. "width": "100%",
  7742. "height": "100%",
  7743. },
  7744. })
  7745. _box.appendChild(_loading)
  7746. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7747. switch (str) {
  7748. case "whiteboard":
  7749. aTool = 1;
  7750. _iframe = $$("iframe", {
  7751. "frameborder": "no",
  7752. "border": "0",
  7753. "scrolling ": "no",
  7754. "style": {
  7755. "cssText": "border:0;width:100%;height:100%"
  7756. },
  7757. "src": "https://beta.iwb.cocorobo.cn/"
  7758. })
  7759. _box.appendChild(_iframe);
  7760. _box.appendChild(_jie);
  7761. _formdiv = new U.UF.UI.form(
  7762. "电子白板",
  7763. _box, {
  7764. "id": "whiteboard" + cid + stage + task + tool,
  7765. "style": {
  7766. "width": "90%",
  7767. "height": "90%",
  7768. "overflow": 'hidden'
  7769. },
  7770. "onresize": function () { }
  7771. }, {
  7772. closecallback: function () { }
  7773. }, {
  7774. "style": {
  7775. "height": "36px"
  7776. }
  7777. }).form; //创建窗体
  7778. _taskbar = {
  7779. "id": str + _formdiv.id,
  7780. "style": {
  7781. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7782. },
  7783. "name": "电子白板",
  7784. "forms": _formdiv,
  7785. "click": function () {
  7786. U.MD.D.I.openApplication(str, obj, info);
  7787. }
  7788. }
  7789. break;
  7790. case "mind":
  7791. aTool = 3;
  7792. _iframe = $$("iframe", {
  7793. "frameborder": "no",
  7794. "border": "0",
  7795. "scrolling ": "no",
  7796. "style": {
  7797. "cssText": "border:0;width:100%;height:100%"
  7798. },
  7799. "src": "/kityminder-editor/dist/index.html"
  7800. })
  7801. _box.appendChild(_iframe);
  7802. _box.appendChild(_jie);
  7803. _formdiv = new U.UF.UI.form(
  7804. "思维导图",
  7805. _box, { //"/jsmind/example/demo.html"
  7806. "id": "mind" + cid + stage + task + tool,
  7807. "style": {
  7808. "width": "90%",
  7809. "height": "90%",
  7810. "overflow": 'hidden'
  7811. },
  7812. "onresize": function () { }
  7813. }, {
  7814. closecallback: function () { }
  7815. }, {
  7816. "style": {
  7817. "height": "36px"
  7818. }
  7819. }).form; //创建窗体
  7820. _taskbar = {
  7821. "id": str + _formdiv.id,
  7822. "style": {
  7823. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7824. },
  7825. "name": "思维导图",
  7826. "forms": _formdiv,
  7827. "click": function () {
  7828. U.MD.D.I.openApplication(str, obj, info);
  7829. }
  7830. }
  7831. break;
  7832. case "MindMap":
  7833. aTool = 3;
  7834. _iframe = $$("iframe", {
  7835. "frameborder": "no",
  7836. "border": "0",
  7837. "scrolling ": "no",
  7838. "style": {
  7839. "cssText": "border:0;width:100%;height:100%"
  7840. },
  7841. "src": "//cloud.cocorobo.cn/mind/"
  7842. })
  7843. _box.appendChild(_iframe);
  7844. _box.appendChild(_jie);
  7845. _formdiv = new U.UF.UI.form(
  7846. "思维导图",
  7847. _box, { //"/jsmind/example/demo.html"
  7848. "id": "mind" + cid + stage + task + tool,
  7849. "style": {
  7850. "width": "90%",
  7851. "height": "90%",
  7852. "overflow": 'hidden'
  7853. },
  7854. "onresize": function () { }
  7855. }, {
  7856. closecallback: function () { }
  7857. }, {
  7858. "style": {
  7859. "height": "36px"
  7860. }
  7861. }).form; //创建窗体
  7862. _taskbar = {
  7863. "id": str + _formdiv.id,
  7864. "style": {
  7865. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7866. },
  7867. "name": "思维导图",
  7868. "forms": _formdiv,
  7869. "click": function () {
  7870. U.MD.D.I.openApplication(str, obj, info);
  7871. }
  7872. }
  7873. break;
  7874. case "doc":
  7875. aTool = 6;
  7876. _iframe = $$("iframe", {
  7877. "frameborder": "no",
  7878. "border": "0",
  7879. "scrolling ": "no",
  7880. "style": {
  7881. "cssText": "border:0;width:100%;height:100%"
  7882. },
  7883. "src": "/Office/Word/WordEditArea.htm"
  7884. })
  7885. _box.appendChild(_iframe);
  7886. _box.appendChild(_jie);
  7887. _formdiv = new U.UF.UI.form(
  7888. "协同文档",
  7889. _box, {
  7890. "id": "doc" + cid + stage + task + tool,
  7891. "style": {
  7892. "width": "90%",
  7893. "height": "90%",
  7894. "overflow": 'hidden'
  7895. },
  7896. "onresize": function () { }
  7897. }, {
  7898. closecallback: function () { }
  7899. }, {
  7900. "style": {
  7901. "height": "36px"
  7902. }
  7903. }).form; //创建窗体
  7904. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7905. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7906. })
  7907. _taskbar = {
  7908. "id": str + _formdiv.id,
  7909. "style": {
  7910. "backgroundImage": "url(/img/icon/doc.png)"
  7911. },
  7912. "name": "协同文档",
  7913. "forms": _formdiv,
  7914. "click": function () {
  7915. U.MD.D.I.openApplication(str, obj, info);
  7916. }
  7917. }
  7918. break;
  7919. case "mindNetwork": //好友打开
  7920. aTool = 7;
  7921. _iframe = $$("iframe", {
  7922. "webkitallowfullscreen": "",
  7923. "mozallowfullscreen": "",
  7924. "allowfullscreen": "",
  7925. "frameborder": "no",
  7926. "border": "0",
  7927. "scrolling ": "no",
  7928. "style": {
  7929. "cssText": "border:0; width:100%; height:100%;"
  7930. },
  7931. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7932. })
  7933. _box.appendChild(_iframe);
  7934. _box.appendChild(_jie);
  7935. _formdiv = new U.UF.UI.form(
  7936. "思维网格",
  7937. _box, {
  7938. "id": "mindNetwork" + cid + stage + task + tool,
  7939. "style": {
  7940. "width": "90%",
  7941. "height": "90%",
  7942. "overflow": 'hidden'
  7943. },
  7944. "onresize": function () { }
  7945. }, {
  7946. closecallback: function () { }
  7947. }, {
  7948. "style": {
  7949. "height": "36px"
  7950. }
  7951. }).form; //创建窗体
  7952. _taskbar = {
  7953. "id": str + _formdiv.id,
  7954. "style": {
  7955. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7956. },
  7957. "name": "思维网格",
  7958. "forms": _formdiv,
  7959. "click": function () {
  7960. U.MD.D.I.openApplication(str, obj, info);
  7961. }
  7962. }
  7963. break;
  7964. case "courseDesign":
  7965. _iframe = $$("iframe", {
  7966. "webkitallowfullscreen": "",
  7967. "mozallowfullscreen": "",
  7968. "allowfullscreen": "",
  7969. "frameborder": "no",
  7970. "border": "0",
  7971. "scrolling ": "no",
  7972. "style": {
  7973. "cssText": "border:0; width:100%; height:100%;"
  7974. },
  7975. "src": "/course-design-vue"
  7976. })
  7977. _box.appendChild(_iframe);
  7978. _box.appendChild(_jie);
  7979. _formdiv = new U.UF.UI.form(
  7980. "项目设计",
  7981. _box, {
  7982. "id": "courseDesign" + 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/courseDesign.png)"
  8000. },
  8001. "name": "项目设计",
  8002. "forms": _formdiv,
  8003. "click": function () {
  8004. U.MD.D.I.openApplication(str, obj, info);
  8005. }
  8006. }
  8007. break;
  8008. }
  8009. const script1 = document.createElement("script");
  8010. script1.type = "text/javascript";
  8011. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8012. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8013. const script2 = document.createElement("script");
  8014. script2.type = "text/javascript";
  8015. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8016. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8017. const script3 = document.createElement("script");
  8018. script3.type = "text/javascript";
  8019. script3.charset = "UTF-8";
  8020. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8021. const script4 = document.createElement("script");
  8022. script4.type = "text/javascript";
  8023. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8024. script4.src = window.origin + "/js/Common/jietu2E.js";
  8025. if (_iframe) {
  8026. if (str == 'doc') {
  8027. _iframe = _formdiv.querySelector('iframe')
  8028. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8029. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8030. _iframe.contentWindow.document.body.appendChild(script1);
  8031. _iframe.contentWindow.document.body.appendChild(script2);
  8032. // _iframe.contentWindow.document.body.appendChild(script3);
  8033. _iframe.contentWindow.document.body.appendChild(script4);
  8034. })
  8035. if (onloadListener) {
  8036. _iframe.contentDocument.location.reload()
  8037. } else {
  8038. _iframe.contentDocument.location.reload()
  8039. }
  8040. } else if (str == 'courseDesign') {
  8041. U.UF.DL.iframeLoad(_iframe, function () {
  8042. // _iframe.contentWindow.U.MD.O.W.load();
  8043. // _iframe.contentWindow.document.body.appendChild(script1);
  8044. _iframe.contentWindow.document.body.appendChild(script2);
  8045. _iframe.contentWindow.document.body.appendChild(script4);
  8046. })
  8047. } else if (str == 'mind') {
  8048. _iframe = _formdiv.querySelector('iframe')
  8049. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8050. //
  8051. _iframe.contentWindow.document.body.appendChild(script1);
  8052. _iframe.contentWindow.document.body.appendChild(script2);
  8053. _iframe.contentWindow.document.body.appendChild(script4);
  8054. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8055. })
  8056. if (onloadListener) {
  8057. _iframe.contentDocument.location.reload()
  8058. } else {
  8059. _iframe.contentDocument.location.reload()
  8060. }
  8061. } else if (str == 'whiteboard') {
  8062. _iframe = _formdiv.querySelector('iframe')
  8063. let onloadListener = _iframe.onload = () => {
  8064. _iframe.contentWindow.document.body.appendChild(script1);
  8065. _iframe.contentWindow.document.body.appendChild(script2);
  8066. _iframe.contentWindow.document.body.appendChild(script4);
  8067. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8068. };
  8069. // if (onloadListener) {
  8070. // try {
  8071. // _iframe.src += "?cocorobo="+new Date().getTime()
  8072. // _iframe.contentWindow.document.location.reload()
  8073. // } catch (error) {
  8074. // }
  8075. // } else {
  8076. // _iframe.contentDocument.location.reload()
  8077. // }
  8078. } else {
  8079. _iframe.onload = () => {
  8080. _iframe.contentWindow.document.body.appendChild(script1);
  8081. _iframe.contentWindow.document.body.appendChild(script2);
  8082. // _iframe.contentWindow.document.body.appendChild(script3);
  8083. _iframe.contentWindow.document.body.appendChild(script4);
  8084. };
  8085. }
  8086. _jie.onclick = async () => {
  8087. let text = ''
  8088. if (aTool == 1) {
  8089. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8090. } else if (aTool == 6) {
  8091. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8092. } else if (aTool == 3) {
  8093. text = await U.MD.D.I.getEditorContent(_iframe);
  8094. }
  8095. _loading.style.display = 'flex'
  8096. console.log(_loading);
  8097. var _ajs = _iframe.contentWindow.document.createElement("script");
  8098. _ajs.type = "text/javascript";
  8099. _ajs.innerHTML =
  8100. // 'console.log(' + _loading + ');\n' +
  8101. 'var _js = document.createElement("script");\n' +
  8102. '_js.type="text/javascript";\n' +
  8103. '_js.charset="UTF-8";\n' +
  8104. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8105. "_js.onload = function(){\n" +
  8106. ' var a = document.getElementsByTagName("img")\n' +
  8107. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8108. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8109. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8110. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8111. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8112. "beforeUpload_shishi(file," +
  8113. "'" +
  8114. _userid +
  8115. "'" +
  8116. ", " +
  8117. "'" +
  8118. _cid +
  8119. "'" +
  8120. ", " +
  8121. "'" +
  8122. _stage +
  8123. "'" +
  8124. ", " +
  8125. "'" +
  8126. _task +
  8127. "'" +
  8128. ", " +
  8129. "'" +
  8130. _tool +
  8131. "'" +
  8132. ", " +
  8133. "'" +
  8134. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8135. "'" +
  8136. ", " +
  8137. "'" +
  8138. aTool +
  8139. "'" +
  8140. ", " +
  8141. "`" +
  8142. text +
  8143. "`" +
  8144. ")\n" +
  8145. " });\n" +
  8146. "}\n" +
  8147. "document.head.appendChild(_js);\n";
  8148. _iframe.contentWindow.document.head.appendChild(_ajs);
  8149. }
  8150. }
  8151. //U.MD.D.I.openClick(str);
  8152. //如果有任务栏信息
  8153. // if (_taskbar) {
  8154. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8155. // }
  8156. }
  8157. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8158. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8159. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8160. _userid = student.userid, //登录用户id
  8161. _username = student.student //用户名字
  8162. let _iframe;
  8163. let _cid = cid,
  8164. _stage = stage,
  8165. _task = task,
  8166. _tool = tool;
  8167. var _jie = $$("div", {
  8168. "style": {
  8169. "position": "absolute",
  8170. "bottom": "50px",
  8171. "right": "50px",
  8172. "zIndex": "9999",
  8173. "backgroundColor": "#2268bc",
  8174. "color": "#fff",
  8175. "padding": "12px 20px",
  8176. "cursor": "pointer",
  8177. "borderRadius": "4px",
  8178. },
  8179. "innerHTML": "提交作业"
  8180. })
  8181. let aTool = ''
  8182. let _loading = document.createElement('div')
  8183. _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;"
  8184. // _loading.id = "";
  8185. let _lchild = document.createElement('div')
  8186. let _limg = document.createElement('img')
  8187. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8188. _limg.style = "width: 26px;margin-right: 10px;"
  8189. _lchild.appendChild(_limg)
  8190. let _lspan = document.createElement('span')
  8191. _lspan.innerHTML = "上传中..."
  8192. _lchild.appendChild(_lspan)
  8193. _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%);"
  8194. _loading.appendChild(_lchild)
  8195. var _box = $$('div', {
  8196. "style": {
  8197. "position": "relative",
  8198. "width": "100%",
  8199. "height": "100%",
  8200. },
  8201. })
  8202. _box.appendChild(_loading)
  8203. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8204. switch (str) {
  8205. case "whiteboard":
  8206. aTool = 1;
  8207. _iframe = $$("iframe", {
  8208. "frameborder": "no",
  8209. "border": "0",
  8210. "scrolling ": "no",
  8211. "style": {
  8212. "cssText": "border:0;width:100%;height:100%"
  8213. },
  8214. "src": "https://beta.iwb.cocorobo.cn/"
  8215. })
  8216. _box.appendChild(_iframe);
  8217. _box.appendChild(_jie);
  8218. _formdiv = new U.UF.UI.form(
  8219. "电子白板-" + _username,
  8220. _box, {
  8221. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8222. "style": {
  8223. "width": "90%",
  8224. "height": "90%",
  8225. "overflow": 'hidden'
  8226. },
  8227. "onresize": function () { }
  8228. }, {
  8229. closecallback: function () { }
  8230. }, {
  8231. "style": {
  8232. "height": "36px"
  8233. }
  8234. }).form; //创建窗体
  8235. _taskbar = {
  8236. "id": str + _formdiv.id,
  8237. "style": {
  8238. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8239. },
  8240. "name": "电子白板",
  8241. "forms": _formdiv,
  8242. "click": function () {
  8243. U.MD.D.I.openApplication(str, obj, info);
  8244. }
  8245. }
  8246. break;
  8247. case "mind":
  8248. aTool = 3;
  8249. _iframe = $$("iframe", {
  8250. "frameborder": "no",
  8251. "border": "0",
  8252. "scrolling ": "no",
  8253. "style": {
  8254. "cssText": "border:0;width:100%;height:100%"
  8255. },
  8256. "src": "/kityminder-editor/dist/index.html"
  8257. })
  8258. _box.appendChild(_iframe);
  8259. _box.appendChild(_jie);
  8260. _formdiv = new U.UF.UI.form(
  8261. "思维导图-" + _username,
  8262. _box, { //"/jsmind/example/demo.html"
  8263. "id": "mind" + cid + stage + task + tool + _userid,
  8264. "style": {
  8265. "width": "90%",
  8266. "height": "90%",
  8267. "overflow": 'hidden'
  8268. },
  8269. "onresize": function () { }
  8270. }, {
  8271. closecallback: function () { }
  8272. }, {
  8273. "style": {
  8274. "height": "36px"
  8275. }
  8276. }).form; //创建窗体
  8277. _taskbar = {
  8278. "id": str + _formdiv.id,
  8279. "style": {
  8280. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8281. },
  8282. "name": "思维导图",
  8283. "forms": _formdiv,
  8284. "click": function () {
  8285. U.MD.D.I.openApplication(str, obj, info);
  8286. }
  8287. }
  8288. break;
  8289. case "MindMap":
  8290. aTool = 3;
  8291. _iframe = $$("iframe", {
  8292. "frameborder": "no",
  8293. "border": "0",
  8294. "scrolling ": "no",
  8295. "style": {
  8296. "cssText": "border:0;width:100%;height:100%"
  8297. },
  8298. "src": "//cloud.cocorobo.cn/mind/"
  8299. })
  8300. _box.appendChild(_iframe);
  8301. _box.appendChild(_jie);
  8302. _formdiv = new U.UF.UI.form(
  8303. "思维导图-" + _username,
  8304. _box, { //"/jsmind/example/demo.html"
  8305. "id": "mind" + cid + stage + task + tool + _userid,
  8306. "style": {
  8307. "width": "90%",
  8308. "height": "90%",
  8309. "overflow": 'hidden'
  8310. },
  8311. "onresize": function () { }
  8312. }, {
  8313. closecallback: function () { }
  8314. }, {
  8315. "style": {
  8316. "height": "36px"
  8317. }
  8318. }).form; //创建窗体
  8319. _taskbar = {
  8320. "id": str + _formdiv.id,
  8321. "style": {
  8322. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8323. },
  8324. "name": "思维导图",
  8325. "forms": _formdiv,
  8326. "click": function () {
  8327. U.MD.D.I.openApplication(str, obj, info);
  8328. }
  8329. }
  8330. break;
  8331. case "doc":
  8332. aTool = 6;
  8333. _iframe = $$("iframe", {
  8334. "frameborder": "no",
  8335. "border": "0",
  8336. "scrolling ": "no",
  8337. "style": {
  8338. "cssText": "border:0;width:100%;height:100%"
  8339. },
  8340. "src": "/Office/Word/WordEditArea.htm"
  8341. })
  8342. _box.appendChild(_iframe);
  8343. _box.appendChild(_jie);
  8344. _formdiv = new U.UF.UI.form(
  8345. "协同文档-" + _username,
  8346. _box, {
  8347. "id": "doc" + cid + stage + task + tool + _userid,
  8348. "style": {
  8349. "width": "90%",
  8350. "height": "90%",
  8351. "overflow": 'hidden'
  8352. },
  8353. "onresize": function () { }
  8354. }, {
  8355. closecallback: function () { }
  8356. }, {
  8357. "style": {
  8358. "height": "36px"
  8359. }
  8360. }).form; //创建窗体
  8361. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8362. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8363. })
  8364. _taskbar = {
  8365. "id": str + _formdiv.id,
  8366. "style": {
  8367. "backgroundImage": "url(/img/icon/doc.png)"
  8368. },
  8369. "name": "协同文档",
  8370. "forms": _formdiv,
  8371. "click": function () {
  8372. U.MD.D.I.openApplication(str, obj, info);
  8373. }
  8374. }
  8375. break;
  8376. case "mindNetwork": //好友打开
  8377. aTool = 7;
  8378. _iframe = $$("iframe", {
  8379. "webkitallowfullscreen": "",
  8380. "mozallowfullscreen": "",
  8381. "allowfullscreen": "",
  8382. "frameborder": "no",
  8383. "border": "0",
  8384. "scrolling ": "no",
  8385. "style": {
  8386. "cssText": "border:0; width:100%; height:100%;"
  8387. },
  8388. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8389. })
  8390. _box.appendChild(_iframe);
  8391. _box.appendChild(_jie);
  8392. _formdiv = new U.UF.UI.form(
  8393. "思维网格-" + _username,
  8394. _box, {
  8395. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8396. "style": {
  8397. "width": "90%",
  8398. "height": "90%",
  8399. "overflow": 'hidden'
  8400. },
  8401. "onresize": function () { }
  8402. }, {
  8403. closecallback: function () { }
  8404. }, {
  8405. "style": {
  8406. "height": "36px"
  8407. }
  8408. }).form; //创建窗体
  8409. _taskbar = {
  8410. "id": str + _formdiv.id,
  8411. "style": {
  8412. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8413. },
  8414. "name": "思维网格",
  8415. "forms": _formdiv,
  8416. "click": function () {
  8417. U.MD.D.I.openApplication(str, obj, info);
  8418. }
  8419. }
  8420. break;
  8421. case "courseDesign":
  8422. _iframe = $$("iframe", {
  8423. "webkitallowfullscreen": "",
  8424. "mozallowfullscreen": "",
  8425. "allowfullscreen": "",
  8426. "frameborder": "no",
  8427. "border": "0",
  8428. "scrolling ": "no",
  8429. "style": {
  8430. "cssText": "border:0; width:100%; height:100%;"
  8431. },
  8432. "src": "/course-design-vue"
  8433. })
  8434. _box.appendChild(_iframe);
  8435. _box.appendChild(_jie);
  8436. _formdiv = new U.UF.UI.form(
  8437. "项目设计-" + _username,
  8438. _box, {
  8439. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8440. "style": {
  8441. "width": "90%",
  8442. "height": "90%",
  8443. "overflow": 'hidden'
  8444. },
  8445. "onresize": function () { }
  8446. }, {
  8447. closecallback: function () { }
  8448. }, {
  8449. "style": {
  8450. "height": "36px"
  8451. }
  8452. }).form; //创建窗体
  8453. _taskbar = {
  8454. "id": str + _formdiv.id,
  8455. "style": {
  8456. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8457. },
  8458. "name": "项目设计",
  8459. "forms": _formdiv,
  8460. "click": function () {
  8461. U.MD.D.I.openApplication(str, obj, info);
  8462. }
  8463. }
  8464. break;
  8465. }
  8466. const script1 = document.createElement("script");
  8467. script1.type = "text/javascript";
  8468. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8469. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8470. const script2 = document.createElement("script");
  8471. script2.type = "text/javascript";
  8472. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8473. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8474. const script3 = document.createElement("script");
  8475. script3.type = "text/javascript";
  8476. script3.charset = "UTF-8";
  8477. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8478. const script4 = document.createElement("script");
  8479. script4.type = "text/javascript";
  8480. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8481. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8482. if (_iframe) {
  8483. if (str == 'doc') {
  8484. _iframe = _formdiv.querySelector('iframe')
  8485. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8486. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8487. _iframe.contentWindow.document.body.appendChild(script1);
  8488. _iframe.contentWindow.document.body.appendChild(script2);
  8489. // _iframe.contentWindow.document.body.appendChild(script3);
  8490. _iframe.contentWindow.document.body.appendChild(script4);
  8491. })
  8492. if (onloadListener) {
  8493. _iframe.contentDocument.location.reload()
  8494. } else {
  8495. _iframe.contentDocument.location.reload()
  8496. }
  8497. } else if (str == 'courseDesign') {
  8498. U.UF.DL.iframeLoad(_iframe, function () {
  8499. // _iframe.contentWindow.U.MD.O.W.load();
  8500. // _iframe.contentWindow.document.body.appendChild(script1);
  8501. _iframe.contentWindow.document.body.appendChild(script2);
  8502. _iframe.contentWindow.document.body.appendChild(script4);
  8503. })
  8504. } else if (str == 'mind') {
  8505. _iframe = _formdiv.querySelector('iframe')
  8506. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8507. //
  8508. _iframe.contentWindow.document.body.appendChild(script1);
  8509. _iframe.contentWindow.document.body.appendChild(script2);
  8510. _iframe.contentWindow.document.body.appendChild(script4);
  8511. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8512. })
  8513. if (onloadListener) {
  8514. _iframe.contentDocument.location.reload()
  8515. } else {
  8516. _iframe.contentDocument.location.reload()
  8517. }
  8518. } else if (str == 'whiteboard') {
  8519. _iframe = _formdiv.querySelector('iframe')
  8520. let onloadListener = _iframe.onload = () => {
  8521. _iframe.contentWindow.document.body.appendChild(script1);
  8522. _iframe.contentWindow.document.body.appendChild(script2);
  8523. _iframe.contentWindow.document.body.appendChild(script4);
  8524. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8525. };
  8526. // if (onloadListener) {
  8527. // try {
  8528. // _iframe.src += "?cocorobo="+new Date().getTime()
  8529. // _iframe.contentWindow.document.location.reload()
  8530. // } catch (error) {
  8531. // }
  8532. // } else {
  8533. // _iframe.contentDocument.location.reload()
  8534. // }
  8535. } else {
  8536. _iframe.onload = () => {
  8537. _iframe.contentWindow.document.body.appendChild(script1);
  8538. _iframe.contentWindow.document.body.appendChild(script2);
  8539. // _iframe.contentWindow.document.body.appendChild(script3);
  8540. _iframe.contentWindow.document.body.appendChild(script4);
  8541. };
  8542. }
  8543. _jie.onclick = async () => {
  8544. let text = ''
  8545. if (aTool == 1) {
  8546. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8547. } else if (aTool == 6) {
  8548. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8549. } else if (aTool == 3) {
  8550. text = await U.MD.D.I.getEditorContent(_iframe);
  8551. }
  8552. _loading.style.display = 'flex'
  8553. console.log(_loading);
  8554. var _ajs = _iframe.contentWindow.document.createElement("script");
  8555. _ajs.type = "text/javascript";
  8556. _ajs.innerHTML =
  8557. // 'console.log(' + _loading + ');\n' +
  8558. 'var _js = document.createElement("script");\n' +
  8559. '_js.type="text/javascript";\n' +
  8560. '_js.charset="UTF-8";\n' +
  8561. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8562. "_js.onload = function(){\n" +
  8563. ' var a = document.getElementsByTagName("img")\n' +
  8564. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8565. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8566. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8567. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8568. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8569. "beforeUpload_shishi(file," +
  8570. "'" +
  8571. _userid +
  8572. "'" +
  8573. ", " +
  8574. "'" +
  8575. _cid +
  8576. "'" +
  8577. ", " +
  8578. "'" +
  8579. _stage +
  8580. "'" +
  8581. ", " +
  8582. "'" +
  8583. _task +
  8584. "'" +
  8585. ", " +
  8586. "'" +
  8587. _tool +
  8588. "'" +
  8589. ", " +
  8590. "'" +
  8591. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8592. "'" +
  8593. ", " +
  8594. "'" +
  8595. aTool +
  8596. "'" +
  8597. ", " +
  8598. "`" +
  8599. text +
  8600. "`" +
  8601. ")\n" +
  8602. " });\n" +
  8603. "}\n" +
  8604. "document.head.appendChild(_js);\n";
  8605. _iframe.contentWindow.document.head.appendChild(_ajs);
  8606. }
  8607. }
  8608. }
  8609. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8610. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8611. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8612. _userid = student.userid, //登录用户id
  8613. _username = student.student //用户名字
  8614. let _iframe;
  8615. let _cid = cid,
  8616. _stage = stage,
  8617. _task = task,
  8618. _tool = tool;
  8619. var _jie = $$("div", {
  8620. "style": {
  8621. "position": "absolute",
  8622. "bottom": "50px",
  8623. "right": "50px",
  8624. "zIndex": "9999",
  8625. "backgroundColor": "#2268bc",
  8626. "color": "#fff",
  8627. "padding": "12px 20px",
  8628. "cursor": "pointer",
  8629. "borderRadius": "4px",
  8630. },
  8631. "innerHTML": "提交作业"
  8632. })
  8633. let aTool = ''
  8634. let _loading = document.createElement('div')
  8635. _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;"
  8636. // _loading.id = "";
  8637. let _lchild = document.createElement('div')
  8638. let _limg = document.createElement('img')
  8639. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8640. _limg.style = "width: 26px;margin-right: 10px;"
  8641. _lchild.appendChild(_limg)
  8642. let _lspan = document.createElement('span')
  8643. _lspan.innerHTML = "上传中..."
  8644. _lchild.appendChild(_lspan)
  8645. _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%);"
  8646. _loading.appendChild(_lchild)
  8647. var _box = $$('div', {
  8648. "style": {
  8649. "position": "relative",
  8650. "width": "100%",
  8651. "height": "100%",
  8652. },
  8653. })
  8654. _box.appendChild(_loading)
  8655. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8656. switch (str) {
  8657. case "whiteboard":
  8658. aTool = 1;
  8659. _iframe = $$("iframe", {
  8660. "frameborder": "no",
  8661. "border": "0",
  8662. "scrolling ": "no",
  8663. "style": {
  8664. "cssText": "border:0;width:100%;height:100%"
  8665. },
  8666. "src": "https://beta.iwb.cocorobo.cn/"
  8667. })
  8668. _box.appendChild(_iframe);
  8669. _box.appendChild(_jie);
  8670. _formdiv = new U.UF.UI.form(
  8671. "电子白板-" + _username,
  8672. _box, {
  8673. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8674. "style": {
  8675. "width": "90%",
  8676. "height": "90%",
  8677. "overflow": 'hidden'
  8678. },
  8679. "onresize": function () { }
  8680. }, {
  8681. closecallback: function () { }
  8682. }, {
  8683. "style": {
  8684. "height": "36px"
  8685. }
  8686. }).form; //创建窗体
  8687. _taskbar = {
  8688. "id": str + _formdiv.id,
  8689. "style": {
  8690. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8691. },
  8692. "name": "电子白板",
  8693. "forms": _formdiv,
  8694. "click": function () {
  8695. U.MD.D.I.openApplication(str, obj, info);
  8696. }
  8697. }
  8698. break;
  8699. case "mind":
  8700. aTool = 3;
  8701. _iframe = $$("iframe", {
  8702. "frameborder": "no",
  8703. "border": "0",
  8704. "scrolling ": "no",
  8705. "style": {
  8706. "cssText": "border:0;width:100%;height:100%"
  8707. },
  8708. "src": "/kityminder-editor/dist/index.html"
  8709. })
  8710. _box.appendChild(_iframe);
  8711. _box.appendChild(_jie);
  8712. _formdiv = new U.UF.UI.form(
  8713. "思维导图-" + _username,
  8714. _box, { //"/jsmind/example/demo.html"
  8715. "id": "mind" + cid + stage + task + tool + _userid,
  8716. "style": {
  8717. "width": "90%",
  8718. "height": "90%",
  8719. "overflow": 'hidden'
  8720. },
  8721. "onresize": function () { }
  8722. }, {
  8723. closecallback: function () { }
  8724. }, {
  8725. "style": {
  8726. "height": "36px"
  8727. }
  8728. }).form; //创建窗体
  8729. _taskbar = {
  8730. "id": str + _formdiv.id,
  8731. "style": {
  8732. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8733. },
  8734. "name": "思维导图",
  8735. "forms": _formdiv,
  8736. "click": function () {
  8737. U.MD.D.I.openApplication(str, obj, info);
  8738. }
  8739. }
  8740. break;
  8741. case "MindMap":
  8742. aTool = 3;
  8743. _iframe = $$("iframe", {
  8744. "frameborder": "no",
  8745. "border": "0",
  8746. "scrolling ": "no",
  8747. "style": {
  8748. "cssText": "border:0;width:100%;height:100%"
  8749. },
  8750. "src": "//cloud.cocorobo.cn/mind/"
  8751. })
  8752. _box.appendChild(_iframe);
  8753. _box.appendChild(_jie);
  8754. _formdiv = new U.UF.UI.form(
  8755. "思维导图-" + _username,
  8756. _box, { //"/jsmind/example/demo.html"
  8757. "id": "mind" + cid + stage + task + tool + _userid,
  8758. "style": {
  8759. "width": "90%",
  8760. "height": "90%",
  8761. "overflow": 'hidden'
  8762. },
  8763. "onresize": function () { }
  8764. }, {
  8765. closecallback: function () { }
  8766. }, {
  8767. "style": {
  8768. "height": "36px"
  8769. }
  8770. }).form; //创建窗体
  8771. _taskbar = {
  8772. "id": str + _formdiv.id,
  8773. "style": {
  8774. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8775. },
  8776. "name": "思维导图",
  8777. "forms": _formdiv,
  8778. "click": function () {
  8779. U.MD.D.I.openApplication(str, obj, info);
  8780. }
  8781. }
  8782. break;
  8783. case "doc":
  8784. aTool = 6;
  8785. _iframe = $$("iframe", {
  8786. "frameborder": "no",
  8787. "border": "0",
  8788. "scrolling ": "no",
  8789. "style": {
  8790. "cssText": "border:0;width:100%;height:100%"
  8791. },
  8792. "src": "/Office/Word/WordEditArea.htm"
  8793. })
  8794. _box.appendChild(_iframe);
  8795. _box.appendChild(_jie);
  8796. _formdiv = new U.UF.UI.form(
  8797. "协同文档-" + _username,
  8798. _box, {
  8799. "id": "doc" + cid + stage + task + tool + _userid,
  8800. "style": {
  8801. "width": "90%",
  8802. "height": "90%",
  8803. "overflow": 'hidden'
  8804. },
  8805. "onresize": function () { }
  8806. }, {
  8807. closecallback: function () { }
  8808. }, {
  8809. "style": {
  8810. "height": "36px"
  8811. }
  8812. }).form; //创建窗体
  8813. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8814. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8815. })
  8816. _taskbar = {
  8817. "id": str + _formdiv.id,
  8818. "style": {
  8819. "backgroundImage": "url(/img/icon/doc.png)"
  8820. },
  8821. "name": "协同文档",
  8822. "forms": _formdiv,
  8823. "click": function () {
  8824. U.MD.D.I.openApplication(str, obj, info);
  8825. }
  8826. }
  8827. break;
  8828. case "mindNetwork": //好友打开
  8829. aTool = 7;
  8830. _iframe = $$("iframe", {
  8831. "webkitallowfullscreen": "",
  8832. "mozallowfullscreen": "",
  8833. "allowfullscreen": "",
  8834. "frameborder": "no",
  8835. "border": "0",
  8836. "scrolling ": "no",
  8837. "style": {
  8838. "cssText": "border:0; width:100%; height:100%;"
  8839. },
  8840. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8841. })
  8842. _box.appendChild(_iframe);
  8843. _box.appendChild(_jie);
  8844. _formdiv = new U.UF.UI.form(
  8845. "思维网格-" + _username,
  8846. _box, {
  8847. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8848. "style": {
  8849. "width": "90%",
  8850. "height": "90%",
  8851. "overflow": 'hidden'
  8852. },
  8853. "onresize": function () { }
  8854. }, {
  8855. closecallback: function () { }
  8856. }, {
  8857. "style": {
  8858. "height": "36px"
  8859. }
  8860. }).form; //创建窗体
  8861. _taskbar = {
  8862. "id": str + _formdiv.id,
  8863. "style": {
  8864. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8865. },
  8866. "name": "思维网格",
  8867. "forms": _formdiv,
  8868. "click": function () {
  8869. U.MD.D.I.openApplication(str, obj, info);
  8870. }
  8871. }
  8872. break;
  8873. case "courseDesign":
  8874. _iframe = $$("iframe", {
  8875. "webkitallowfullscreen": "",
  8876. "mozallowfullscreen": "",
  8877. "allowfullscreen": "",
  8878. "frameborder": "no",
  8879. "border": "0",
  8880. "scrolling ": "no",
  8881. "style": {
  8882. "cssText": "border:0; width:100%; height:100%;"
  8883. },
  8884. "src": "/course-design-vue"
  8885. })
  8886. _box.appendChild(_iframe);
  8887. _box.appendChild(_jie);
  8888. _formdiv = new U.UF.UI.form(
  8889. "项目设计-" + _username,
  8890. _box, {
  8891. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8892. "style": {
  8893. "width": "90%",
  8894. "height": "90%",
  8895. "overflow": 'hidden'
  8896. },
  8897. "onresize": function () { }
  8898. }, {
  8899. closecallback: function () { }
  8900. }, {
  8901. "style": {
  8902. "height": "36px"
  8903. }
  8904. }).form; //创建窗体
  8905. _taskbar = {
  8906. "id": str + _formdiv.id,
  8907. "style": {
  8908. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8909. },
  8910. "name": "项目设计",
  8911. "forms": _formdiv,
  8912. "click": function () {
  8913. U.MD.D.I.openApplication(str, obj, info);
  8914. }
  8915. }
  8916. break;
  8917. }
  8918. const script1 = document.createElement("script");
  8919. script1.type = "text/javascript";
  8920. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8921. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8922. const script2 = document.createElement("script");
  8923. script2.type = "text/javascript";
  8924. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8925. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8926. const script3 = document.createElement("script");
  8927. script3.type = "text/javascript";
  8928. script3.charset = "UTF-8";
  8929. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8930. const script4 = document.createElement("script");
  8931. script4.type = "text/javascript";
  8932. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8933. script4.src = window.origin + "/js/Common/jietu2E.js";
  8934. if (_iframe) {
  8935. if (str == 'doc') {
  8936. _iframe = _formdiv.querySelector('iframe')
  8937. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8938. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8939. _iframe.contentWindow.document.body.appendChild(script1);
  8940. _iframe.contentWindow.document.body.appendChild(script2);
  8941. // _iframe.contentWindow.document.body.appendChild(script3);
  8942. _iframe.contentWindow.document.body.appendChild(script4);
  8943. })
  8944. if (onloadListener) {
  8945. _iframe.contentDocument.location.reload()
  8946. } else {
  8947. _iframe.contentDocument.location.reload()
  8948. }
  8949. } else if (str == 'courseDesign') {
  8950. U.UF.DL.iframeLoad(_iframe, function () {
  8951. // _iframe.contentWindow.U.MD.O.W.load();
  8952. // _iframe.contentWindow.document.body.appendChild(script1);
  8953. _iframe.contentWindow.document.body.appendChild(script2);
  8954. _iframe.contentWindow.document.body.appendChild(script4);
  8955. })
  8956. } else if (str == 'mind') {
  8957. _iframe = _formdiv.querySelector('iframe')
  8958. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8959. //
  8960. _iframe.contentWindow.document.body.appendChild(script1);
  8961. _iframe.contentWindow.document.body.appendChild(script2);
  8962. _iframe.contentWindow.document.body.appendChild(script4);
  8963. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8964. })
  8965. if (onloadListener) {
  8966. _iframe.contentDocument.location.reload()
  8967. } else {
  8968. _iframe.contentDocument.location.reload()
  8969. }
  8970. } else if (str == 'whiteboard') {
  8971. _iframe = _formdiv.querySelector('iframe')
  8972. let onloadListener = _iframe.onload = () => {
  8973. _iframe.contentWindow.document.body.appendChild(script1);
  8974. _iframe.contentWindow.document.body.appendChild(script2);
  8975. _iframe.contentWindow.document.body.appendChild(script4);
  8976. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8977. };
  8978. // if (onloadListener) {
  8979. // try {
  8980. // _iframe.src += "?cocorobo="+new Date().getTime()
  8981. // _iframe.contentWindow.document.location.reload()
  8982. // } catch (error) {
  8983. // }
  8984. // } else {
  8985. // _iframe.contentDocument.location.reload()
  8986. // }
  8987. } else {
  8988. _iframe.onload = () => {
  8989. _iframe.contentWindow.document.body.appendChild(script1);
  8990. _iframe.contentWindow.document.body.appendChild(script2);
  8991. // _iframe.contentWindow.document.body.appendChild(script3);
  8992. _iframe.contentWindow.document.body.appendChild(script4);
  8993. };
  8994. }
  8995. _jie.onclick = async () => {
  8996. let text = ''
  8997. if (aTool == 1) {
  8998. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8999. } else if (aTool == 6) {
  9000. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9001. } else if (aTool == 3) {
  9002. text = await U.MD.D.I.getEditorContent(_iframe);
  9003. }
  9004. _loading.style.display = 'flex'
  9005. console.log(_loading);
  9006. var _ajs = _iframe.contentWindow.document.createElement("script");
  9007. _ajs.type = "text/javascript";
  9008. _ajs.innerHTML =
  9009. // 'console.log(' + _loading + ');\n' +
  9010. 'var _js = document.createElement("script");\n' +
  9011. '_js.type="text/javascript";\n' +
  9012. '_js.charset="UTF-8";\n' +
  9013. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9014. "_js.onload = function(){\n" +
  9015. ' var a = document.getElementsByTagName("img")\n' +
  9016. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9017. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9018. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9019. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9020. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9021. "beforeUpload_shishi(file," +
  9022. "'" +
  9023. _userid +
  9024. "'" +
  9025. ", " +
  9026. "'" +
  9027. _cid +
  9028. "'" +
  9029. ", " +
  9030. "'" +
  9031. _stage +
  9032. "'" +
  9033. ", " +
  9034. "'" +
  9035. _task +
  9036. "'" +
  9037. ", " +
  9038. "'" +
  9039. _tool +
  9040. "'" +
  9041. ", " +
  9042. "'" +
  9043. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9044. "'" +
  9045. ", " +
  9046. "'" +
  9047. aTool +
  9048. "'" +
  9049. ", " +
  9050. "`" +
  9051. text +
  9052. "`" +
  9053. ")\n" +
  9054. " });\n" +
  9055. "}\n" +
  9056. "document.head.appendChild(_js);\n";
  9057. _iframe.contentWindow.document.head.appendChild(_ajs);
  9058. }
  9059. }
  9060. }
  9061. U.MD.D.I.getEditorContent = function (iframe) {
  9062. return new Promise((resolve, reject) => {
  9063. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9064. console.log(content);
  9065. resolve(content)
  9066. });
  9067. });
  9068. }
  9069. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9070. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9071. // if (res.value[0].length > 0) {
  9072. // // resolve(res.value[0][0].text);
  9073. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9074. // $(fileInput).val('');
  9075. // });
  9076. // }
  9077. // }, [], { "type": "GET", "withCredentials": true });
  9078. var xmlhttp;
  9079. var Mac, Sn, DeviceId
  9080. if (window.XMLHttpRequest) {
  9081. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9082. xmlhttp = new XMLHttpRequest();
  9083. } else {
  9084. // IE6, IE5 浏览器执行代码
  9085. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9086. }
  9087. xmlhttp.onreadystatechange = function () {
  9088. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9089. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9090. // resolve(res.value[0][0].text);
  9091. if (type == '2') {
  9092. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9093. } else if (type == '3') {
  9094. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9095. }
  9096. } else {
  9097. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9098. }
  9099. }
  9100. }
  9101. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9102. xmlhttp.send();
  9103. }
  9104. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9105. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9106. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9107. _userinfo = US.userInfo, //登录用户信息
  9108. _userid = US.userInfo.userid //登录用户id
  9109. let _iframe;
  9110. let _cid = cid,
  9111. _stage = stage,
  9112. _task = task,
  9113. _tool = tool;
  9114. var _jie = $$("div", {
  9115. "style": {
  9116. "position": "absolute",
  9117. "bottom": "50px",
  9118. "right": "50px",
  9119. "zIndex": "9999",
  9120. "backgroundColor": "#2268bc",
  9121. "color": "#fff",
  9122. "padding": "12px 20px",
  9123. "cursor": "pointer",
  9124. "borderRadius": "4px",
  9125. },
  9126. "innerHTML": "确认并提交"
  9127. })
  9128. let aTool = ''
  9129. let _loading = document.createElement('div')
  9130. _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;"
  9131. // _loading.id = "";
  9132. let _lchild = document.createElement('div')
  9133. let _limg = document.createElement('img')
  9134. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9135. _limg.style = "width: 26px;margin-right: 10px;"
  9136. _lchild.appendChild(_limg)
  9137. let _lspan = document.createElement('span')
  9138. _lspan.innerHTML = "上传中..."
  9139. _lchild.appendChild(_lspan)
  9140. _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%);"
  9141. _loading.appendChild(_lchild)
  9142. var _box = $$('div', {
  9143. "style": {
  9144. "position": "relative",
  9145. "width": "100%",
  9146. "height": "100%",
  9147. },
  9148. })
  9149. _box.appendChild(_loading)
  9150. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9151. switch (str) {
  9152. case "whiteboard":
  9153. aTool = 1;
  9154. _iframe = $$("iframe", {
  9155. "frameborder": "no",
  9156. "border": "0",
  9157. "scrolling ": "no",
  9158. "style": {
  9159. "cssText": "border:0;width:100%;height:100%"
  9160. },
  9161. "src": "https://beta.iwb.cocorobo.cn/"
  9162. })
  9163. _box.appendChild(_iframe);
  9164. _box.appendChild(_jie);
  9165. _formdiv = new U.UF.UI.form(
  9166. "电子白板",
  9167. _box, {
  9168. "id": "whiteboards" + cid + stage + task + tool,
  9169. "style": {
  9170. "width": "90%",
  9171. "height": "90%",
  9172. "overflow": 'hidden'
  9173. },
  9174. "onresize": function () { }
  9175. }, {
  9176. closecallback: function () { }
  9177. }, {
  9178. "style": {
  9179. "height": "36px"
  9180. }
  9181. }).form; //创建窗体
  9182. _taskbar = {
  9183. "id": str + _formdiv.id,
  9184. "style": {
  9185. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9186. },
  9187. "name": "电子白板",
  9188. "forms": _formdiv,
  9189. "click": function () {
  9190. U.MD.D.I.openApplication(str, obj, info);
  9191. }
  9192. }
  9193. break;
  9194. case "mind":
  9195. aTool = 3;
  9196. _iframe = $$("iframe", {
  9197. "frameborder": "no",
  9198. "border": "0",
  9199. "scrolling ": "no",
  9200. "style": {
  9201. "cssText": "border:0;width:100%;height:100%"
  9202. },
  9203. "src": "/kityminder-editor/dist/index.html"
  9204. });
  9205. _box.appendChild(_iframe);
  9206. _box.appendChild(_jie);
  9207. _formdiv = new U.UF.UI.form(
  9208. "思维导图",
  9209. _box, { //"/jsmind/example/demo.html"
  9210. "id": "minds" + cid + stage + task + tool,
  9211. "style": {
  9212. "width": "90%",
  9213. "height": "90%",
  9214. "overflow": 'hidden'
  9215. },
  9216. "onresize": function () { }
  9217. }, {
  9218. closecallback: function () { }
  9219. }, {
  9220. "style": {
  9221. "height": "36px"
  9222. }
  9223. }).form; //创建窗体
  9224. _taskbar = {
  9225. "id": str + _formdiv.id,
  9226. "style": {
  9227. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9228. },
  9229. "name": "思维导图",
  9230. "forms": _formdiv,
  9231. "click": function () {
  9232. U.MD.D.I.openApplication(str, obj, info);
  9233. }
  9234. }
  9235. break;
  9236. case "doc":
  9237. aTool = 6;
  9238. _iframe = $$("iframe", {
  9239. "frameborder": "no",
  9240. "border": "0",
  9241. "scrolling ": "no",
  9242. "style": {
  9243. "cssText": "border:0;width:100%;height:100%"
  9244. },
  9245. "src": "/Office/Word/WordEditArea.htm"
  9246. })
  9247. _box.appendChild(_iframe);
  9248. _box.appendChild(_jie);
  9249. _formdiv = new U.UF.UI.form(
  9250. "协同文档",
  9251. _box, {
  9252. "id": "docs" + cid + stage + task + tool,
  9253. "style": {
  9254. "width": "90%",
  9255. "height": "90%",
  9256. "overflow": 'hidden'
  9257. },
  9258. "onresize": function () { }
  9259. }, {
  9260. closecallback: function () { }
  9261. }, {
  9262. "style": {
  9263. "height": "36px"
  9264. }
  9265. }).form; //创建窗体
  9266. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9267. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9268. })
  9269. _taskbar = {
  9270. "id": str + _formdiv.id,
  9271. "style": {
  9272. "backgroundImage": "url(/img/icon/doc.png)"
  9273. },
  9274. "name": "协同文档",
  9275. "forms": _formdiv,
  9276. "click": function () {
  9277. U.MD.D.I.openApplication(str, obj, info);
  9278. }
  9279. }
  9280. break;
  9281. }
  9282. const script1 = document.createElement("script");
  9283. script1.type = "text/javascript";
  9284. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9285. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9286. const script2 = document.createElement("script");
  9287. script2.type = "text/javascript";
  9288. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9289. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9290. const script3 = document.createElement("script");
  9291. script3.type = "text/javascript";
  9292. script3.charset = "UTF-8";
  9293. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9294. const script4 = document.createElement("script");
  9295. script4.type = "text/javascript";
  9296. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9297. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9298. if (_iframe) {
  9299. if (str == 'doc') {
  9300. _iframe = _formdiv.querySelector('iframe')
  9301. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9302. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9303. _iframe.contentWindow.document.body.appendChild(script1);
  9304. _iframe.contentWindow.document.body.appendChild(script2);
  9305. // _iframe.contentWindow.document.body.appendChild(script3);
  9306. _iframe.contentWindow.document.body.appendChild(script4);
  9307. })
  9308. if (onloadListener) {
  9309. _iframe.contentDocument.location.reload()
  9310. } else {
  9311. _iframe.contentDocument.location.reload()
  9312. }
  9313. } else if (str == 'mind') {
  9314. _iframe = _formdiv.querySelector('iframe')
  9315. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9316. _iframe.contentWindow.document.body.appendChild(script1);
  9317. _iframe.contentWindow.document.body.appendChild(script2);
  9318. _iframe.contentWindow.document.body.appendChild(script4);
  9319. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9320. })
  9321. if (onloadListener) {
  9322. _iframe.contentDocument.location.reload()
  9323. } else {
  9324. _iframe.contentDocument.location.reload()
  9325. }
  9326. } else {
  9327. _iframe.onload = () => {
  9328. _iframe.contentWindow.document.body.appendChild(script1);
  9329. _iframe.contentWindow.document.body.appendChild(script2);
  9330. // _iframe.contentWindow.document.body.appendChild(script3);
  9331. _iframe.contentWindow.document.body.appendChild(script4);
  9332. };
  9333. }
  9334. _jie.onclick = async () => {
  9335. let text = ''
  9336. if (aTool == 6) {
  9337. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9338. } else if (aTool == 3) {
  9339. text = await U.MD.D.I.getEditorContent(_iframe);
  9340. }
  9341. _loading.style.display = 'flex'
  9342. console.log(_loading);
  9343. var _ajs = _iframe.contentWindow.document.createElement("script");
  9344. _ajs.type = "text/javascript";
  9345. _ajs.innerHTML =
  9346. // 'console.log(' + _loading + ');\n' +
  9347. 'var _js = document.createElement("script");\n' +
  9348. '_js.type="text/javascript";\n' +
  9349. '_js.charset="UTF-8";\n' +
  9350. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9351. "_js.onload = function(){\n" +
  9352. ' var a = document.getElementsByTagName("img")\n' +
  9353. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9354. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9355. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9356. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9357. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9358. "beforeUpload_shishi(file," +
  9359. "'" +
  9360. _userid +
  9361. "'" +
  9362. ", " +
  9363. "'" +
  9364. _cid +
  9365. "'" +
  9366. ", " +
  9367. "'" +
  9368. _stage +
  9369. "'" +
  9370. ", " +
  9371. "'" +
  9372. _task +
  9373. "'" +
  9374. ", " +
  9375. "'" +
  9376. _tool +
  9377. "'" +
  9378. ", " +
  9379. "'" +
  9380. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9381. "'" +
  9382. ", " +
  9383. "'" +
  9384. aTool +
  9385. "'" +
  9386. ", " +
  9387. "`" +
  9388. text +
  9389. "`" +
  9390. ")\n" +
  9391. " });\n" +
  9392. "}\n" +
  9393. "document.head.appendChild(_js);\n";
  9394. _iframe.contentWindow.document.head.appendChild(_ajs);
  9395. }
  9396. }
  9397. //U.MD.D.I.openClick(str);
  9398. //如果有任务栏信息
  9399. // if (_taskbar) {
  9400. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9401. // }
  9402. }
  9403. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9404. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9405. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9406. _userinfo = US.userInfo, //登录用户信息
  9407. _userid = US.userInfo.userid //登录用户id
  9408. let _iframe;
  9409. let _cid = cid,
  9410. _stage = stage,
  9411. _task = task,
  9412. _tool = tool;
  9413. var _jie = $$("div", {
  9414. "style": {
  9415. "position": "absolute",
  9416. "bottom": "50px",
  9417. "right": "50px",
  9418. "zIndex": "9999",
  9419. "backgroundColor": "#2268bc",
  9420. "color": "#fff",
  9421. "padding": "12px 20px",
  9422. "cursor": "pointer",
  9423. "borderRadius": "4px",
  9424. },
  9425. "innerHTML": "确认并提交"
  9426. })
  9427. let aTool = ''
  9428. let _loading = document.createElement('div')
  9429. _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;"
  9430. // _loading.id = "";
  9431. let _lchild = document.createElement('div')
  9432. let _limg = document.createElement('img')
  9433. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9434. _limg.style = "width: 26px;margin-right: 10px;"
  9435. _lchild.appendChild(_limg)
  9436. let _lspan = document.createElement('span')
  9437. _lspan.innerHTML = "上传中..."
  9438. _lchild.appendChild(_lspan)
  9439. _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%);"
  9440. _loading.appendChild(_lchild)
  9441. var _box = $$('div', {
  9442. "style": {
  9443. "position": "relative",
  9444. "width": "100%",
  9445. "height": "100%",
  9446. },
  9447. })
  9448. _box.appendChild(_loading)
  9449. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9450. switch (str) {
  9451. case "whiteboard":
  9452. aTool = 1;
  9453. _iframe = $$("iframe", {
  9454. "frameborder": "no",
  9455. "border": "0",
  9456. "scrolling ": "no",
  9457. "style": {
  9458. "cssText": "border:0;width:100%;height:100%"
  9459. },
  9460. "src": "https://beta.iwb.cocorobo.cn/"
  9461. })
  9462. _box.appendChild(_iframe);
  9463. _box.appendChild(_jie);
  9464. _formdiv = new U.UF.UI.form(
  9465. "电子白板",
  9466. _box, {
  9467. "id": "whiteboards" + cid + stage + task + tool,
  9468. "style": {
  9469. "width": "90%",
  9470. "height": "90%",
  9471. "overflow": 'hidden'
  9472. },
  9473. "onresize": function () { }
  9474. }, {
  9475. closecallback: function () { }
  9476. }, {
  9477. "style": {
  9478. "height": "36px"
  9479. }
  9480. }).form; //创建窗体
  9481. _taskbar = {
  9482. "id": str + _formdiv.id,
  9483. "style": {
  9484. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9485. },
  9486. "name": "电子白板",
  9487. "forms": _formdiv,
  9488. "click": function () {
  9489. U.MD.D.I.openApplication(str, obj, info);
  9490. }
  9491. }
  9492. break;
  9493. case "mind":
  9494. aTool = 3;
  9495. _iframe = $$("iframe", {
  9496. "frameborder": "no",
  9497. "border": "0",
  9498. "scrolling ": "no",
  9499. "style": {
  9500. "cssText": "border:0;width:100%;height:100%"
  9501. },
  9502. "src": "/kityminder-editor/dist/index.html"
  9503. });
  9504. _box.appendChild(_iframe);
  9505. _box.appendChild(_jie);
  9506. _formdiv = new U.UF.UI.form(
  9507. "思维导图",
  9508. _box, { //"/jsmind/example/demo.html"
  9509. "id": "minds" + cid + stage + task + tool,
  9510. "style": {
  9511. "width": "90%",
  9512. "height": "90%",
  9513. "overflow": 'hidden'
  9514. },
  9515. "onresize": function () { }
  9516. }, {
  9517. closecallback: function () { }
  9518. }, {
  9519. "style": {
  9520. "height": "36px"
  9521. }
  9522. }).form; //创建窗体
  9523. _taskbar = {
  9524. "id": str + _formdiv.id,
  9525. "style": {
  9526. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9527. },
  9528. "name": "思维导图",
  9529. "forms": _formdiv,
  9530. "click": function () {
  9531. U.MD.D.I.openApplication(str, obj, info);
  9532. }
  9533. }
  9534. break;
  9535. case "doc":
  9536. aTool = 6;
  9537. _iframe = $$("iframe", {
  9538. "frameborder": "no",
  9539. "border": "0",
  9540. "scrolling ": "no",
  9541. "style": {
  9542. "cssText": "border:0;width:100%;height:100%"
  9543. },
  9544. "src": "/Office/Word/WordEditArea.htm"
  9545. })
  9546. _box.appendChild(_iframe);
  9547. _box.appendChild(_jie);
  9548. _formdiv = new U.UF.UI.form(
  9549. "协同文档",
  9550. _box, {
  9551. "id": "docs" + cid + stage + task + tool,
  9552. "style": {
  9553. "width": "90%",
  9554. "height": "90%",
  9555. "overflow": 'hidden'
  9556. },
  9557. "onresize": function () { }
  9558. }, {
  9559. closecallback: function () { }
  9560. }, {
  9561. "style": {
  9562. "height": "36px"
  9563. }
  9564. }).form; //创建窗体
  9565. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9566. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9567. })
  9568. _taskbar = {
  9569. "id": str + _formdiv.id,
  9570. "style": {
  9571. "backgroundImage": "url(/img/icon/doc.png)"
  9572. },
  9573. "name": "协同文档",
  9574. "forms": _formdiv,
  9575. "click": function () {
  9576. U.MD.D.I.openApplication(str, obj, info);
  9577. }
  9578. }
  9579. break;
  9580. }
  9581. const script1 = document.createElement("script");
  9582. script1.type = "text/javascript";
  9583. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9584. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9585. const script2 = document.createElement("script");
  9586. script2.type = "text/javascript";
  9587. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9588. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9589. const script3 = document.createElement("script");
  9590. script3.type = "text/javascript";
  9591. script3.charset = "UTF-8";
  9592. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9593. const script4 = document.createElement("script");
  9594. script4.type = "text/javascript";
  9595. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9596. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9597. if (_iframe) {
  9598. if (str == 'doc') {
  9599. _iframe = _formdiv.querySelector('iframe')
  9600. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9601. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9602. _iframe.contentWindow.document.body.appendChild(script1);
  9603. _iframe.contentWindow.document.body.appendChild(script2);
  9604. // _iframe.contentWindow.document.body.appendChild(script3);
  9605. _iframe.contentWindow.document.body.appendChild(script4);
  9606. })
  9607. if (onloadListener) {
  9608. _iframe.contentDocument.location.reload()
  9609. } else {
  9610. _iframe.contentDocument.location.reload()
  9611. }
  9612. } else if (str == 'mind') {
  9613. _iframe = _formdiv.querySelector('iframe')
  9614. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9615. _iframe.contentWindow.document.body.appendChild(script1);
  9616. _iframe.contentWindow.document.body.appendChild(script2);
  9617. _iframe.contentWindow.document.body.appendChild(script4);
  9618. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9619. })
  9620. if (onloadListener) {
  9621. _iframe.contentDocument.location.reload()
  9622. } else {
  9623. _iframe.contentDocument.location.reload()
  9624. }
  9625. } else {
  9626. _iframe.onload = () => {
  9627. _iframe.contentWindow.document.body.appendChild(script1);
  9628. _iframe.contentWindow.document.body.appendChild(script2);
  9629. // _iframe.contentWindow.document.body.appendChild(script3);
  9630. _iframe.contentWindow.document.body.appendChild(script4);
  9631. };
  9632. }
  9633. _jie.onclick = async () => {
  9634. let text = ''
  9635. if (aTool == 6) {
  9636. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9637. } else if (aTool == 3) {
  9638. text = await U.MD.D.I.getEditorContent(_iframe);
  9639. }
  9640. _loading.style.display = 'flex'
  9641. console.log(_loading);
  9642. var _ajs = _iframe.contentWindow.document.createElement("script");
  9643. _ajs.type = "text/javascript";
  9644. _ajs.innerHTML =
  9645. // 'console.log(' + _loading + ');\n' +
  9646. 'var _js = document.createElement("script");\n' +
  9647. '_js.type="text/javascript";\n' +
  9648. '_js.charset="UTF-8";\n' +
  9649. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9650. "_js.onload = function(){\n" +
  9651. ' var a = document.getElementsByTagName("img")\n' +
  9652. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9653. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9654. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9655. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9656. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9657. "beforeUpload_shishi(file," +
  9658. "'" +
  9659. _userid +
  9660. "'" +
  9661. ", " +
  9662. "'" +
  9663. _cid +
  9664. "'" +
  9665. ", " +
  9666. "'" +
  9667. _stage +
  9668. "'" +
  9669. ", " +
  9670. "'" +
  9671. _task +
  9672. "'" +
  9673. ", " +
  9674. "'" +
  9675. _tool +
  9676. "'" +
  9677. ", " +
  9678. "'" +
  9679. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9680. "'" +
  9681. ", " +
  9682. "'" +
  9683. aTool +
  9684. "'" +
  9685. ", " +
  9686. "`" +
  9687. text +
  9688. "`" +
  9689. ")\n" +
  9690. " });\n" +
  9691. "}\n" +
  9692. "document.head.appendChild(_js);\n";
  9693. _iframe.contentWindow.document.head.appendChild(_ajs);
  9694. }
  9695. }
  9696. //U.MD.D.I.openClick(str);
  9697. //如果有任务栏信息
  9698. // if (_taskbar) {
  9699. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9700. // }
  9701. }
  9702. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9703. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9704. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9705. _userinfo = US.userInfo, //登录用户信息
  9706. _userid = US.userInfo.userid //登录用户id
  9707. let _iframe;
  9708. let _cid = cid,
  9709. _stage = stage,
  9710. _task = task,
  9711. _tool = tool;
  9712. var _jie = $$("div", {
  9713. "style": {
  9714. "position": "absolute",
  9715. "bottom": "50px",
  9716. "right": "50px",
  9717. "zIndex": "9999",
  9718. "backgroundColor": "#2268bc",
  9719. "color": "#fff",
  9720. "padding": "12px 20px",
  9721. "cursor": "pointer",
  9722. "borderRadius": "4px",
  9723. },
  9724. "innerHTML": "上传模板"
  9725. })
  9726. let aTool = ''
  9727. let _loading = document.createElement('div')
  9728. _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;"
  9729. // _loading.id = "";
  9730. let _lchild = document.createElement('div')
  9731. let _limg = document.createElement('img')
  9732. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9733. _limg.style = "width: 26px;margin-right: 10px;"
  9734. _lchild.appendChild(_limg)
  9735. let _lspan = document.createElement('span')
  9736. _lspan.innerHTML = "上传中..."
  9737. _lchild.appendChild(_lspan)
  9738. _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%);"
  9739. _loading.appendChild(_lchild)
  9740. var _box = $$('div', {
  9741. "style": {
  9742. "position": "relative",
  9743. "width": "100%",
  9744. "height": "100%",
  9745. },
  9746. })
  9747. _box.appendChild(_loading)
  9748. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9749. switch (str) {
  9750. case "whiteboard":
  9751. aTool = 1;
  9752. _iframe = $$("iframe", {
  9753. "frameborder": "no",
  9754. "border": "0",
  9755. "scrolling ": "no",
  9756. "style": {
  9757. "cssText": "border:0;width:100%;height:100%"
  9758. },
  9759. "src": "https://beta.iwb.cocorobo.cn/"
  9760. })
  9761. _box.appendChild(_iframe);
  9762. _box.appendChild(_jie);
  9763. _formdiv = new U.UF.UI.form(
  9764. "电子白板",
  9765. _box, {
  9766. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9767. "style": {
  9768. "width": "90%",
  9769. "height": "90%",
  9770. "overflow": 'hidden'
  9771. },
  9772. "onresize": function () { }
  9773. }, {
  9774. closecallback: function () { }
  9775. }, {
  9776. "style": {
  9777. "height": "36px"
  9778. }
  9779. }).form; //创建窗体
  9780. _taskbar = {
  9781. "id": str + _formdiv.id,
  9782. "style": {
  9783. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9784. },
  9785. "name": "电子白板",
  9786. "forms": _formdiv,
  9787. "click": function () {
  9788. U.MD.D.I.openApplication(str, obj, info);
  9789. }
  9790. }
  9791. break;
  9792. case "mind":
  9793. aTool = 3;
  9794. _iframe = $$("iframe", {
  9795. "frameborder": "no",
  9796. "border": "0",
  9797. "scrolling ": "no",
  9798. "style": {
  9799. "cssText": "border:0;width:100%;height:100%"
  9800. },
  9801. "src": "/kityminder-editor/dist/index.html"
  9802. });
  9803. _box.appendChild(_iframe);
  9804. _box.appendChild(_jie);
  9805. _formdiv = new U.UF.UI.form(
  9806. "思维导图",
  9807. _box, { //"/jsmind/example/demo.html"
  9808. "id": "minds_Yu" + cid + stage + task + tool,
  9809. "style": {
  9810. "width": "90%",
  9811. "height": "90%",
  9812. "overflow": 'hidden'
  9813. },
  9814. "onresize": function () { }
  9815. }, {
  9816. closecallback: function () { }
  9817. }, {
  9818. "style": {
  9819. "height": "36px"
  9820. }
  9821. }).form; //创建窗体
  9822. _taskbar = {
  9823. "id": str + _formdiv.id,
  9824. "style": {
  9825. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9826. },
  9827. "name": "思维导图",
  9828. "forms": _formdiv,
  9829. "click": function () {
  9830. U.MD.D.I.openApplication(str, obj, info);
  9831. }
  9832. }
  9833. break;
  9834. case "doc":
  9835. aTool = 6;
  9836. _iframe = $$("iframe", {
  9837. "frameborder": "no",
  9838. "border": "0",
  9839. "scrolling ": "no",
  9840. "style": {
  9841. "cssText": "border:0;width:100%;height:100%"
  9842. },
  9843. "src": "/Office/Word/WordEditArea.htm"
  9844. })
  9845. _box.appendChild(_iframe);
  9846. _box.appendChild(_jie);
  9847. _formdiv = new U.UF.UI.form(
  9848. "协同文档",
  9849. _box, {
  9850. "id": "docs_Yu" + cid + stage + task + tool,
  9851. "style": {
  9852. "width": "90%",
  9853. "height": "90%",
  9854. "overflow": 'hidden'
  9855. },
  9856. "onresize": function () { }
  9857. }, {
  9858. closecallback: function () { }
  9859. }, {
  9860. "style": {
  9861. "height": "36px"
  9862. }
  9863. }).form; //创建窗体
  9864. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9865. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9866. })
  9867. _taskbar = {
  9868. "id": str + _formdiv.id,
  9869. "style": {
  9870. "backgroundImage": "url(/img/icon/doc.png)"
  9871. },
  9872. "name": "协同文档",
  9873. "forms": _formdiv,
  9874. "click": function () {
  9875. U.MD.D.I.openApplication(str, obj, info);
  9876. }
  9877. }
  9878. break;
  9879. case "CocoPi":
  9880. aTool = 57;
  9881. _iframe = $$("iframe", {
  9882. "allowpaymentrequest": "allowpaymentrequest",
  9883. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9884. "webkitallowfullscreen": "",
  9885. "mozallowfullscreen": "",
  9886. "frameborder": "no",
  9887. "border": "0",
  9888. "scrolling ": "no",
  9889. "style": {
  9890. "cssText": "border:0;width:100%;height:100%"
  9891. },
  9892. "src": "https://pi.cocorobo.cn/"
  9893. })
  9894. _box.appendChild(_iframe);
  9895. _box.appendChild(_jie);
  9896. _formdiv = new U.UF.UI.form(
  9897. "CocoPi",
  9898. _box, {
  9899. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9900. "style": {
  9901. "width": "90%",
  9902. "height": "90%",
  9903. "overflow": 'hidden'
  9904. },
  9905. "onresize": function () { }
  9906. }, {
  9907. closecallback: function () { }
  9908. }, {
  9909. "style": {
  9910. "height": "36px"
  9911. }
  9912. }).form; //创建窗体
  9913. _taskbar = {
  9914. "id": str + _formdiv.id,
  9915. "style": {
  9916. "backgroundImage": "url(/img/icon/cocopi.png)"
  9917. },
  9918. "name": "CocoPi",
  9919. "forms": _formdiv,
  9920. "click": function () {
  9921. U.MD.D.I.openApplication(str, obj, info);
  9922. }
  9923. }
  9924. break;
  9925. }
  9926. if (_iframe) {
  9927. if (str == 'doc') {
  9928. _iframe = _formdiv.querySelector('iframe')
  9929. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9930. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9931. })
  9932. if (onloadListener) {
  9933. _iframe.contentDocument.location.reload()
  9934. } else {
  9935. _iframe.contentDocument.location.reload()
  9936. }
  9937. } else if (str == 'mind') {
  9938. _iframe = _formdiv.querySelector('iframe')
  9939. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9940. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9941. })
  9942. if (onloadListener) {
  9943. _iframe.contentDocument.location.reload()
  9944. } else {
  9945. _iframe.contentDocument.location.reload()
  9946. }
  9947. } else if (str == 'whiteboard') {
  9948. _iframe = _formdiv.querySelector('iframe')
  9949. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9950. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9951. })
  9952. // if (onloadListener) {
  9953. // try {
  9954. // _iframe.src += "?cocorobo="+new Date().getTime()
  9955. // _iframe.contentWindow.document.location.reload()
  9956. // } catch (error) {
  9957. // }
  9958. // } else {
  9959. // _iframe.contentDocument.location.reload()
  9960. // }
  9961. } else if (str == 'CocoPi') {
  9962. _iframe = _formdiv.querySelector('iframe')
  9963. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9964. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9965. })
  9966. if (onloadListener) {
  9967. _iframe.contentDocument.location.reload()
  9968. } else {
  9969. _iframe.contentDocument.location.reload()
  9970. }
  9971. } else {
  9972. _iframe.onload = () => { };
  9973. }
  9974. _jie.onclick = async () => {
  9975. let text = ''
  9976. let type = '2'
  9977. if (aTool == 1) {
  9978. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9979. type = '3'
  9980. } else if (aTool == 6) {
  9981. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9982. type = '1'
  9983. } else if (aTool == 3) {
  9984. text = await U.MD.D.I.getEditorContent(_iframe);
  9985. type = '2'
  9986. } else if (aTool == 57) {
  9987. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9988. type = '4'
  9989. }
  9990. _loading.style.display = 'flex'
  9991. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9992. }
  9993. }
  9994. //U.MD.D.I.openClick(str);
  9995. //如果有任务栏信息
  9996. // if (_taskbar) {
  9997. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9998. // }
  9999. }
  10000. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10001. var xmlhttp;
  10002. var Mac, Sn, DeviceId
  10003. if (window.XMLHttpRequest) {
  10004. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10005. xmlhttp = new XMLHttpRequest();
  10006. } else {
  10007. // IE6, IE5 浏览器执行代码
  10008. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10009. }
  10010. xmlhttp.onreadystatechange = function () {
  10011. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10012. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10013. // resolve(res.value[0][0].text);
  10014. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10015. }
  10016. }
  10017. }
  10018. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10019. xmlhttp.send();
  10020. }
  10021. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10022. var xmlhttp;
  10023. var Mac, Sn, DeviceId
  10024. if (window.XMLHttpRequest) {
  10025. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10026. xmlhttp = new XMLHttpRequest();
  10027. } else {
  10028. // IE6, IE5 浏览器执行代码
  10029. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10030. }
  10031. xmlhttp.onreadystatechange = function () {
  10032. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10033. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10034. // resolve(res.value[0][0].text);
  10035. if (type == '2') {
  10036. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10037. } else if (type == '3') {
  10038. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10039. } else if (type == '4') {
  10040. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10041. }
  10042. } else {
  10043. if (type == '2') {
  10044. iframe.contentWindow.editor.minder.importData('json', '')
  10045. } else if (type == '3') {
  10046. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10047. } else if (type == '4') {
  10048. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10049. }
  10050. }
  10051. }
  10052. }
  10053. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10054. xmlhttp.send();
  10055. }
  10056. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10057. var xmlhttp;
  10058. var Mac, Sn, DeviceId
  10059. if (window.XMLHttpRequest) {
  10060. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10061. xmlhttp = new XMLHttpRequest();
  10062. } else {
  10063. // IE6, IE5 浏览器执行代码
  10064. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10065. }
  10066. xmlhttp.onreadystatechange = function () {
  10067. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10068. if (xmlhttp.response) {
  10069. // resolve(res.value[0][0].text);
  10070. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10071. // $(fileInput).val('');
  10072. // });
  10073. span.innerHTML = '上传成功'
  10074. setTimeout(() => {
  10075. loading.style.display = 'none'
  10076. }, 1000);
  10077. }
  10078. }
  10079. }
  10080. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10081. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10082. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10083. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10084. // 设置请求头,表示请求体的编码格式
  10085. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10086. // 设置请求体,使用url-encoded格式的数据
  10087. }
  10088. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10089. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10090. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10091. _userinfo = US.userInfo, //登录用户信息
  10092. _userid = US.userInfo.userid //登录用户id
  10093. let _iframe;
  10094. let _cid = cid,
  10095. _stage = stage,
  10096. _task = task,
  10097. _tool = tool;
  10098. var _jie = $$("div", {
  10099. "style": {
  10100. "position": "absolute",
  10101. "bottom": "50px",
  10102. "right": "50px",
  10103. "zIndex": "9999",
  10104. "backgroundColor": "#2268bc",
  10105. "color": "#fff",
  10106. "padding": "12px 20px",
  10107. "cursor": "pointer",
  10108. "borderRadius": "4px",
  10109. },
  10110. "innerHTML": "提交作业"
  10111. })
  10112. let aTool = ''
  10113. let _loading = document.createElement('div')
  10114. _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;"
  10115. // _loading.id = "";
  10116. let _lchild = document.createElement('div')
  10117. let _limg = document.createElement('img')
  10118. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10119. _limg.style = "width: 26px;margin-right: 10px;"
  10120. _lchild.appendChild(_limg)
  10121. let _lspan = document.createElement('span')
  10122. _lspan.innerHTML = "上传中..."
  10123. _lchild.appendChild(_lspan)
  10124. _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%);"
  10125. _loading.appendChild(_lchild)
  10126. var _box = $$('div', {
  10127. "style": {
  10128. "position": "relative",
  10129. "width": "100%",
  10130. "height": "100%",
  10131. },
  10132. })
  10133. _box.appendChild(_loading)
  10134. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10135. switch (str) {
  10136. case "CocoPi":
  10137. aTool = 57;
  10138. _iframe = $$("iframe", {
  10139. "allowpaymentrequest": "allowpaymentrequest",
  10140. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10141. "webkitallowfullscreen": "",
  10142. "mozallowfullscreen": "",
  10143. "frameborder": "no",
  10144. "border": "0",
  10145. "scrolling ": "no",
  10146. "style": {
  10147. "cssText": "border:0;width:100%;height:100%"
  10148. },
  10149. "src": "https://pi.cocorobo.cn/"
  10150. })
  10151. _box.appendChild(_iframe);
  10152. _box.appendChild(_jie);
  10153. _formdiv = new U.UF.UI.form(
  10154. "CocoPi",
  10155. _box, {
  10156. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10157. "style": {
  10158. "width": "90%",
  10159. "height": "90%",
  10160. "overflow": 'hidden'
  10161. },
  10162. "onresize": function () { }
  10163. }, {
  10164. closecallback: function () { }
  10165. }, {
  10166. "style": {
  10167. "height": "36px"
  10168. }
  10169. }).form; //创建窗体
  10170. _taskbar = {
  10171. "id": str + _formdiv.id,
  10172. "style": {
  10173. "backgroundImage": "url(/img/icon/cocopi.png)"
  10174. },
  10175. "name": "CocoPi",
  10176. "forms": _formdiv,
  10177. "click": function () {
  10178. U.MD.D.I.openApplication(str, obj, info);
  10179. }
  10180. }
  10181. break;
  10182. }
  10183. if (_iframe) {
  10184. if (str == 'CocoPi') {
  10185. _iframe = _formdiv.querySelector('iframe')
  10186. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10187. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10188. })
  10189. if (onloadListener) {
  10190. _iframe.contentDocument.location.reload()
  10191. } else {
  10192. _iframe.contentDocument.location.reload()
  10193. }
  10194. }
  10195. _jie.onclick = async () => {
  10196. let text = ''
  10197. if (aTool == 57) {
  10198. text = _iframe.contentWindow.getLoadXmlStr()
  10199. }
  10200. _loading.style.display = 'flex'
  10201. console.log(_loading);
  10202. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10203. _loading.style.display = 'none'
  10204. let _div = document.createElement('div')
  10205. _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;"
  10206. let _inner = document.createElement('div')
  10207. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10208. _inner.innerHTML = "上传成功"
  10209. _div.appendChild(_inner)
  10210. _iframe.contentWindow.window.document.body.appendChild(_div)
  10211. _div.onclick = () => {
  10212. _iframe.contentWindow.window.document.body.removeChild(_div)
  10213. }
  10214. setTimeout(() => {
  10215. _iframe.contentWindow.window.document.body.removeChild(_div)
  10216. }, 1000);
  10217. }, [], { "type": "POST", "withCredentials": true });
  10218. }
  10219. }
  10220. }
  10221. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10222. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10223. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10224. _userid = student.userid, //登录用户id
  10225. _username = student.student //用户名字
  10226. let _iframe;
  10227. let _cid = cid,
  10228. _stage = stage,
  10229. _task = task,
  10230. _tool = tool;
  10231. var _jie = $$("div", {
  10232. "style": {
  10233. "position": "absolute",
  10234. "bottom": "50px",
  10235. "right": "50px",
  10236. "zIndex": "9999",
  10237. "backgroundColor": "#2268bc",
  10238. "color": "#fff",
  10239. "padding": "12px 20px",
  10240. "cursor": "pointer",
  10241. "borderRadius": "4px",
  10242. },
  10243. "innerHTML": "提交作业"
  10244. })
  10245. let aTool = ''
  10246. let _loading = document.createElement('div')
  10247. _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;"
  10248. // _loading.id = "";
  10249. let _lchild = document.createElement('div')
  10250. let _limg = document.createElement('img')
  10251. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10252. _limg.style = "width: 26px;margin-right: 10px;"
  10253. _lchild.appendChild(_limg)
  10254. let _lspan = document.createElement('span')
  10255. _lspan.innerHTML = "上传中..."
  10256. _lchild.appendChild(_lspan)
  10257. _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%);"
  10258. _loading.appendChild(_lchild)
  10259. var _box = $$('div', {
  10260. "style": {
  10261. "position": "relative",
  10262. "width": "100%",
  10263. "height": "100%",
  10264. },
  10265. })
  10266. _box.appendChild(_loading)
  10267. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10268. switch (str) {
  10269. case "CocoPi":
  10270. aTool = 57;
  10271. _iframe = $$("iframe", {
  10272. "allowpaymentrequest": "allowpaymentrequest",
  10273. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10274. "webkitallowfullscreen": "",
  10275. "mozallowfullscreen": "",
  10276. "frameborder": "no",
  10277. "border": "0",
  10278. "scrolling ": "no",
  10279. "style": {
  10280. "cssText": "border:0;width:100%;height:100%"
  10281. },
  10282. "src": "https://pi.cocorobo.cn/"
  10283. })
  10284. _box.appendChild(_iframe);
  10285. _box.appendChild(_jie);
  10286. _formdiv = new U.UF.UI.form(
  10287. "CocoPi-" + _username,
  10288. _box, {
  10289. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10290. "style": {
  10291. "width": "90%",
  10292. "height": "90%",
  10293. "overflow": 'hidden'
  10294. },
  10295. "onresize": function () { }
  10296. }, {
  10297. closecallback: function () { }
  10298. }, {
  10299. "style": {
  10300. "height": "36px"
  10301. }
  10302. }).form; //创建窗体
  10303. _taskbar = {
  10304. "id": str + _formdiv.id,
  10305. "style": {
  10306. "backgroundImage": "url(/img/icon/cocopi.png)"
  10307. },
  10308. "name": "CocoPi",
  10309. "forms": _formdiv,
  10310. "click": function () {
  10311. U.MD.D.I.openApplication(str, obj, info);
  10312. }
  10313. }
  10314. break;
  10315. }
  10316. if (_iframe) {
  10317. if (str == 'CocoPi') {
  10318. _iframe = _formdiv.querySelector('iframe')
  10319. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10320. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10321. })
  10322. if (onloadListener) {
  10323. _iframe.contentDocument.location.reload()
  10324. } else {
  10325. _iframe.contentDocument.location.reload()
  10326. }
  10327. }
  10328. _jie.onclick = async () => {
  10329. let text = ''
  10330. if (aTool == 57) {
  10331. text = _iframe.contentWindow.getLoadXmlStr()
  10332. }
  10333. _loading.style.display = 'flex'
  10334. console.log(_loading);
  10335. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10336. _loading.style.display = 'none'
  10337. let _div = document.createElement('div')
  10338. _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;"
  10339. let _inner = document.createElement('div')
  10340. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10341. _inner.innerHTML = "上传成功"
  10342. _div.appendChild(_inner)
  10343. _iframe.contentWindow.window.document.body.appendChild(_div)
  10344. _div.onclick = () => {
  10345. _iframe.contentWindow.window.document.body.removeChild(_div)
  10346. }
  10347. setTimeout(() => {
  10348. _iframe.contentWindow.window.document.body.removeChild(_div)
  10349. }, 1000);
  10350. }, [], { "type": "POST", "withCredentials": true });
  10351. }
  10352. }
  10353. }
  10354. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10355. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10356. if (res.value[0].length > 0) {
  10357. if (atool == 57) {
  10358. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10359. }
  10360. } else {
  10361. if (atool == 57) {
  10362. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10363. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10364. }
  10365. }
  10366. }, [], { "type": "POST", "withCredentials": true });
  10367. }