DeskTop.js 673 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724
  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. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5224. return;
  5225. }
  5226. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5227. switch (str) {
  5228. case "studnetProject": //好友打开
  5229. _formdiv = new U.UF.UI.form(
  5230. "我的项目",
  5231. $$("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 }), {
  5232. "id": "studnetProject",
  5233. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5234. "onresize": function () { }
  5235. }, {
  5236. closecallback: function () { }
  5237. }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. _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); } }
  5239. break;
  5240. case "studentEvaluate": //好友打开
  5241. _formdiv = new U.UF.UI.form(
  5242. "我的评价",
  5243. $$("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 }), {
  5244. "id": "studentEvaluate",
  5245. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. case "my":
  5253. _formdiv = new U.UF.UI.form(
  5254. "我的资料",
  5255. $$("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 }), {
  5256. "id": "my",
  5257. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. _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); } }
  5263. break;
  5264. case "program":
  5265. _formdiv = new U.UF.UI.form(
  5266. "编程平台",
  5267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5268. "id": "program",
  5269. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. _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); } }
  5275. break;
  5276. case "library":
  5277. _formdiv = new U.UF.UI.form(
  5278. "素材库",
  5279. $$("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 }), {
  5280. "id": "library",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. break;
  5288. case "whiteboard":
  5289. _formdiv = new U.UF.UI.form(
  5290. "电子白板",
  5291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5292. "id": "whiteboard",
  5293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _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); } }
  5299. break;
  5300. case "investigation":
  5301. _formdiv = new U.UF.UI.form(
  5302. "问卷调查",
  5303. $$("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 }), {
  5304. "id": "investigation",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _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); } }
  5311. break;
  5312. case "note":
  5313. _formdiv = new U.UF.UI.form(
  5314. "便签分类",
  5315. $$("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 }), {
  5316. "id": "note",
  5317. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _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); } }
  5323. break;
  5324. // case "score":
  5325. // _formdiv = new U.UF.UI.form(
  5326. // "量规评分",
  5327. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5328. // "id": "score",
  5329. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5330. // "onresize": function() {}
  5331. // }, {
  5332. // closecallback: function() {}
  5333. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. // _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); } }
  5335. // break;
  5336. case "mind":
  5337. _formdiv = new U.UF.UI.form(
  5338. "思维导图",
  5339. $$("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"
  5340. "id": "mind",
  5341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "doc":
  5349. // U.MD.D.I.isRoom();
  5350. _formdiv = new U.UF.UI.form(
  5351. "协同文档",
  5352. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5353. "id": "doc",
  5354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5355. "onresize": function () { }
  5356. }, {
  5357. closecallback: function () { }
  5358. }, { "style": { "height": "36px" } }).form; //创建窗体
  5359. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5360. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5361. // })
  5362. _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); } }
  5363. break;
  5364. case "studentStudy":
  5365. _formdiv = new U.UF.UI.form(
  5366. "课程中心",
  5367. $$("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
  5368. "id": "studentStudy",
  5369. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. _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); } }
  5375. break;
  5376. case "train": //好友打开
  5377. _formdiv = new U.UF.UI.form(
  5378. "训练平台",
  5379. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5380. "id": "train",
  5381. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //创建窗体
  5386. _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); } }
  5387. break;
  5388. case "mindNetwork": //好友打开
  5389. _formdiv = new U.UF.UI.form(
  5390. "思维网格",
  5391. $$("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 }), {
  5392. "id": "mindNetwork",
  5393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. _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); } }
  5399. break;
  5400. case "studentClassRoom": //好友打开
  5401. _formdiv = new U.UF.UI.form(
  5402. "实时课堂",
  5403. $$("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 }), {
  5404. "id": "studentClassRoom",
  5405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _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); } }
  5411. setTimeout(() => {
  5412. U.UF.F.windowZooming(_formdiv)
  5413. }, 0);
  5414. break;
  5415. }
  5416. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5417. switch (str) {
  5418. case "studnetProject": //好友打开
  5419. _formdiv = new U.UF.UI.form(
  5420. "我的项目",
  5421. $$("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 }), {
  5422. "id": "studnetProject",
  5423. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5424. "onresize": function () { }
  5425. }, {
  5426. closecallback: function () { }
  5427. }, { "style": { "height": "36px" } }).form; //创建窗体
  5428. _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); } }
  5429. break;
  5430. case "studentEvaluate": //好友打开
  5431. _formdiv = new U.UF.UI.form(
  5432. "我的评价",
  5433. $$("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 }), {
  5434. "id": "studentEvaluate",
  5435. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. case "my":
  5443. _formdiv = new U.UF.UI.form(
  5444. "我的资料",
  5445. $$("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 }), {
  5446. "id": "my",
  5447. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _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); } }
  5453. break;
  5454. case "program":
  5455. _formdiv = new U.UF.UI.form(
  5456. "编程平台",
  5457. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5458. "id": "program",
  5459. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. _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); } }
  5465. break;
  5466. case "library":
  5467. _formdiv = new U.UF.UI.form(
  5468. "素材库",
  5469. $$("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 }), {
  5470. "id": "library",
  5471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _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); } }
  5477. break;
  5478. case "whiteboard":
  5479. _formdiv = new U.UF.UI.form(
  5480. "电子白板",
  5481. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5482. "id": "whiteboard",
  5483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. _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); } }
  5489. break;
  5490. case "investigation":
  5491. _formdiv = new U.UF.UI.form(
  5492. "问卷调查",
  5493. $$("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 }), {
  5494. "id": "investigation",
  5495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. _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); } }
  5501. break;
  5502. case "note":
  5503. _formdiv = new U.UF.UI.form(
  5504. "便签分类",
  5505. $$("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 }), {
  5506. "id": "note",
  5507. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _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); } }
  5513. break;
  5514. // case "score":
  5515. // _formdiv = new U.UF.UI.form(
  5516. // "量规评分",
  5517. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5518. // "id": "score",
  5519. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5520. // "onresize": function() {}
  5521. // }, {
  5522. // closecallback: function() {}
  5523. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. // _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); } }
  5525. // break;
  5526. case "mind":
  5527. _formdiv = new U.UF.UI.form(
  5528. "思维导图",
  5529. $$("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"
  5530. "id": "mind",
  5531. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5532. "onresize": function () { }
  5533. }, {
  5534. closecallback: function () { }
  5535. }, { "style": { "height": "36px" } }).form; //创建窗体
  5536. _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); } }
  5537. break;
  5538. case "doc":
  5539. // U.MD.D.I.isRoom();
  5540. _formdiv = new U.UF.UI.form(
  5541. "协同文档",
  5542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5543. "id": "doc",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5550. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5551. })
  5552. _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); } }
  5553. break;
  5554. case "train": //好友打开
  5555. _formdiv = new U.UF.UI.form(
  5556. "训练平台",
  5557. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5558. "id": "train",
  5559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5560. "onresize": function () { }
  5561. }, {
  5562. closecallback: function () { }
  5563. }, { "style": { "height": "36px" } }).form; //创建窗体
  5564. _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); } }
  5565. break;
  5566. case "studentStudy":
  5567. _formdiv = new U.UF.UI.form(
  5568. "课程中心",
  5569. $$("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
  5570. "id": "studentStudy",
  5571. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. _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); } }
  5577. break;
  5578. case "mindNetwork": //好友打开
  5579. _formdiv = new U.UF.UI.form(
  5580. "思维网格",
  5581. $$("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 }), {
  5582. "id": "mindNetwork",
  5583. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5584. "onresize": function () { }
  5585. }, {
  5586. closecallback: function () { }
  5587. }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. _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); } }
  5589. break;
  5590. case "studentClassRoom": //好友打开
  5591. _formdiv = new U.UF.UI.form(
  5592. "实时课堂",
  5593. $$("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 }), {
  5594. "id": "studentClassRoom",
  5595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5596. "onresize": function () { }
  5597. }, {
  5598. closecallback: function () { }
  5599. }, { "style": { "height": "36px" } }).form; //创建窗体
  5600. _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); } }
  5601. setTimeout(() => {
  5602. U.UF.F.windowZooming(_formdiv)
  5603. }, 0);
  5604. break;
  5605. }
  5606. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5607. //选择应用处理
  5608. switch (str) {
  5609. case "project": //好友打开
  5610. _formdiv = new U.UF.UI.form(
  5611. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5612. $$("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 }), {
  5613. "id": "project",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _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); } }
  5620. break;
  5621. case "student":
  5622. _formdiv = new U.UF.UI.form(
  5623. "学生管理",
  5624. $$("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 }), {
  5625. "id": "student",
  5626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //创建窗体
  5631. _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); } }
  5632. break;
  5633. case "evaluate":
  5634. _formdiv = new U.UF.UI.form(
  5635. "学生评价",
  5636. $$("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 }), {
  5637. "id": "evaluate",
  5638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. _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); } }
  5644. break;
  5645. case "sys":
  5646. _formdiv = new U.UF.UI.form(
  5647. "目标管理",
  5648. $$("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 }), {
  5649. "id": "sys",
  5650. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, { "style": { "height": "36px" } }).form; //创建窗体
  5655. _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); } }
  5656. break;
  5657. case "courseDesign":
  5658. _formdiv = new U.UF.UI.form(
  5659. "项目设计",
  5660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5661. "id": "courseDesign",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _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); } }
  5668. break;
  5669. case "program":
  5670. _formdiv = new U.UF.UI.form(
  5671. "编程平台",
  5672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5673. "id": "program",
  5674. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5675. "onresize": function () { }
  5676. }, {
  5677. closecallback: function () { }
  5678. }, { "style": { "height": "36px" } }).form; //创建窗体
  5679. _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); } }
  5680. break;
  5681. case "class":
  5682. _formdiv = new U.UF.UI.form(
  5683. "班级管理",
  5684. $$("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 }), {
  5685. "id": "class",
  5686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5687. "onresize": function () { }
  5688. }, {
  5689. closecallback: function () { }
  5690. }, { "style": { "height": "36px" } }).form; //创建窗体
  5691. _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); } }
  5692. break;
  5693. case "Grade":
  5694. _formdiv = new U.UF.UI.form(
  5695. "年级管理",
  5696. $$("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 }), {
  5697. "id": "Grade",
  5698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. _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); } }
  5704. break;
  5705. case "teacherOffice":
  5706. _formdiv = new U.UF.UI.form(
  5707. "教研室",
  5708. $$("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 }), {
  5709. "id": "teacherOffice",
  5710. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5711. "onresize": function () { }
  5712. }, {
  5713. closecallback: function () { }
  5714. }, { "style": { "height": "36px" } }).form; //创建窗体
  5715. _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); } }
  5716. break;
  5717. case "my":
  5718. _formdiv = new U.UF.UI.form(
  5719. "我的资料",
  5720. $$("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 }), {
  5721. "id": "my",
  5722. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //创建窗体
  5727. _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); } }
  5728. break;
  5729. case "notice":
  5730. _formdiv = new U.UF.UI.form(
  5731. "通知公告",
  5732. $$("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 }), {
  5733. "id": "notice",
  5734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _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); } }
  5740. break;
  5741. case "library":
  5742. _formdiv = new U.UF.UI.form(
  5743. "素材库",
  5744. $$("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 }), {
  5745. "id": "library",
  5746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _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); } }
  5752. break;
  5753. case "whiteboard":
  5754. _formdiv = new U.UF.UI.form(
  5755. "电子白板",
  5756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5757. "id": "whiteboard",
  5758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. _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); } }
  5764. break;
  5765. case "investigation":
  5766. _formdiv = new U.UF.UI.form(
  5767. "问卷调查",
  5768. $$("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 }), {
  5769. "id": "investigation",
  5770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _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); } }
  5776. break;
  5777. case "note":
  5778. _formdiv = new U.UF.UI.form(
  5779. "便签分类",
  5780. $$("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 }), {
  5781. "id": "note",
  5782. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5783. "onresize": function () { }
  5784. }, {
  5785. closecallback: function () { }
  5786. }, { "style": { "height": "36px" } }).form; //创建窗体
  5787. _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); } }
  5788. break;
  5789. // case "score":
  5790. // _formdiv = new U.UF.UI.form(
  5791. // "量规评分",
  5792. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5793. // "id": "score",
  5794. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5795. // "onresize": function() {}
  5796. // }, {
  5797. // closecallback: function() {}
  5798. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5799. // _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); } }
  5800. // break;
  5801. case "mind":
  5802. _formdiv = new U.UF.UI.form(
  5803. "思维导图",
  5804. $$("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"
  5805. "id": "mind",
  5806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _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); } }
  5812. break;
  5813. case "doc":
  5814. // U.MD.D.I.isRoom();
  5815. _formdiv = new U.UF.UI.form(
  5816. "协同文档",
  5817. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5818. "id": "doc",
  5819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5825. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5826. })
  5827. _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); } }
  5828. break;
  5829. case "study":
  5830. _formdiv = new U.UF.UI.form(
  5831. "课程中心",
  5832. $$("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
  5833. "id": "study",
  5834. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5835. "onresize": function () { }
  5836. }, {
  5837. closecallback: function () { }
  5838. }, { "style": { "height": "36px" } }).form; //创建窗体
  5839. _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); } }
  5840. break;
  5841. case "mindNetwork": //好友打开
  5842. _formdiv = new U.UF.UI.form(
  5843. "思维网格",
  5844. $$("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 }), {
  5845. "id": "mindNetwork",
  5846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5847. "onresize": function () { }
  5848. }, {
  5849. closecallback: function () { }
  5850. }, { "style": { "height": "36px" } }).form; //创建窗体
  5851. _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); } }
  5852. break;
  5853. case "train": //好友打开
  5854. _formdiv = new U.UF.UI.form(
  5855. "训练平台",
  5856. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5857. "id": "mindNetwork",
  5858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5859. "onresize": function () { }
  5860. }, {
  5861. closecallback: function () { }
  5862. }, { "style": { "height": "36px" } }).form; //创建窗体
  5863. _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); } }
  5864. break;
  5865. case "teacherClassRoom": //好友打开
  5866. _formdiv = new U.UF.UI.form(
  5867. "实时课堂",
  5868. $$("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 }), {
  5869. "id": "teacherClassRoom",
  5870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _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); } }
  5876. setTimeout(() => {
  5877. U.UF.F.windowZooming(_formdiv)
  5878. }, 0);
  5879. break;
  5880. }
  5881. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5882. switch (str) {
  5883. case "project": //好友打开
  5884. _formdiv = new U.UF.UI.form(
  5885. "课程管理",
  5886. $$("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 }), {
  5887. "id": "project",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. _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); } }
  5894. break;
  5895. case "evaluate":
  5896. _formdiv = new U.UF.UI.form(
  5897. "学生评价",
  5898. $$("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 }), {
  5899. "id": "evaluate",
  5900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //创建窗体
  5905. _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); } }
  5906. break;
  5907. case "notice":
  5908. _formdiv = new U.UF.UI.form(
  5909. "通知公告",
  5910. $$("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 }), {
  5911. "id": "notice",
  5912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _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); } }
  5918. break;
  5919. case "stuLibrary":
  5920. _formdiv = new U.UF.UI.form(
  5921. "学习资料",
  5922. $$("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 }), {
  5923. "id": "stuLibrary",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _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); } }
  5930. break;
  5931. case "program":
  5932. _formdiv = new U.UF.UI.form(
  5933. "编程平台",
  5934. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5935. "id": "program",
  5936. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _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); } }
  5942. break;
  5943. case "whiteboard":
  5944. _formdiv = new U.UF.UI.form(
  5945. "电子白板",
  5946. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5947. "id": "whiteboard",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _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); } }
  5954. break;
  5955. case "investigation":
  5956. _formdiv = new U.UF.UI.form(
  5957. "问卷调查",
  5958. $$("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 }), {
  5959. "id": "investigation",
  5960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. case "mind":
  5968. _formdiv = new U.UF.UI.form(
  5969. "思维导图",
  5970. $$("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"
  5971. "id": "mind",
  5972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5973. "onresize": function () { }
  5974. }, {
  5975. closecallback: function () { }
  5976. }, { "style": { "height": "36px" } }).form; //创建窗体
  5977. _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); } }
  5978. break;
  5979. case "doc":
  5980. // U.MD.D.I.isRoom();
  5981. _formdiv = new U.UF.UI.form(
  5982. "协同文档",
  5983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5984. "id": "doc",
  5985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5991. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5992. })
  5993. _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); } }
  5994. break;
  5995. case "study":
  5996. _formdiv = new U.UF.UI.form(
  5997. "课程中心",
  5998. $$("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
  5999. "id": "study",
  6000. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6001. "onresize": function () { }
  6002. }, {
  6003. closecallback: function () { }
  6004. }, { "style": { "height": "36px" } }).form; //创建窗体
  6005. _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); } }
  6006. break;
  6007. case "mindNetwork": //好友打开
  6008. _formdiv = new U.UF.UI.form(
  6009. "思维网格",
  6010. $$("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 }), {
  6011. "id": "mindNetwork",
  6012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6013. "onresize": function () { }
  6014. }, {
  6015. closecallback: function () { }
  6016. }, { "style": { "height": "36px" } }).form; //创建窗体
  6017. _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); } }
  6018. break;
  6019. case "train": //好友打开
  6020. _formdiv = new U.UF.UI.form(
  6021. "训练平台",
  6022. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6023. "id": "train",
  6024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6025. "onresize": function () { }
  6026. }, {
  6027. closecallback: function () { }
  6028. }, { "style": { "height": "36px" } }).form; //创建窗体
  6029. _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); } }
  6030. break;
  6031. case "sys":
  6032. _formdiv = new U.UF.UI.form(
  6033. "目标管理",
  6034. $$("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 }), {
  6035. "id": "sys",
  6036. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6037. "onresize": function () { }
  6038. }, {
  6039. closecallback: function () { }
  6040. }, { "style": { "height": "36px" } }).form; //创建窗体
  6041. _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); } }
  6042. break;
  6043. case "courseDesign":
  6044. _formdiv = new U.UF.UI.form(
  6045. "项目设计",
  6046. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6047. "id": "courseDesign",
  6048. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6049. "onresize": function () { }
  6050. }, {
  6051. closecallback: function () { }
  6052. }, { "style": { "height": "36px" } }).form; //创建窗体
  6053. _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); } }
  6054. break;
  6055. }
  6056. } else if (!_type) {
  6057. switch (str) {
  6058. case "my":
  6059. _formdiv = new U.UF.UI.form(
  6060. "我的资料",
  6061. $$("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 }), {
  6062. "id": "my",
  6063. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _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); } }
  6069. break;
  6070. }
  6071. }
  6072. switch (str) {
  6073. // AIprogram2 AI体验 aihub.cocorobo.cn
  6074. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6075. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6076. case "formulaEdi": //公式编辑
  6077. _formdiv = new U.UF.UI.form(
  6078. "公式编辑",
  6079. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6080. "id": "formulaEdi",
  6081. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _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); } }
  6087. break;
  6088. case "molStr": //分子结构
  6089. _formdiv = new U.UF.UI.form(
  6090. "分子结构",
  6091. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6092. "id": "molStr",
  6093. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. case "timeAxis": //时间轴
  6101. _formdiv = new U.UF.UI.form(
  6102. "时间轴",
  6103. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6104. "id": "timeAxis",
  6105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. _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); } }
  6111. break;
  6112. case "AIprogram2": //AI体验
  6113. _formdiv = new U.UF.UI.form(
  6114. "AI体验",
  6115. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6116. "id": "AIprogram2",
  6117. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "Pythonprogram": //python编程
  6125. _formdiv = new U.UF.UI.form(
  6126. "Python编程",
  6127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6128. "id": "Pythonprogram",
  6129. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. _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); } }
  6135. break;
  6136. case "AIprogram": //ai编程
  6137. _formdiv = new U.UF.UI.form(
  6138. "AI编程平台",
  6139. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6140. "id": "AIprogram",
  6141. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _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); } }
  6147. break;
  6148. case "CocoPi": //CocoPi
  6149. _formdiv = new U.UF.UI.form(
  6150. "CocoPi",
  6151. $$("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" }), {
  6152. "id": "CocoPi",
  6153. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _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); } }
  6159. break;
  6160. case "Wood": //Wood
  6161. _formdiv = new U.UF.UI.form(
  6162. "海龟编程",
  6163. $$("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/" }), {
  6164. "id": "Wood",
  6165. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _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); } }
  6171. break;
  6172. case "car": //模拟驾驶
  6173. _formdiv = new U.UF.UI.form(
  6174. "模拟驾驶",
  6175. $$("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/" }), {
  6176. "id": "car",
  6177. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _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); } }
  6183. break;
  6184. case "lineSearch": //路径搜索
  6185. _formdiv = new U.UF.UI.form(
  6186. "路径搜索",
  6187. $$("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/" }), {
  6188. "id": "lineSearch",
  6189. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. _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); } }
  6195. break;
  6196. case "deepLearning": //深度学习
  6197. _formdiv = new U.UF.UI.form(
  6198. "深度学习",
  6199. $$("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/#" }), {
  6200. "id": "deepLearning",
  6201. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "allHistory": //深度学习
  6209. _formdiv = new U.UF.UI.form(
  6210. "全历史",
  6211. $$("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/" }), {
  6212. "id": "allHistory",
  6213. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _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); } }
  6219. break;
  6220. case "chatPDF": //ai编程
  6221. _formdiv = new U.UF.UI.form(
  6222. "chatPDF",
  6223. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6224. "id": "chatPDF",
  6225. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _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); } }
  6231. break;
  6232. case "resources": //国家教育
  6233. _formdiv = new U.UF.UI.form(
  6234. "国家教育",
  6235. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6236. "id": "resources",
  6237. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _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); } }
  6243. break;
  6244. case "codeEdit": //源码编辑
  6245. _formdiv = new U.UF.UI.form(
  6246. "源码编辑",
  6247. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6248. "id": "codeEdit",
  6249. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6250. "onresize": function () { }
  6251. }, {
  6252. closecallback: function () { }
  6253. }, { "style": { "height": "36px" } }).form; //创建窗体
  6254. _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); } }
  6255. break; //
  6256. case "MindMap": //MindMap
  6257. _formdiv = new U.UF.UI.form(
  6258. "MindMap",
  6259. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6260. "id": "MindMap",
  6261. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6262. "onresize": function () { }
  6263. }, {
  6264. closecallback: function () { }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. break;
  6268. case "netWorkPanel": //netWorkPanel
  6269. _formdiv = new U.UF.UI.form(
  6270. "netWorkPanel",
  6271. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6272. "id": "netWorkPanel",
  6273. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6274. "onresize": function () { }
  6275. }, {
  6276. closecallback: function () { }
  6277. }, { "style": { "height": "36px" } }).form; //创建窗体
  6278. _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); } }
  6279. break;
  6280. case "GeoGebra": //GeoGebra
  6281. _formdiv = new U.UF.UI.form(
  6282. "GeoGebra",
  6283. $$("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" }), {
  6284. "id": "GeoGebra",
  6285. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. _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); } }
  6291. break;
  6292. case "translation": //翻译
  6293. _formdiv = new U.UF.UI.form(
  6294. "翻译",
  6295. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6296. "id": "translation",
  6297. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6298. "onresize": function () { }
  6299. }, {
  6300. closecallback: function () { }
  6301. }, { "style": { "height": "36px" } }).form; //创建窗体
  6302. _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); } }
  6303. break;
  6304. case "mohe": //魔盒
  6305. _formdiv = new U.UF.UI.form(
  6306. "魔盒识字",
  6307. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6308. "id": "mohe",
  6309. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _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); } }
  6315. break;
  6316. case "24game": //24点
  6317. _formdiv = new U.UF.UI.form(
  6318. "24点",
  6319. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6320. "id": "24game",
  6321. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. break;
  6328. case "case":
  6329. _formdiv = new U.UF.UI.form(
  6330. "课程进展",
  6331. $$("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 }), {
  6332. "id": "case",
  6333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _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); } }
  6339. break;
  6340. case "snf":
  6341. _formdiv = new U.UF.UI.form(
  6342. "赛诺梵",
  6343. $$("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" }), {
  6344. "id": "snf",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. case "hanFamily":
  6353. _formdiv = new U.UF.UI.form(
  6354. "汉字家族",
  6355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6356. "id": "hanFamily",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //创建窗体
  6362. _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); } }
  6363. break;
  6364. case "hanClassics":
  6365. _formdiv = new U.UF.UI.form(
  6366. "国学经典",
  6367. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6368. "id": "hanClassics",
  6369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _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); } }
  6375. break;
  6376. case "hanTraining":
  6377. _formdiv = new U.UF.UI.form(
  6378. "笔画训练",
  6379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6380. "id": "hanTraining",
  6381. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _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); } }
  6387. break;
  6388. case "hanClass":
  6389. _formdiv = new U.UF.UI.form(
  6390. "书法课堂",
  6391. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6392. "id": "hanClass",
  6393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. case "han":
  6401. _formdiv = new U.UF.UI.form(
  6402. "汉字宫",
  6403. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6404. "id": "han",
  6405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "projectGM": //课程管理
  6413. _formdiv = new U.UF.UI.form(
  6414. "课程管理",
  6415. $$("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 }), {
  6416. "id": "projectGM",
  6417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "studyGM": //课程中心
  6425. _formdiv = new U.UF.UI.form(
  6426. "课程中心",
  6427. $$("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
  6428. "id": "study",
  6429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. break;
  6436. // studentGM
  6437. case "studentGM": //学生管理
  6438. _formdiv = new U.UF.UI.form(
  6439. "学生管理",
  6440. $$("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 }), {
  6441. "id": "studentGM",
  6442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //创建窗体
  6447. _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); } }
  6448. break;
  6449. case "evaluateGM": //学生评价
  6450. _formdiv = new U.UF.UI.form(
  6451. "学生评价",
  6452. $$("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 }), {
  6453. "id": "evaluateGM",
  6454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //创建窗体
  6459. _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); } }
  6460. break;
  6461. // classGM
  6462. case "classGM": //班级管理
  6463. _formdiv = new U.UF.UI.form(
  6464. "班级管理",
  6465. $$("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 }), {
  6466. "id": "classGM",
  6467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6468. "onresize": function () { }
  6469. }, {
  6470. closecallback: function () { }
  6471. }, { "style": { "height": "36px" } }).form; //创建窗体
  6472. _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); } }
  6473. break;
  6474. // dataGM
  6475. case "dataGM":
  6476. _formdiv = new U.UF.UI.form(
  6477. "我的资料",
  6478. $$("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 }), {
  6479. "id": "dataGM",
  6480. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6481. "onresize": function () { }
  6482. }, {
  6483. closecallback: function () { }
  6484. }, { "style": { "height": "36px" } }).form; //创建窗体
  6485. _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); } }
  6486. break;
  6487. // caseGM
  6488. case "caseGM": //课程进展
  6489. _formdiv = new U.UF.UI.form(
  6490. "课程进展",
  6491. $$("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 }), {
  6492. "id": "caseGM",
  6493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, { "style": { "height": "36px" } }).form; //创建窗体
  6498. _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); } }
  6499. break;
  6500. // meterialGM
  6501. case "meterialGM": //素材库
  6502. _formdiv = new U.UF.UI.form(
  6503. "素材库",
  6504. $$("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 }), {
  6505. "id": "meterialGM",
  6506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //创建窗体
  6511. _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); } }
  6512. break;
  6513. // evaluateSGM
  6514. case "evaluateSGM": //我的评价
  6515. _formdiv = new U.UF.UI.form(
  6516. "我的评价",
  6517. $$("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 }), {
  6518. "id": "evaluateSGM",
  6519. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6520. "onresize": function () { }
  6521. }, {
  6522. closecallback: function () { }
  6523. }, { "style": { "height": "36px" } }).form; //创建窗体
  6524. _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); } }
  6525. break;
  6526. case "jupyter": //jupyter
  6527. _formdiv = new U.UF.UI.form(
  6528. "jupyter",
  6529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6530. "id": "jupyter",
  6531. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //创建窗体
  6536. _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); } }
  6537. break;
  6538. case "number": //数字实验室
  6539. _formdiv = new U.UF.UI.form(
  6540. "数字实验室",
  6541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6542. "id": "number",
  6543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //创建窗体
  6548. _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); } }
  6549. break;
  6550. case "studentCourse": //项目管理 学生
  6551. _formdiv = new U.UF.UI.form(
  6552. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6553. $$("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 }), {
  6554. "id": "studentCourse",
  6555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //创建窗体
  6560. _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); } }
  6561. break;
  6562. case "studentCourseS": //项目管理 老师
  6563. _formdiv = new U.UF.UI.form(
  6564. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6565. $$("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 }), {
  6566. "id": "studentCourseS",
  6567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //创建窗体
  6572. _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); } }
  6573. break;
  6574. case "studentIndex": //项目中心
  6575. _formdiv = new U.UF.UI.form(
  6576. "项目中心",
  6577. $$("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 }), {
  6578. "id": "studentIndex",
  6579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. case "CaseDesignS":
  6587. _formdiv = new U.UF.UI.form(
  6588. "项目进展",
  6589. $$("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 }), {
  6590. "id": "case",
  6591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6592. "onresize": function () { }
  6593. }, {
  6594. closecallback: function () { }
  6595. }, { "style": { "height": "36px" } }).form; //创建窗体
  6596. _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); } }
  6597. break;
  6598. case "tcStudent": //腾讯学生管理
  6599. _formdiv = new U.UF.UI.form(
  6600. "学生管理",
  6601. $$("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 }), {
  6602. "id": "tcStudent",
  6603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6604. "onresize": function () { }
  6605. }, {
  6606. closecallback: function () { }
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. break;
  6610. case "tcSchool": //腾讯学校管理
  6611. _formdiv = new U.UF.UI.form(
  6612. "学校管理",
  6613. $$("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 }), {
  6614. "id": "tcSchool",
  6615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _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); } }
  6621. break;
  6622. case "tcTeacher": //腾讯学校管理
  6623. _formdiv = new U.UF.UI.form(
  6624. "教师管理",
  6625. $$("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 }), {
  6626. "id": "tcTeacher",
  6627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () { }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "teacher":
  6635. _formdiv = new U.UF.UI.form(
  6636. "教师管理",
  6637. $$("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 }), {
  6638. "id": "teacher",
  6639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () { }
  6643. }, { "style": { "height": "36px" } }).form; //创建窗体
  6644. _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); } }
  6645. break;
  6646. case "tcData": //腾讯我的资料
  6647. _formdiv = new U.UF.UI.form(
  6648. "我的资料",
  6649. $$("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 }), {
  6650. "id": "tcData",
  6651. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, { "style": { "height": "36px" } }).form; //创建窗体
  6656. _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); } }
  6657. break;
  6658. case "tcNotice": //腾讯消息通知
  6659. _formdiv = new U.UF.UI.form(
  6660. "消息通知",
  6661. $$("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 }), {
  6662. "id": "tcNotice",
  6663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6664. "onresize": function () { }
  6665. }, {
  6666. closecallback: function () { }
  6667. }, { "style": { "height": "36px" } }).form; //创建窗体
  6668. _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); } }
  6669. break;
  6670. case "myReport": //好友打开
  6671. _formdiv = new U.UF.UI.form(
  6672. "我的评价",
  6673. $$("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 }), {
  6674. "id": "myReport",
  6675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _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); } }
  6681. break;
  6682. case "learnAna": //好友打开
  6683. _formdiv = new U.UF.UI.form(
  6684. "学习分析",
  6685. $$("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 }), {
  6686. "id": "learnAna",
  6687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _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); } }
  6693. break;
  6694. case "AIChat": //AI共创
  6695. _formdiv = new U.UF.UI.form(
  6696. "AI共创",
  6697. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6698. "id": "AIChat",
  6699. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. istop: true,
  6703. closecallback: function () { $("#aichat_icon").remove(); },
  6704. narrowcallback: function () {
  6705. if (!$("#aichat_icon")[0]) {
  6706. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6707. }
  6708. },
  6709. }, { "style": { "height": "36px" } }).form; //创建窗体
  6710. _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); } }
  6711. break;
  6712. case "ainew": //AI共创
  6713. _formdiv = new U.UF.UI.form(
  6714. "AI协同",
  6715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6716. "id": "ainew",
  6717. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6718. "onresize": function () { }
  6719. }, {
  6720. closecallback: function () { }
  6721. }, { "style": { "height": "36px" } }).form; //创建窗体
  6722. _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); } }
  6723. break;
  6724. case "gpt4": //gpt4
  6725. _formdiv = new U.UF.UI.form(
  6726. "AI助手",
  6727. $$("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 }), {
  6728. "id": "gpt4",
  6729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6730. "onresize": function () { }
  6731. }, {
  6732. closecallback: function () { }
  6733. }, { "style": { "height": "36px" } }).form; //创建窗体
  6734. _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); } }
  6735. break;
  6736. case "aigpt": //gpt4
  6737. _formdiv = new U.UF.UI.form(
  6738. "AI助手+",
  6739. $$("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 }), {
  6740. "id": "aigpt",
  6741. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6742. "onresize": function () { }
  6743. }, {
  6744. closecallback: function () {
  6745. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6746. }
  6747. }, { "style": { "height": "36px" } }).form; //创建窗体
  6748. _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); } }
  6749. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6750. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6751. })
  6752. break;
  6753. case "aiKnowledge": //aiKnowledge
  6754. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6755. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6756. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6757. }
  6758. _formdiv = new U.UF.UI.form(
  6759. "知识建构",
  6760. $$("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 }), {
  6761. "id": "aiKnowledge",
  6762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _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); } }
  6768. break;
  6769. case "futureClass": //AI共创
  6770. _formdiv = new U.UF.UI.form(
  6771. "协同建构",
  6772. $$("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
  6773. "id": "synergyCourse",
  6774. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () {
  6778. $("iframe", _formdiv)[0].contentWindow.loginout();
  6779. }
  6780. }, { "style": { "height": "36px" } }).form; //创建窗体
  6781. _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); } }
  6782. break;
  6783. case "aiagent": //ai agent
  6784. _formdiv = new U.UF.UI.form(
  6785. "AI Agent",
  6786. $$("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" }), {
  6787. "id": "AIAgent",
  6788. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _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); } }
  6794. break;
  6795. case "dataBoard": //数据看板
  6796. _formdiv = new U.UF.UI.form(
  6797. "数据看板",
  6798. $$("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 }), {
  6799. "id": "dataBoard",
  6800. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //创建窗体
  6805. _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); } }
  6806. break;
  6807. case "dataBoardSies": //数据融合
  6808. _formdiv = new U.UF.UI.form(
  6809. "数据融合",
  6810. $$("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 }), {
  6811. "id": "dataBoardSies",
  6812. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6813. "onresize": function () { }
  6814. }, {
  6815. closecallback: function () { }
  6816. }, { "style": { "height": "36px" } }).form; //创建窗体
  6817. _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); } }
  6818. break;
  6819. case "dataBoardNew": //数据看板
  6820. _formdiv = new U.UF.UI.form(
  6821. "综合看板",
  6822. $$("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 }), {
  6823. "id": "dataBoardNew",
  6824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6825. "onresize": function () { }
  6826. }, {
  6827. closecallback: function () { }
  6828. }, { "style": { "height": "36px" } }).form; //创建窗体
  6829. _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); } }
  6830. break;
  6831. case "dataBoardTest": //数据看板
  6832. _formdiv = new U.UF.UI.form(
  6833. "评测看板",
  6834. $$("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 }), {
  6835. "id": "dataBoardTest",
  6836. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _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); } }
  6842. break;
  6843. case "AIAnalyse": //AI共创
  6844. _formdiv = new U.UF.UI.form(
  6845. "AI分析",
  6846. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6847. "id": "AIAnalyse",
  6848. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () { }
  6852. }, { "style": { "height": "36px" } }).form; //创建窗体
  6853. _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); } }
  6854. break;
  6855. case "studioCourse": //AI共创
  6856. _formdiv = new U.UF.UI.form(
  6857. "工作管理",
  6858. $$("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 }), {
  6859. "id": "studioCourse",
  6860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6861. "onresize": function () { }
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //创建窗体
  6865. _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); } }
  6866. break;
  6867. case "studioIndex": //AI共创
  6868. _formdiv = new U.UF.UI.form(
  6869. "工作中心",
  6870. $$("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 }), {
  6871. "id": "studioIndex",
  6872. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //创建窗体
  6877. _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); } }
  6878. break;
  6879. case "source":
  6880. _formdiv = new U.UF.UI.form(
  6881. "教学资源",
  6882. $$("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 }), {
  6883. "id": "source",
  6884. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //创建窗体
  6889. _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); } }
  6890. break;
  6891. case "testTeacher":
  6892. _formdiv = new U.UF.UI.form(
  6893. "智能表单",
  6894. $$("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 }), {
  6895. "id": "testTeacher",
  6896. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6897. "onresize": function () { }
  6898. }, {
  6899. closecallback: function () { }
  6900. }, { "style": { "height": "36px" } }).form; //创建窗体
  6901. _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); } }
  6902. break;
  6903. case "testStudent":
  6904. _formdiv = new U.UF.UI.form(
  6905. "教师中心",
  6906. $$("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 }), {
  6907. "id": "testStudent",
  6908. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, { "style": { "height": "36px" } }).form; //创建窗体
  6913. _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); } }
  6914. break;
  6915. case "testTeacherSies":
  6916. _formdiv = new U.UF.UI.form(
  6917. "教师管理",
  6918. $$("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 }), {
  6919. "id": "testTeacherSies",
  6920. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, { "style": { "height": "36px" } }).form; //创建窗体
  6925. _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); } }
  6926. break;
  6927. case "testStudentSies":
  6928. _formdiv = new U.UF.UI.form(
  6929. "教师中心",
  6930. $$("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 }), {
  6931. "id": "testStudentSies",
  6932. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. closecallback: function () { }
  6936. }, { "style": { "height": "36px" } }).form; //创建窗体
  6937. _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); } }
  6938. break;
  6939. case "ytpbl": //消息通知
  6940. _formdiv = new U.UF.UI.form(
  6941. "案例征集",
  6942. $$("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 }), {
  6943. "id": "ytpbl",
  6944. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6945. "onresize": function () { }
  6946. }, {
  6947. closecallback: function () { }
  6948. }, { "style": { "height": "36px" } }).form; //创建窗体
  6949. _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); } }
  6950. // 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");
  6951. break;
  6952. case "aiCourseResource": //人工智能窗体
  6953. _formdiv = new U.UF.UI.form(
  6954. false,
  6955. $$("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 }), {
  6956. "id": "aiCourseResource",
  6957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6958. "onresize": function () { },
  6959. "isdrag": false,
  6960. }, {
  6961. closecallback: function () { }
  6962. }, { "style": { "height": "36px" } }).form; //创建窗体
  6963. _taskbar = ''
  6964. break;
  6965. case "szdjgCocooroboX": //图形化编程
  6966. _formdiv = new U.UF.UI.form(
  6967. "图形化编程",
  6968. $$("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" }), {
  6969. "id": "szdjgCocooroboX",
  6970. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6971. "onresize": function () { }
  6972. }, {
  6973. closecallback: function () { }
  6974. }, { "style": { "height": "36px" } }).form; //创建窗体
  6975. _taskbar = ''
  6976. break;
  6977. case "szdjgPython": //python编程
  6978. _formdiv = new U.UF.UI.form(
  6979. "Python编程",
  6980. $$("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" }), {
  6981. "id": "szdjgPython",
  6982. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6983. "onresize": function () { }
  6984. }, {
  6985. closecallback: function () { }
  6986. }, { "style": { "height": "36px" } }).form; //创建窗体
  6987. _taskbar = ''
  6988. break;
  6989. case "Record":
  6990. _formdiv = new U.UF.UI.form(
  6991. "观察记录",
  6992. $$("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 }), {
  6993. "id": "Record",
  6994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _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); } }
  7000. break;
  7001. case "aigptCourse":
  7002. _formdiv = new U.UF.UI.form(
  7003. "AI智能体",
  7004. $$("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' }), {
  7005. "id": "aigptCourse",
  7006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _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); } }
  7012. break;
  7013. case "classroomObservation":
  7014. _formdiv = new U.UF.UI.form(
  7015. "课堂观察",
  7016. $$("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 }), {
  7017. "id": "classroomObservation",
  7018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _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); } }
  7024. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7025. break;
  7026. case "pblCourse":
  7027. _formdiv = new U.UF.UI.form(
  7028. "学生PBL",
  7029. $$("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 }), {
  7030. "id": "pblCourse",
  7031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7032. "onresize": function () { }
  7033. }, {
  7034. closecallback: function () { }
  7035. }, { "style": { "height": "36px" } }).form; //创建窗体
  7036. _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); } }
  7037. break;
  7038. case "appStore":
  7039. _formdiv = new U.UF.UI.form(
  7040. "CocoFlow",
  7041. $$("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 }), {
  7042. "id": "appStore",
  7043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7044. "onresize": function () { }
  7045. }, {
  7046. closecallback: function () { }
  7047. }, { "style": { "height": "36px" } }).form; //创建窗体
  7048. _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); } }
  7049. break;
  7050. case "sassPlatform":
  7051. _formdiv = new U.UF.UI.form(
  7052. "Sass通用后台管理",
  7053. $$("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 }), {
  7054. "id": "sassPlatform",
  7055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7056. "onresize": function () { }
  7057. }, {
  7058. closecallback: function () { }
  7059. }, { "style": { "height": "36px" } }).form; //创建窗体
  7060. _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); } }
  7061. break;
  7062. case "EDU":
  7063. _formdiv = new U.UF.UI.form(
  7064. "EDU",
  7065. $$("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" }), {
  7066. "id": "EDU",
  7067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7068. "onresize": function () { }
  7069. }, {
  7070. closecallback: function () { }
  7071. }, { "style": { "height": "36px" } }).form; //创建窗体
  7072. _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); } }
  7073. break;
  7074. case "knowledge":
  7075. _formdiv = new U.UF.UI.form(
  7076. "知识库",
  7077. $$("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 }), {
  7078. "id": "knowledge",
  7079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7080. "onresize": function () { }
  7081. }, {
  7082. closecallback: function () { }
  7083. }, { "style": { "height": "36px" } }).form; //创建窗体
  7084. _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); } }
  7085. break;
  7086. case "userExamine":
  7087. _formdiv = new U.UF.UI.form(
  7088. "账号申请",
  7089. $$("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" }), {
  7090. "id": "userExamine",
  7091. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7092. "onresize": function () { }
  7093. }, {
  7094. closecallback: function () { }
  7095. }, { "style": { "height": "36px" } }).form; //创建窗体
  7096. break;
  7097. }
  7098. //U.MD.D.I.openClick(str);
  7099. //如果有任务栏信息
  7100. if (_taskbar) {
  7101. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7102. }
  7103. }
  7104. // U.MD.D.I.openClick = function(str){
  7105. // var click = '';
  7106. // switch(str){
  7107. // case 'friend':
  7108. // click = '我的好友';
  7109. // break;
  7110. // case 'domain':
  7111. // click = '域名管理';
  7112. // break;
  7113. // case 'disk':
  7114. // click = '我的云盘';
  7115. // break;
  7116. // case 'word':
  7117. // click = 'Word';
  7118. // break;
  7119. // case 'excel':
  7120. // click = 'Execl';
  7121. // break;
  7122. // case 'txt':
  7123. // click = '文本文件';
  7124. // break;
  7125. // case 'lookupFriend':
  7126. // click = '查找好友';
  7127. // break;
  7128. // case 'ftp':
  7129. // click = 'FTP';
  7130. // break;
  7131. // case 'group':
  7132. // click = '群组';
  7133. // break;
  7134. // case 'set':
  7135. // click = '我的设置';
  7136. // break;
  7137. // case 'systemSet':
  7138. // click = '系统设置';
  7139. // break;
  7140. // case 'boomYun':
  7141. // click = '互联办公';
  7142. // break;
  7143. // case 'xz':
  7144. // click = '云端下载';
  7145. // break;
  7146. // case 'client':
  7147. // click = '有思浏览器';
  7148. // break;
  7149. // case 'backEndProgramming':
  7150. // click = '在线后台编程';
  7151. // break;
  7152. // case 'frontEndProgramming':
  7153. // click = '在线前端编程';
  7154. // break;
  7155. // default: break;
  7156. // }
  7157. // if(U.MD.D.I.Ip && click){
  7158. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7159. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7160. // })
  7161. // }
  7162. // }
  7163. /**
  7164. *函数作用:ajax简易函数,使用post格式
  7165. *@param url {data} 后台地址
  7166. *@param data {data} 参数json
  7167. *@param fn {data} 回调函数
  7168. *
  7169. */
  7170. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7171. // var xhr = new XMLHttpRequest();
  7172. // xhr.open("GET",url,true);
  7173. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7174. // xhr.onreadystatechange = function(){
  7175. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7176. // fn.call(this,xhr.responseText);
  7177. // }
  7178. // };
  7179. // xhr.send();
  7180. // }
  7181. /*判断是否是内网IP*/
  7182. // U.MD.D.I.isInnerIPFn = function(str){
  7183. // var curPageUrl = str;
  7184. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7185. // curPageUrl =curPageUrl.replace(reg1,'');
  7186. // // console.log('curPageUrl-1 '+curPageUrl);
  7187. // var reg2 = /\:+/g;//替换冒号为一点
  7188. // curPageUrl =curPageUrl.replace(reg2,'.');
  7189. // // console.log('curPageUrl-2 '+curPageUrl);
  7190. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7191. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7192. // if(curPageUrl[2] != '16'){
  7193. // return ipAddress;
  7194. // }else{
  7195. // return false;
  7196. // }
  7197. // }
  7198. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7199. // //compatibility for firefox and chrome
  7200. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7201. // var pc = new myPeerConnection({
  7202. // iceServers: []
  7203. // }),
  7204. // noop = function() {},
  7205. // localIPs = {},
  7206. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7207. // key;
  7208. // function iterateIP(ip) {
  7209. // if (!localIPs[ip]) onNewIP(ip);
  7210. // localIPs[ip] = true;
  7211. // }
  7212. // //create a bogus data channel
  7213. // pc.createDataChannel("");
  7214. // // create offer and set local description
  7215. // pc.createOffer().then(function(sdp) {
  7216. // sdp.sdp.split('\n').forEach(function(line) {
  7217. // if (line.indexOf('candidate') < 0) return;
  7218. // line.match(ipRegex).forEach(iterateIP);
  7219. // });
  7220. // pc.setLocalDescription(sdp, noop, noop);
  7221. // }).catch(function(reason) {
  7222. // // An error occurred, so handle the failure to connect
  7223. // });
  7224. // //sten for candidate events
  7225. // pc.onicecandidate = function(ice) {
  7226. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7227. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7228. // };
  7229. // }
  7230. // U.MD.D.I.getUserIpBool = function(callback){
  7231. // U.MD.D.I.getUserIP(function(ip){
  7232. // alert("Got IP! :" + ip);
  7233. // });
  7234. //}
  7235. //#endregion
  7236. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7237. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7238. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7239. _userinfo = US.userInfo, //登录用户信息
  7240. _userid = US.userInfo.userid //登录用户id
  7241. let _iframe;
  7242. let _cid = cid,
  7243. _stage = stage,
  7244. _task = task,
  7245. _tool = tool;
  7246. var _jie = $$("div", {
  7247. "style": {
  7248. "position": "absolute",
  7249. "bottom": "50px",
  7250. "right": "50px",
  7251. "zIndex": "9999",
  7252. "backgroundColor": "#2268bc",
  7253. "color": "#fff",
  7254. "padding": "12px 20px",
  7255. "cursor": "pointer",
  7256. "borderRadius": "4px",
  7257. },
  7258. "innerHTML": "提交作业"
  7259. })
  7260. let aTool = ''
  7261. let _loading = document.createElement('div')
  7262. _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;"
  7263. // _loading.id = "";
  7264. let _lchild = document.createElement('div')
  7265. let _limg = document.createElement('img')
  7266. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7267. _limg.style = "width: 26px;margin-right: 10px;"
  7268. _lchild.appendChild(_limg)
  7269. let _lspan = document.createElement('span')
  7270. _lspan.innerHTML = "上传中..."
  7271. _lchild.appendChild(_lspan)
  7272. _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%);"
  7273. _loading.appendChild(_lchild)
  7274. var _box = $$('div', {
  7275. "style": {
  7276. "position": "relative",
  7277. "width": "100%",
  7278. "height": "100%",
  7279. },
  7280. })
  7281. _box.appendChild(_loading)
  7282. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7283. switch (str) {
  7284. case "whiteboard":
  7285. aTool = 1;
  7286. _iframe = $$("iframe", {
  7287. "frameborder": "no",
  7288. "border": "0",
  7289. "scrolling ": "no",
  7290. "style": {
  7291. "cssText": "border:0;width:100%;height:100%"
  7292. },
  7293. "src": "https://beta.iwb.cocorobo.cn/"
  7294. })
  7295. _box.appendChild(_iframe);
  7296. _box.appendChild(_jie);
  7297. _formdiv = new U.UF.UI.form(
  7298. "电子白板",
  7299. _box, {
  7300. "id": "whiteboard" + cid + stage + task + tool,
  7301. "style": {
  7302. "width": "90%",
  7303. "height": "90%",
  7304. "overflow": 'hidden'
  7305. },
  7306. "onresize": function () { }
  7307. }, {
  7308. closecallback: function () { }
  7309. }, {
  7310. "style": {
  7311. "height": "36px"
  7312. }
  7313. }).form; //创建窗体
  7314. _taskbar = {
  7315. "id": str + _formdiv.id,
  7316. "style": {
  7317. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7318. },
  7319. "name": "电子白板",
  7320. "forms": _formdiv,
  7321. "click": function () {
  7322. U.MD.D.I.openApplication(str, obj, info);
  7323. }
  7324. }
  7325. break;
  7326. case "mind":
  7327. aTool = 3;
  7328. _iframe = $$("iframe", {
  7329. "frameborder": "no",
  7330. "border": "0",
  7331. "scrolling ": "no",
  7332. "style": {
  7333. "cssText": "border:0;width:100%;height:100%"
  7334. },
  7335. "src": "/kityminder-editor/dist/index.html"
  7336. })
  7337. _box.appendChild(_iframe);
  7338. _box.appendChild(_jie);
  7339. _formdiv = new U.UF.UI.form(
  7340. "思维导图",
  7341. _box, { //"/jsmind/example/demo.html"
  7342. "id": "mind" + cid + stage + task + tool,
  7343. "style": {
  7344. "width": "90%",
  7345. "height": "90%",
  7346. "overflow": 'hidden'
  7347. },
  7348. "onresize": function () { }
  7349. }, {
  7350. closecallback: function () { }
  7351. }, {
  7352. "style": {
  7353. "height": "36px"
  7354. }
  7355. }).form; //创建窗体
  7356. _taskbar = {
  7357. "id": str + _formdiv.id,
  7358. "style": {
  7359. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7360. },
  7361. "name": "思维导图",
  7362. "forms": _formdiv,
  7363. "click": function () {
  7364. U.MD.D.I.openApplication(str, obj, info);
  7365. }
  7366. }
  7367. break;
  7368. case "MindMap":
  7369. aTool = 3;
  7370. _iframe = $$("iframe", {
  7371. "frameborder": "no",
  7372. "border": "0",
  7373. "scrolling ": "no",
  7374. "style": {
  7375. "cssText": "border:0;width:100%;height:100%"
  7376. },
  7377. "src": "//cloud.cocorobo.cn/mind/"
  7378. })
  7379. _box.appendChild(_iframe);
  7380. _box.appendChild(_jie);
  7381. _formdiv = new U.UF.UI.form(
  7382. "思维导图",
  7383. _box, { //"/jsmind/example/demo.html"
  7384. "id": "mind" + cid + stage + task + tool,
  7385. "style": {
  7386. "width": "90%",
  7387. "height": "90%",
  7388. "overflow": 'hidden'
  7389. },
  7390. "onresize": function () { }
  7391. }, {
  7392. closecallback: function () { }
  7393. }, {
  7394. "style": {
  7395. "height": "36px"
  7396. }
  7397. }).form; //创建窗体
  7398. _taskbar = {
  7399. "id": str + _formdiv.id,
  7400. "style": {
  7401. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7402. },
  7403. "name": "思维导图",
  7404. "forms": _formdiv,
  7405. "click": function () {
  7406. U.MD.D.I.openApplication(str, obj, info);
  7407. }
  7408. }
  7409. break;
  7410. case "doc":
  7411. aTool = 6;
  7412. _iframe = $$("iframe", {
  7413. "frameborder": "no",
  7414. "border": "0",
  7415. "scrolling ": "no",
  7416. "style": {
  7417. "cssText": "border:0;width:100%;height:100%"
  7418. },
  7419. "src": "/Office/Word/WordEditArea.htm"
  7420. })
  7421. _box.appendChild(_iframe);
  7422. _box.appendChild(_jie);
  7423. _formdiv = new U.UF.UI.form(
  7424. "协同文档",
  7425. _box, {
  7426. "id": "doc" + cid + stage + task + tool,
  7427. "style": {
  7428. "width": "90%",
  7429. "height": "90%",
  7430. "overflow": 'hidden'
  7431. },
  7432. "onresize": function () { }
  7433. }, {
  7434. closecallback: function () { }
  7435. }, {
  7436. "style": {
  7437. "height": "36px"
  7438. }
  7439. }).form; //创建窗体
  7440. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7441. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7442. })
  7443. _taskbar = {
  7444. "id": str + _formdiv.id,
  7445. "style": {
  7446. "backgroundImage": "url(/img/icon/doc.png)"
  7447. },
  7448. "name": "协同文档",
  7449. "forms": _formdiv,
  7450. "click": function () {
  7451. U.MD.D.I.openApplication(str, obj, info);
  7452. }
  7453. }
  7454. break;
  7455. case "mindNetwork": //好友打开
  7456. aTool = 7;
  7457. _iframe = $$("iframe", {
  7458. "webkitallowfullscreen": "",
  7459. "mozallowfullscreen": "",
  7460. "allowfullscreen": "",
  7461. "frameborder": "no",
  7462. "border": "0",
  7463. "scrolling ": "no",
  7464. "style": {
  7465. "cssText": "border:0; width:100%; height:100%;"
  7466. },
  7467. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7468. })
  7469. _box.appendChild(_iframe);
  7470. _box.appendChild(_jie);
  7471. _formdiv = new U.UF.UI.form(
  7472. "思维网格",
  7473. _box, {
  7474. "id": "mindNetwork" + cid + stage + task + tool,
  7475. "style": {
  7476. "width": "90%",
  7477. "height": "90%",
  7478. "overflow": 'hidden'
  7479. },
  7480. "onresize": function () { }
  7481. }, {
  7482. closecallback: function () { }
  7483. }, {
  7484. "style": {
  7485. "height": "36px"
  7486. }
  7487. }).form; //创建窗体
  7488. _taskbar = {
  7489. "id": str + _formdiv.id,
  7490. "style": {
  7491. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7492. },
  7493. "name": "思维网格",
  7494. "forms": _formdiv,
  7495. "click": function () {
  7496. U.MD.D.I.openApplication(str, obj, info);
  7497. }
  7498. }
  7499. break;
  7500. case "courseDesign":
  7501. _iframe = $$("iframe", {
  7502. "webkitallowfullscreen": "",
  7503. "mozallowfullscreen": "",
  7504. "allowfullscreen": "",
  7505. "frameborder": "no",
  7506. "border": "0",
  7507. "scrolling ": "no",
  7508. "style": {
  7509. "cssText": "border:0; width:100%; height:100%;"
  7510. },
  7511. "src": "/course-design-vue"
  7512. })
  7513. _box.appendChild(_iframe);
  7514. _box.appendChild(_jie);
  7515. _formdiv = new U.UF.UI.form(
  7516. "项目设计",
  7517. _box, {
  7518. "id": "courseDesign" + cid + stage + task + tool,
  7519. "style": {
  7520. "width": "90%",
  7521. "height": "90%",
  7522. "overflow": 'hidden'
  7523. },
  7524. "onresize": function () { }
  7525. }, {
  7526. closecallback: function () { }
  7527. }, {
  7528. "style": {
  7529. "height": "36px"
  7530. }
  7531. }).form; //创建窗体
  7532. _taskbar = {
  7533. "id": str + _formdiv.id,
  7534. "style": {
  7535. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7536. },
  7537. "name": "项目设计",
  7538. "forms": _formdiv,
  7539. "click": function () {
  7540. U.MD.D.I.openApplication(str, obj, info);
  7541. }
  7542. }
  7543. break;
  7544. }
  7545. const script1 = document.createElement("script");
  7546. script1.type = "text/javascript";
  7547. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7548. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7549. const script2 = document.createElement("script");
  7550. script2.type = "text/javascript";
  7551. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7552. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7553. const script3 = document.createElement("script");
  7554. script3.type = "text/javascript";
  7555. script3.charset = "UTF-8";
  7556. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7557. const script4 = document.createElement("script");
  7558. script4.type = "text/javascript";
  7559. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7560. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7561. if (_iframe) {
  7562. if (str == 'doc') {
  7563. _iframe = _formdiv.querySelector('iframe')
  7564. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7565. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7566. _iframe.contentWindow.document.body.appendChild(script1);
  7567. _iframe.contentWindow.document.body.appendChild(script2);
  7568. // _iframe.contentWindow.document.body.appendChild(script3);
  7569. _iframe.contentWindow.document.body.appendChild(script4);
  7570. })
  7571. if (onloadListener) {
  7572. _iframe.contentDocument.location.reload()
  7573. } else {
  7574. _iframe.contentDocument.location.reload()
  7575. }
  7576. } else if (str == 'courseDesign') {
  7577. U.UF.DL.iframeLoad(_iframe, function () {
  7578. // _iframe.contentWindow.U.MD.O.W.load();
  7579. // _iframe.contentWindow.document.body.appendChild(script1);
  7580. _iframe.contentWindow.document.body.appendChild(script2);
  7581. _iframe.contentWindow.document.body.appendChild(script4);
  7582. })
  7583. } else if (str == 'mind') {
  7584. _iframe = _formdiv.querySelector('iframe')
  7585. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7586. //
  7587. _iframe.contentWindow.document.body.appendChild(script1);
  7588. _iframe.contentWindow.document.body.appendChild(script2);
  7589. _iframe.contentWindow.document.body.appendChild(script4);
  7590. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7591. })
  7592. if (onloadListener) {
  7593. _iframe.contentDocument.location.reload()
  7594. } else {
  7595. _iframe.contentDocument.location.reload()
  7596. }
  7597. } else if (str == 'whiteboard') {
  7598. _iframe = _formdiv.querySelector('iframe')
  7599. let onloadListener = _iframe.onload = () => {
  7600. _iframe.contentWindow.document.body.appendChild(script1);
  7601. _iframe.contentWindow.document.body.appendChild(script2);
  7602. _iframe.contentWindow.document.body.appendChild(script4);
  7603. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7604. };
  7605. // if (onloadListener) {
  7606. // try {
  7607. // _iframe.src += "?cocorobo="+new Date().getTime()
  7608. // _iframe.contentWindow.document.location.reload()
  7609. // } catch (error) {
  7610. // }
  7611. // } else {
  7612. // _iframe.contentDocument.location.reload()
  7613. // }
  7614. } else {
  7615. _iframe.onload = () => {
  7616. _iframe.contentWindow.document.body.appendChild(script1);
  7617. _iframe.contentWindow.document.body.appendChild(script2);
  7618. // _iframe.contentWindow.document.body.appendChild(script3);
  7619. _iframe.contentWindow.document.body.appendChild(script4);
  7620. };
  7621. }
  7622. _jie.onclick = async () => {
  7623. let text = ''
  7624. if (aTool == 1) {
  7625. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7626. } else if (aTool == 6) {
  7627. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7628. } else if (aTool == 3) {
  7629. text = await U.MD.D.I.getEditorContent(_iframe);
  7630. }
  7631. _loading.style.display = 'flex'
  7632. console.log(_loading);
  7633. var _ajs = _iframe.contentWindow.document.createElement("script");
  7634. _ajs.type = "text/javascript";
  7635. _ajs.innerHTML =
  7636. // 'console.log(' + _loading + ');\n' +
  7637. 'var _js = document.createElement("script");\n' +
  7638. '_js.type="text/javascript";\n' +
  7639. '_js.charset="UTF-8";\n' +
  7640. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7641. "_js.onload = function(){\n" +
  7642. ' var a = document.getElementsByTagName("img")\n' +
  7643. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7644. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7645. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7646. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7647. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7648. "beforeUpload_shishi(file," +
  7649. "'" +
  7650. _userid +
  7651. "'" +
  7652. ", " +
  7653. "'" +
  7654. _cid +
  7655. "'" +
  7656. ", " +
  7657. "'" +
  7658. _stage +
  7659. "'" +
  7660. ", " +
  7661. "'" +
  7662. _task +
  7663. "'" +
  7664. ", " +
  7665. "'" +
  7666. _tool +
  7667. "'" +
  7668. ", " +
  7669. "'" +
  7670. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7671. "'" +
  7672. ", " +
  7673. "'" +
  7674. aTool +
  7675. "'" +
  7676. ", " +
  7677. "`" +
  7678. text +
  7679. "`" +
  7680. ")\n" +
  7681. " });\n" +
  7682. "}\n" +
  7683. "document.head.appendChild(_js);\n";
  7684. _iframe.contentWindow.document.head.appendChild(_ajs);
  7685. }
  7686. }
  7687. //U.MD.D.I.openClick(str);
  7688. //如果有任务栏信息
  7689. // if (_taskbar) {
  7690. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7691. // }
  7692. }
  7693. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7694. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7695. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7696. _userinfo = US.userInfo, //登录用户信息
  7697. _userid = US.userInfo.userid //登录用户id
  7698. let _iframe;
  7699. let _cid = cid,
  7700. _stage = stage,
  7701. _task = task,
  7702. _tool = tool;
  7703. var _jie = $$("div", {
  7704. "style": {
  7705. "position": "absolute",
  7706. "bottom": "50px",
  7707. "right": "50px",
  7708. "zIndex": "9999",
  7709. "backgroundColor": "#2268bc",
  7710. "color": "#fff",
  7711. "padding": "12px 20px",
  7712. "cursor": "pointer",
  7713. "borderRadius": "4px",
  7714. },
  7715. "innerHTML": "提交作业"
  7716. })
  7717. let aTool = ''
  7718. let _loading = document.createElement('div')
  7719. _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;"
  7720. // _loading.id = "";
  7721. let _lchild = document.createElement('div')
  7722. let _limg = document.createElement('img')
  7723. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7724. _limg.style = "width: 26px;margin-right: 10px;"
  7725. _lchild.appendChild(_limg)
  7726. let _lspan = document.createElement('span')
  7727. _lspan.innerHTML = "上传中..."
  7728. _lchild.appendChild(_lspan)
  7729. _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%);"
  7730. _loading.appendChild(_lchild)
  7731. let _box = $$('div', {
  7732. "style": {
  7733. "position": "relative",
  7734. "width": "100%",
  7735. "height": "100%",
  7736. },
  7737. })
  7738. _box.appendChild(_loading)
  7739. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7740. switch (str) {
  7741. case "whiteboard":
  7742. aTool = 1;
  7743. _iframe = $$("iframe", {
  7744. "frameborder": "no",
  7745. "border": "0",
  7746. "scrolling ": "no",
  7747. "style": {
  7748. "cssText": "border:0;width:100%;height:100%"
  7749. },
  7750. "src": "https://beta.iwb.cocorobo.cn/"
  7751. })
  7752. _box.appendChild(_iframe);
  7753. _box.appendChild(_jie);
  7754. _formdiv = new U.UF.UI.form(
  7755. "电子白板",
  7756. _box, {
  7757. "id": "whiteboard" + cid + stage + task + tool,
  7758. "style": {
  7759. "width": "90%",
  7760. "height": "90%",
  7761. "overflow": 'hidden'
  7762. },
  7763. "onresize": function () { }
  7764. }, {
  7765. closecallback: function () { }
  7766. }, {
  7767. "style": {
  7768. "height": "36px"
  7769. }
  7770. }).form; //创建窗体
  7771. _taskbar = {
  7772. "id": str + _formdiv.id,
  7773. "style": {
  7774. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7775. },
  7776. "name": "电子白板",
  7777. "forms": _formdiv,
  7778. "click": function () {
  7779. U.MD.D.I.openApplication(str, obj, info);
  7780. }
  7781. }
  7782. break;
  7783. case "mind":
  7784. aTool = 3;
  7785. _iframe = $$("iframe", {
  7786. "frameborder": "no",
  7787. "border": "0",
  7788. "scrolling ": "no",
  7789. "style": {
  7790. "cssText": "border:0;width:100%;height:100%"
  7791. },
  7792. "src": "/kityminder-editor/dist/index.html"
  7793. })
  7794. _box.appendChild(_iframe);
  7795. _box.appendChild(_jie);
  7796. _formdiv = new U.UF.UI.form(
  7797. "思维导图",
  7798. _box, { //"/jsmind/example/demo.html"
  7799. "id": "mind" + cid + stage + task + tool,
  7800. "style": {
  7801. "width": "90%",
  7802. "height": "90%",
  7803. "overflow": 'hidden'
  7804. },
  7805. "onresize": function () { }
  7806. }, {
  7807. closecallback: function () { }
  7808. }, {
  7809. "style": {
  7810. "height": "36px"
  7811. }
  7812. }).form; //创建窗体
  7813. _taskbar = {
  7814. "id": str + _formdiv.id,
  7815. "style": {
  7816. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7817. },
  7818. "name": "思维导图",
  7819. "forms": _formdiv,
  7820. "click": function () {
  7821. U.MD.D.I.openApplication(str, obj, info);
  7822. }
  7823. }
  7824. break;
  7825. case "MindMap":
  7826. aTool = 3;
  7827. _iframe = $$("iframe", {
  7828. "frameborder": "no",
  7829. "border": "0",
  7830. "scrolling ": "no",
  7831. "style": {
  7832. "cssText": "border:0;width:100%;height:100%"
  7833. },
  7834. "src": "//cloud.cocorobo.cn/mind/"
  7835. })
  7836. _box.appendChild(_iframe);
  7837. _box.appendChild(_jie);
  7838. _formdiv = new U.UF.UI.form(
  7839. "思维导图",
  7840. _box, { //"/jsmind/example/demo.html"
  7841. "id": "mind" + cid + stage + task + tool,
  7842. "style": {
  7843. "width": "90%",
  7844. "height": "90%",
  7845. "overflow": 'hidden'
  7846. },
  7847. "onresize": function () { }
  7848. }, {
  7849. closecallback: function () { }
  7850. }, {
  7851. "style": {
  7852. "height": "36px"
  7853. }
  7854. }).form; //创建窗体
  7855. _taskbar = {
  7856. "id": str + _formdiv.id,
  7857. "style": {
  7858. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7859. },
  7860. "name": "思维导图",
  7861. "forms": _formdiv,
  7862. "click": function () {
  7863. U.MD.D.I.openApplication(str, obj, info);
  7864. }
  7865. }
  7866. break;
  7867. case "doc":
  7868. aTool = 6;
  7869. _iframe = $$("iframe", {
  7870. "frameborder": "no",
  7871. "border": "0",
  7872. "scrolling ": "no",
  7873. "style": {
  7874. "cssText": "border:0;width:100%;height:100%"
  7875. },
  7876. "src": "/Office/Word/WordEditArea.htm"
  7877. })
  7878. _box.appendChild(_iframe);
  7879. _box.appendChild(_jie);
  7880. _formdiv = new U.UF.UI.form(
  7881. "协同文档",
  7882. _box, {
  7883. "id": "doc" + cid + stage + task + tool,
  7884. "style": {
  7885. "width": "90%",
  7886. "height": "90%",
  7887. "overflow": 'hidden'
  7888. },
  7889. "onresize": function () { }
  7890. }, {
  7891. closecallback: function () { }
  7892. }, {
  7893. "style": {
  7894. "height": "36px"
  7895. }
  7896. }).form; //创建窗体
  7897. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7898. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7899. })
  7900. _taskbar = {
  7901. "id": str + _formdiv.id,
  7902. "style": {
  7903. "backgroundImage": "url(/img/icon/doc.png)"
  7904. },
  7905. "name": "协同文档",
  7906. "forms": _formdiv,
  7907. "click": function () {
  7908. U.MD.D.I.openApplication(str, obj, info);
  7909. }
  7910. }
  7911. break;
  7912. case "mindNetwork": //好友打开
  7913. aTool = 7;
  7914. _iframe = $$("iframe", {
  7915. "webkitallowfullscreen": "",
  7916. "mozallowfullscreen": "",
  7917. "allowfullscreen": "",
  7918. "frameborder": "no",
  7919. "border": "0",
  7920. "scrolling ": "no",
  7921. "style": {
  7922. "cssText": "border:0; width:100%; height:100%;"
  7923. },
  7924. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7925. })
  7926. _box.appendChild(_iframe);
  7927. _box.appendChild(_jie);
  7928. _formdiv = new U.UF.UI.form(
  7929. "思维网格",
  7930. _box, {
  7931. "id": "mindNetwork" + cid + stage + task + tool,
  7932. "style": {
  7933. "width": "90%",
  7934. "height": "90%",
  7935. "overflow": 'hidden'
  7936. },
  7937. "onresize": function () { }
  7938. }, {
  7939. closecallback: function () { }
  7940. }, {
  7941. "style": {
  7942. "height": "36px"
  7943. }
  7944. }).form; //创建窗体
  7945. _taskbar = {
  7946. "id": str + _formdiv.id,
  7947. "style": {
  7948. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7949. },
  7950. "name": "思维网格",
  7951. "forms": _formdiv,
  7952. "click": function () {
  7953. U.MD.D.I.openApplication(str, obj, info);
  7954. }
  7955. }
  7956. break;
  7957. case "courseDesign":
  7958. _iframe = $$("iframe", {
  7959. "webkitallowfullscreen": "",
  7960. "mozallowfullscreen": "",
  7961. "allowfullscreen": "",
  7962. "frameborder": "no",
  7963. "border": "0",
  7964. "scrolling ": "no",
  7965. "style": {
  7966. "cssText": "border:0; width:100%; height:100%;"
  7967. },
  7968. "src": "/course-design-vue"
  7969. })
  7970. _box.appendChild(_iframe);
  7971. _box.appendChild(_jie);
  7972. _formdiv = new U.UF.UI.form(
  7973. "项目设计",
  7974. _box, {
  7975. "id": "courseDesign" + cid + stage + task + tool,
  7976. "style": {
  7977. "width": "90%",
  7978. "height": "90%",
  7979. "overflow": 'hidden'
  7980. },
  7981. "onresize": function () { }
  7982. }, {
  7983. closecallback: function () { }
  7984. }, {
  7985. "style": {
  7986. "height": "36px"
  7987. }
  7988. }).form; //创建窗体
  7989. _taskbar = {
  7990. "id": str + _formdiv.id,
  7991. "style": {
  7992. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7993. },
  7994. "name": "项目设计",
  7995. "forms": _formdiv,
  7996. "click": function () {
  7997. U.MD.D.I.openApplication(str, obj, info);
  7998. }
  7999. }
  8000. break;
  8001. }
  8002. const script1 = document.createElement("script");
  8003. script1.type = "text/javascript";
  8004. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8005. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8006. const script2 = document.createElement("script");
  8007. script2.type = "text/javascript";
  8008. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8009. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8010. const script3 = document.createElement("script");
  8011. script3.type = "text/javascript";
  8012. script3.charset = "UTF-8";
  8013. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8014. const script4 = document.createElement("script");
  8015. script4.type = "text/javascript";
  8016. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8017. script4.src = window.origin + "/js/Common/jietu2E.js";
  8018. if (_iframe) {
  8019. if (str == 'doc') {
  8020. _iframe = _formdiv.querySelector('iframe')
  8021. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8022. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8023. _iframe.contentWindow.document.body.appendChild(script1);
  8024. _iframe.contentWindow.document.body.appendChild(script2);
  8025. // _iframe.contentWindow.document.body.appendChild(script3);
  8026. _iframe.contentWindow.document.body.appendChild(script4);
  8027. })
  8028. if (onloadListener) {
  8029. _iframe.contentDocument.location.reload()
  8030. } else {
  8031. _iframe.contentDocument.location.reload()
  8032. }
  8033. } else if (str == 'courseDesign') {
  8034. U.UF.DL.iframeLoad(_iframe, function () {
  8035. // _iframe.contentWindow.U.MD.O.W.load();
  8036. // _iframe.contentWindow.document.body.appendChild(script1);
  8037. _iframe.contentWindow.document.body.appendChild(script2);
  8038. _iframe.contentWindow.document.body.appendChild(script4);
  8039. })
  8040. } else if (str == 'mind') {
  8041. _iframe = _formdiv.querySelector('iframe')
  8042. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8043. //
  8044. _iframe.contentWindow.document.body.appendChild(script1);
  8045. _iframe.contentWindow.document.body.appendChild(script2);
  8046. _iframe.contentWindow.document.body.appendChild(script4);
  8047. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8048. })
  8049. if (onloadListener) {
  8050. _iframe.contentDocument.location.reload()
  8051. } else {
  8052. _iframe.contentDocument.location.reload()
  8053. }
  8054. } else if (str == 'whiteboard') {
  8055. _iframe = _formdiv.querySelector('iframe')
  8056. let onloadListener = _iframe.onload = () => {
  8057. _iframe.contentWindow.document.body.appendChild(script1);
  8058. _iframe.contentWindow.document.body.appendChild(script2);
  8059. _iframe.contentWindow.document.body.appendChild(script4);
  8060. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8061. };
  8062. // if (onloadListener) {
  8063. // try {
  8064. // _iframe.src += "?cocorobo="+new Date().getTime()
  8065. // _iframe.contentWindow.document.location.reload()
  8066. // } catch (error) {
  8067. // }
  8068. // } else {
  8069. // _iframe.contentDocument.location.reload()
  8070. // }
  8071. } else {
  8072. _iframe.onload = () => {
  8073. _iframe.contentWindow.document.body.appendChild(script1);
  8074. _iframe.contentWindow.document.body.appendChild(script2);
  8075. // _iframe.contentWindow.document.body.appendChild(script3);
  8076. _iframe.contentWindow.document.body.appendChild(script4);
  8077. };
  8078. }
  8079. _jie.onclick = async () => {
  8080. let text = ''
  8081. if (aTool == 1) {
  8082. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8083. } else if (aTool == 6) {
  8084. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8085. } else if (aTool == 3) {
  8086. text = await U.MD.D.I.getEditorContent(_iframe);
  8087. }
  8088. _loading.style.display = 'flex'
  8089. console.log(_loading);
  8090. var _ajs = _iframe.contentWindow.document.createElement("script");
  8091. _ajs.type = "text/javascript";
  8092. _ajs.innerHTML =
  8093. // 'console.log(' + _loading + ');\n' +
  8094. 'var _js = document.createElement("script");\n' +
  8095. '_js.type="text/javascript";\n' +
  8096. '_js.charset="UTF-8";\n' +
  8097. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8098. "_js.onload = function(){\n" +
  8099. ' var a = document.getElementsByTagName("img")\n' +
  8100. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8101. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8102. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8103. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8104. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8105. "beforeUpload_shishi(file," +
  8106. "'" +
  8107. _userid +
  8108. "'" +
  8109. ", " +
  8110. "'" +
  8111. _cid +
  8112. "'" +
  8113. ", " +
  8114. "'" +
  8115. _stage +
  8116. "'" +
  8117. ", " +
  8118. "'" +
  8119. _task +
  8120. "'" +
  8121. ", " +
  8122. "'" +
  8123. _tool +
  8124. "'" +
  8125. ", " +
  8126. "'" +
  8127. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8128. "'" +
  8129. ", " +
  8130. "'" +
  8131. aTool +
  8132. "'" +
  8133. ", " +
  8134. "`" +
  8135. text +
  8136. "`" +
  8137. ")\n" +
  8138. " });\n" +
  8139. "}\n" +
  8140. "document.head.appendChild(_js);\n";
  8141. _iframe.contentWindow.document.head.appendChild(_ajs);
  8142. }
  8143. }
  8144. //U.MD.D.I.openClick(str);
  8145. //如果有任务栏信息
  8146. // if (_taskbar) {
  8147. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8148. // }
  8149. }
  8150. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8151. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8152. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8153. _userid = student.userid, //登录用户id
  8154. _username = student.student //用户名字
  8155. let _iframe;
  8156. let _cid = cid,
  8157. _stage = stage,
  8158. _task = task,
  8159. _tool = tool;
  8160. var _jie = $$("div", {
  8161. "style": {
  8162. "position": "absolute",
  8163. "bottom": "50px",
  8164. "right": "50px",
  8165. "zIndex": "9999",
  8166. "backgroundColor": "#2268bc",
  8167. "color": "#fff",
  8168. "padding": "12px 20px",
  8169. "cursor": "pointer",
  8170. "borderRadius": "4px",
  8171. },
  8172. "innerHTML": "提交作业"
  8173. })
  8174. let aTool = ''
  8175. let _loading = document.createElement('div')
  8176. _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;"
  8177. // _loading.id = "";
  8178. let _lchild = document.createElement('div')
  8179. let _limg = document.createElement('img')
  8180. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8181. _limg.style = "width: 26px;margin-right: 10px;"
  8182. _lchild.appendChild(_limg)
  8183. let _lspan = document.createElement('span')
  8184. _lspan.innerHTML = "上传中..."
  8185. _lchild.appendChild(_lspan)
  8186. _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%);"
  8187. _loading.appendChild(_lchild)
  8188. var _box = $$('div', {
  8189. "style": {
  8190. "position": "relative",
  8191. "width": "100%",
  8192. "height": "100%",
  8193. },
  8194. })
  8195. _box.appendChild(_loading)
  8196. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8197. switch (str) {
  8198. case "whiteboard":
  8199. aTool = 1;
  8200. _iframe = $$("iframe", {
  8201. "frameborder": "no",
  8202. "border": "0",
  8203. "scrolling ": "no",
  8204. "style": {
  8205. "cssText": "border:0;width:100%;height:100%"
  8206. },
  8207. "src": "https://beta.iwb.cocorobo.cn/"
  8208. })
  8209. _box.appendChild(_iframe);
  8210. _box.appendChild(_jie);
  8211. _formdiv = new U.UF.UI.form(
  8212. "电子白板-" + _username,
  8213. _box, {
  8214. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8215. "style": {
  8216. "width": "90%",
  8217. "height": "90%",
  8218. "overflow": 'hidden'
  8219. },
  8220. "onresize": function () { }
  8221. }, {
  8222. closecallback: function () { }
  8223. }, {
  8224. "style": {
  8225. "height": "36px"
  8226. }
  8227. }).form; //创建窗体
  8228. _taskbar = {
  8229. "id": str + _formdiv.id,
  8230. "style": {
  8231. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8232. },
  8233. "name": "电子白板",
  8234. "forms": _formdiv,
  8235. "click": function () {
  8236. U.MD.D.I.openApplication(str, obj, info);
  8237. }
  8238. }
  8239. break;
  8240. case "mind":
  8241. aTool = 3;
  8242. _iframe = $$("iframe", {
  8243. "frameborder": "no",
  8244. "border": "0",
  8245. "scrolling ": "no",
  8246. "style": {
  8247. "cssText": "border:0;width:100%;height:100%"
  8248. },
  8249. "src": "/kityminder-editor/dist/index.html"
  8250. })
  8251. _box.appendChild(_iframe);
  8252. _box.appendChild(_jie);
  8253. _formdiv = new U.UF.UI.form(
  8254. "思维导图-" + _username,
  8255. _box, { //"/jsmind/example/demo.html"
  8256. "id": "mind" + cid + stage + task + tool + _userid,
  8257. "style": {
  8258. "width": "90%",
  8259. "height": "90%",
  8260. "overflow": 'hidden'
  8261. },
  8262. "onresize": function () { }
  8263. }, {
  8264. closecallback: function () { }
  8265. }, {
  8266. "style": {
  8267. "height": "36px"
  8268. }
  8269. }).form; //创建窗体
  8270. _taskbar = {
  8271. "id": str + _formdiv.id,
  8272. "style": {
  8273. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8274. },
  8275. "name": "思维导图",
  8276. "forms": _formdiv,
  8277. "click": function () {
  8278. U.MD.D.I.openApplication(str, obj, info);
  8279. }
  8280. }
  8281. break;
  8282. case "MindMap":
  8283. aTool = 3;
  8284. _iframe = $$("iframe", {
  8285. "frameborder": "no",
  8286. "border": "0",
  8287. "scrolling ": "no",
  8288. "style": {
  8289. "cssText": "border:0;width:100%;height:100%"
  8290. },
  8291. "src": "//cloud.cocorobo.cn/mind/"
  8292. })
  8293. _box.appendChild(_iframe);
  8294. _box.appendChild(_jie);
  8295. _formdiv = new U.UF.UI.form(
  8296. "思维导图-" + _username,
  8297. _box, { //"/jsmind/example/demo.html"
  8298. "id": "mind" + cid + stage + task + tool + _userid,
  8299. "style": {
  8300. "width": "90%",
  8301. "height": "90%",
  8302. "overflow": 'hidden'
  8303. },
  8304. "onresize": function () { }
  8305. }, {
  8306. closecallback: function () { }
  8307. }, {
  8308. "style": {
  8309. "height": "36px"
  8310. }
  8311. }).form; //创建窗体
  8312. _taskbar = {
  8313. "id": str + _formdiv.id,
  8314. "style": {
  8315. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8316. },
  8317. "name": "思维导图",
  8318. "forms": _formdiv,
  8319. "click": function () {
  8320. U.MD.D.I.openApplication(str, obj, info);
  8321. }
  8322. }
  8323. break;
  8324. case "doc":
  8325. aTool = 6;
  8326. _iframe = $$("iframe", {
  8327. "frameborder": "no",
  8328. "border": "0",
  8329. "scrolling ": "no",
  8330. "style": {
  8331. "cssText": "border:0;width:100%;height:100%"
  8332. },
  8333. "src": "/Office/Word/WordEditArea.htm"
  8334. })
  8335. _box.appendChild(_iframe);
  8336. _box.appendChild(_jie);
  8337. _formdiv = new U.UF.UI.form(
  8338. "协同文档-" + _username,
  8339. _box, {
  8340. "id": "doc" + cid + stage + task + tool + _userid,
  8341. "style": {
  8342. "width": "90%",
  8343. "height": "90%",
  8344. "overflow": 'hidden'
  8345. },
  8346. "onresize": function () { }
  8347. }, {
  8348. closecallback: function () { }
  8349. }, {
  8350. "style": {
  8351. "height": "36px"
  8352. }
  8353. }).form; //创建窗体
  8354. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8355. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8356. })
  8357. _taskbar = {
  8358. "id": str + _formdiv.id,
  8359. "style": {
  8360. "backgroundImage": "url(/img/icon/doc.png)"
  8361. },
  8362. "name": "协同文档",
  8363. "forms": _formdiv,
  8364. "click": function () {
  8365. U.MD.D.I.openApplication(str, obj, info);
  8366. }
  8367. }
  8368. break;
  8369. case "mindNetwork": //好友打开
  8370. aTool = 7;
  8371. _iframe = $$("iframe", {
  8372. "webkitallowfullscreen": "",
  8373. "mozallowfullscreen": "",
  8374. "allowfullscreen": "",
  8375. "frameborder": "no",
  8376. "border": "0",
  8377. "scrolling ": "no",
  8378. "style": {
  8379. "cssText": "border:0; width:100%; height:100%;"
  8380. },
  8381. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8382. })
  8383. _box.appendChild(_iframe);
  8384. _box.appendChild(_jie);
  8385. _formdiv = new U.UF.UI.form(
  8386. "思维网格-" + _username,
  8387. _box, {
  8388. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8389. "style": {
  8390. "width": "90%",
  8391. "height": "90%",
  8392. "overflow": 'hidden'
  8393. },
  8394. "onresize": function () { }
  8395. }, {
  8396. closecallback: function () { }
  8397. }, {
  8398. "style": {
  8399. "height": "36px"
  8400. }
  8401. }).form; //创建窗体
  8402. _taskbar = {
  8403. "id": str + _formdiv.id,
  8404. "style": {
  8405. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8406. },
  8407. "name": "思维网格",
  8408. "forms": _formdiv,
  8409. "click": function () {
  8410. U.MD.D.I.openApplication(str, obj, info);
  8411. }
  8412. }
  8413. break;
  8414. case "courseDesign":
  8415. _iframe = $$("iframe", {
  8416. "webkitallowfullscreen": "",
  8417. "mozallowfullscreen": "",
  8418. "allowfullscreen": "",
  8419. "frameborder": "no",
  8420. "border": "0",
  8421. "scrolling ": "no",
  8422. "style": {
  8423. "cssText": "border:0; width:100%; height:100%;"
  8424. },
  8425. "src": "/course-design-vue"
  8426. })
  8427. _box.appendChild(_iframe);
  8428. _box.appendChild(_jie);
  8429. _formdiv = new U.UF.UI.form(
  8430. "项目设计-" + _username,
  8431. _box, {
  8432. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8433. "style": {
  8434. "width": "90%",
  8435. "height": "90%",
  8436. "overflow": 'hidden'
  8437. },
  8438. "onresize": function () { }
  8439. }, {
  8440. closecallback: function () { }
  8441. }, {
  8442. "style": {
  8443. "height": "36px"
  8444. }
  8445. }).form; //创建窗体
  8446. _taskbar = {
  8447. "id": str + _formdiv.id,
  8448. "style": {
  8449. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8450. },
  8451. "name": "项目设计",
  8452. "forms": _formdiv,
  8453. "click": function () {
  8454. U.MD.D.I.openApplication(str, obj, info);
  8455. }
  8456. }
  8457. break;
  8458. }
  8459. const script1 = document.createElement("script");
  8460. script1.type = "text/javascript";
  8461. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8462. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8463. const script2 = document.createElement("script");
  8464. script2.type = "text/javascript";
  8465. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8466. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8467. const script3 = document.createElement("script");
  8468. script3.type = "text/javascript";
  8469. script3.charset = "UTF-8";
  8470. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8471. const script4 = document.createElement("script");
  8472. script4.type = "text/javascript";
  8473. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8474. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8475. if (_iframe) {
  8476. if (str == 'doc') {
  8477. _iframe = _formdiv.querySelector('iframe')
  8478. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8479. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8480. _iframe.contentWindow.document.body.appendChild(script1);
  8481. _iframe.contentWindow.document.body.appendChild(script2);
  8482. // _iframe.contentWindow.document.body.appendChild(script3);
  8483. _iframe.contentWindow.document.body.appendChild(script4);
  8484. })
  8485. if (onloadListener) {
  8486. _iframe.contentDocument.location.reload()
  8487. } else {
  8488. _iframe.contentDocument.location.reload()
  8489. }
  8490. } else if (str == 'courseDesign') {
  8491. U.UF.DL.iframeLoad(_iframe, function () {
  8492. // _iframe.contentWindow.U.MD.O.W.load();
  8493. // _iframe.contentWindow.document.body.appendChild(script1);
  8494. _iframe.contentWindow.document.body.appendChild(script2);
  8495. _iframe.contentWindow.document.body.appendChild(script4);
  8496. })
  8497. } else if (str == 'mind') {
  8498. _iframe = _formdiv.querySelector('iframe')
  8499. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8500. //
  8501. _iframe.contentWindow.document.body.appendChild(script1);
  8502. _iframe.contentWindow.document.body.appendChild(script2);
  8503. _iframe.contentWindow.document.body.appendChild(script4);
  8504. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8505. })
  8506. if (onloadListener) {
  8507. _iframe.contentDocument.location.reload()
  8508. } else {
  8509. _iframe.contentDocument.location.reload()
  8510. }
  8511. } else if (str == 'whiteboard') {
  8512. _iframe = _formdiv.querySelector('iframe')
  8513. let onloadListener = _iframe.onload = () => {
  8514. _iframe.contentWindow.document.body.appendChild(script1);
  8515. _iframe.contentWindow.document.body.appendChild(script2);
  8516. _iframe.contentWindow.document.body.appendChild(script4);
  8517. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8518. };
  8519. // if (onloadListener) {
  8520. // try {
  8521. // _iframe.src += "?cocorobo="+new Date().getTime()
  8522. // _iframe.contentWindow.document.location.reload()
  8523. // } catch (error) {
  8524. // }
  8525. // } else {
  8526. // _iframe.contentDocument.location.reload()
  8527. // }
  8528. } else {
  8529. _iframe.onload = () => {
  8530. _iframe.contentWindow.document.body.appendChild(script1);
  8531. _iframe.contentWindow.document.body.appendChild(script2);
  8532. // _iframe.contentWindow.document.body.appendChild(script3);
  8533. _iframe.contentWindow.document.body.appendChild(script4);
  8534. };
  8535. }
  8536. _jie.onclick = async () => {
  8537. let text = ''
  8538. if (aTool == 1) {
  8539. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8540. } else if (aTool == 6) {
  8541. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8542. } else if (aTool == 3) {
  8543. text = await U.MD.D.I.getEditorContent(_iframe);
  8544. }
  8545. _loading.style.display = 'flex'
  8546. console.log(_loading);
  8547. var _ajs = _iframe.contentWindow.document.createElement("script");
  8548. _ajs.type = "text/javascript";
  8549. _ajs.innerHTML =
  8550. // 'console.log(' + _loading + ');\n' +
  8551. 'var _js = document.createElement("script");\n' +
  8552. '_js.type="text/javascript";\n' +
  8553. '_js.charset="UTF-8";\n' +
  8554. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8555. "_js.onload = function(){\n" +
  8556. ' var a = document.getElementsByTagName("img")\n' +
  8557. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8558. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8559. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8560. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8561. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8562. "beforeUpload_shishi(file," +
  8563. "'" +
  8564. _userid +
  8565. "'" +
  8566. ", " +
  8567. "'" +
  8568. _cid +
  8569. "'" +
  8570. ", " +
  8571. "'" +
  8572. _stage +
  8573. "'" +
  8574. ", " +
  8575. "'" +
  8576. _task +
  8577. "'" +
  8578. ", " +
  8579. "'" +
  8580. _tool +
  8581. "'" +
  8582. ", " +
  8583. "'" +
  8584. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8585. "'" +
  8586. ", " +
  8587. "'" +
  8588. aTool +
  8589. "'" +
  8590. ", " +
  8591. "`" +
  8592. text +
  8593. "`" +
  8594. ")\n" +
  8595. " });\n" +
  8596. "}\n" +
  8597. "document.head.appendChild(_js);\n";
  8598. _iframe.contentWindow.document.head.appendChild(_ajs);
  8599. }
  8600. }
  8601. }
  8602. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8603. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8604. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8605. _userid = student.userid, //登录用户id
  8606. _username = student.student //用户名字
  8607. let _iframe;
  8608. let _cid = cid,
  8609. _stage = stage,
  8610. _task = task,
  8611. _tool = tool;
  8612. var _jie = $$("div", {
  8613. "style": {
  8614. "position": "absolute",
  8615. "bottom": "50px",
  8616. "right": "50px",
  8617. "zIndex": "9999",
  8618. "backgroundColor": "#2268bc",
  8619. "color": "#fff",
  8620. "padding": "12px 20px",
  8621. "cursor": "pointer",
  8622. "borderRadius": "4px",
  8623. },
  8624. "innerHTML": "提交作业"
  8625. })
  8626. let aTool = ''
  8627. let _loading = document.createElement('div')
  8628. _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;"
  8629. // _loading.id = "";
  8630. let _lchild = document.createElement('div')
  8631. let _limg = document.createElement('img')
  8632. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8633. _limg.style = "width: 26px;margin-right: 10px;"
  8634. _lchild.appendChild(_limg)
  8635. let _lspan = document.createElement('span')
  8636. _lspan.innerHTML = "上传中..."
  8637. _lchild.appendChild(_lspan)
  8638. _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%);"
  8639. _loading.appendChild(_lchild)
  8640. var _box = $$('div', {
  8641. "style": {
  8642. "position": "relative",
  8643. "width": "100%",
  8644. "height": "100%",
  8645. },
  8646. })
  8647. _box.appendChild(_loading)
  8648. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8649. switch (str) {
  8650. case "whiteboard":
  8651. aTool = 1;
  8652. _iframe = $$("iframe", {
  8653. "frameborder": "no",
  8654. "border": "0",
  8655. "scrolling ": "no",
  8656. "style": {
  8657. "cssText": "border:0;width:100%;height:100%"
  8658. },
  8659. "src": "https://beta.iwb.cocorobo.cn/"
  8660. })
  8661. _box.appendChild(_iframe);
  8662. _box.appendChild(_jie);
  8663. _formdiv = new U.UF.UI.form(
  8664. "电子白板-" + _username,
  8665. _box, {
  8666. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8667. "style": {
  8668. "width": "90%",
  8669. "height": "90%",
  8670. "overflow": 'hidden'
  8671. },
  8672. "onresize": function () { }
  8673. }, {
  8674. closecallback: function () { }
  8675. }, {
  8676. "style": {
  8677. "height": "36px"
  8678. }
  8679. }).form; //创建窗体
  8680. _taskbar = {
  8681. "id": str + _formdiv.id,
  8682. "style": {
  8683. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8684. },
  8685. "name": "电子白板",
  8686. "forms": _formdiv,
  8687. "click": function () {
  8688. U.MD.D.I.openApplication(str, obj, info);
  8689. }
  8690. }
  8691. break;
  8692. case "mind":
  8693. aTool = 3;
  8694. _iframe = $$("iframe", {
  8695. "frameborder": "no",
  8696. "border": "0",
  8697. "scrolling ": "no",
  8698. "style": {
  8699. "cssText": "border:0;width:100%;height:100%"
  8700. },
  8701. "src": "/kityminder-editor/dist/index.html"
  8702. })
  8703. _box.appendChild(_iframe);
  8704. _box.appendChild(_jie);
  8705. _formdiv = new U.UF.UI.form(
  8706. "思维导图-" + _username,
  8707. _box, { //"/jsmind/example/demo.html"
  8708. "id": "mind" + cid + stage + task + tool + _userid,
  8709. "style": {
  8710. "width": "90%",
  8711. "height": "90%",
  8712. "overflow": 'hidden'
  8713. },
  8714. "onresize": function () { }
  8715. }, {
  8716. closecallback: function () { }
  8717. }, {
  8718. "style": {
  8719. "height": "36px"
  8720. }
  8721. }).form; //创建窗体
  8722. _taskbar = {
  8723. "id": str + _formdiv.id,
  8724. "style": {
  8725. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8726. },
  8727. "name": "思维导图",
  8728. "forms": _formdiv,
  8729. "click": function () {
  8730. U.MD.D.I.openApplication(str, obj, info);
  8731. }
  8732. }
  8733. break;
  8734. case "MindMap":
  8735. aTool = 3;
  8736. _iframe = $$("iframe", {
  8737. "frameborder": "no",
  8738. "border": "0",
  8739. "scrolling ": "no",
  8740. "style": {
  8741. "cssText": "border:0;width:100%;height:100%"
  8742. },
  8743. "src": "//cloud.cocorobo.cn/mind/"
  8744. })
  8745. _box.appendChild(_iframe);
  8746. _box.appendChild(_jie);
  8747. _formdiv = new U.UF.UI.form(
  8748. "思维导图-" + _username,
  8749. _box, { //"/jsmind/example/demo.html"
  8750. "id": "mind" + cid + stage + task + tool + _userid,
  8751. "style": {
  8752. "width": "90%",
  8753. "height": "90%",
  8754. "overflow": 'hidden'
  8755. },
  8756. "onresize": function () { }
  8757. }, {
  8758. closecallback: function () { }
  8759. }, {
  8760. "style": {
  8761. "height": "36px"
  8762. }
  8763. }).form; //创建窗体
  8764. _taskbar = {
  8765. "id": str + _formdiv.id,
  8766. "style": {
  8767. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8768. },
  8769. "name": "思维导图",
  8770. "forms": _formdiv,
  8771. "click": function () {
  8772. U.MD.D.I.openApplication(str, obj, info);
  8773. }
  8774. }
  8775. break;
  8776. case "doc":
  8777. aTool = 6;
  8778. _iframe = $$("iframe", {
  8779. "frameborder": "no",
  8780. "border": "0",
  8781. "scrolling ": "no",
  8782. "style": {
  8783. "cssText": "border:0;width:100%;height:100%"
  8784. },
  8785. "src": "/Office/Word/WordEditArea.htm"
  8786. })
  8787. _box.appendChild(_iframe);
  8788. _box.appendChild(_jie);
  8789. _formdiv = new U.UF.UI.form(
  8790. "协同文档-" + _username,
  8791. _box, {
  8792. "id": "doc" + cid + stage + task + tool + _userid,
  8793. "style": {
  8794. "width": "90%",
  8795. "height": "90%",
  8796. "overflow": 'hidden'
  8797. },
  8798. "onresize": function () { }
  8799. }, {
  8800. closecallback: function () { }
  8801. }, {
  8802. "style": {
  8803. "height": "36px"
  8804. }
  8805. }).form; //创建窗体
  8806. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8807. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8808. })
  8809. _taskbar = {
  8810. "id": str + _formdiv.id,
  8811. "style": {
  8812. "backgroundImage": "url(/img/icon/doc.png)"
  8813. },
  8814. "name": "协同文档",
  8815. "forms": _formdiv,
  8816. "click": function () {
  8817. U.MD.D.I.openApplication(str, obj, info);
  8818. }
  8819. }
  8820. break;
  8821. case "mindNetwork": //好友打开
  8822. aTool = 7;
  8823. _iframe = $$("iframe", {
  8824. "webkitallowfullscreen": "",
  8825. "mozallowfullscreen": "",
  8826. "allowfullscreen": "",
  8827. "frameborder": "no",
  8828. "border": "0",
  8829. "scrolling ": "no",
  8830. "style": {
  8831. "cssText": "border:0; width:100%; height:100%;"
  8832. },
  8833. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8834. })
  8835. _box.appendChild(_iframe);
  8836. _box.appendChild(_jie);
  8837. _formdiv = new U.UF.UI.form(
  8838. "思维网格-" + _username,
  8839. _box, {
  8840. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8841. "style": {
  8842. "width": "90%",
  8843. "height": "90%",
  8844. "overflow": 'hidden'
  8845. },
  8846. "onresize": function () { }
  8847. }, {
  8848. closecallback: function () { }
  8849. }, {
  8850. "style": {
  8851. "height": "36px"
  8852. }
  8853. }).form; //创建窗体
  8854. _taskbar = {
  8855. "id": str + _formdiv.id,
  8856. "style": {
  8857. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8858. },
  8859. "name": "思维网格",
  8860. "forms": _formdiv,
  8861. "click": function () {
  8862. U.MD.D.I.openApplication(str, obj, info);
  8863. }
  8864. }
  8865. break;
  8866. case "courseDesign":
  8867. _iframe = $$("iframe", {
  8868. "webkitallowfullscreen": "",
  8869. "mozallowfullscreen": "",
  8870. "allowfullscreen": "",
  8871. "frameborder": "no",
  8872. "border": "0",
  8873. "scrolling ": "no",
  8874. "style": {
  8875. "cssText": "border:0; width:100%; height:100%;"
  8876. },
  8877. "src": "/course-design-vue"
  8878. })
  8879. _box.appendChild(_iframe);
  8880. _box.appendChild(_jie);
  8881. _formdiv = new U.UF.UI.form(
  8882. "项目设计-" + _username,
  8883. _box, {
  8884. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8885. "style": {
  8886. "width": "90%",
  8887. "height": "90%",
  8888. "overflow": 'hidden'
  8889. },
  8890. "onresize": function () { }
  8891. }, {
  8892. closecallback: function () { }
  8893. }, {
  8894. "style": {
  8895. "height": "36px"
  8896. }
  8897. }).form; //创建窗体
  8898. _taskbar = {
  8899. "id": str + _formdiv.id,
  8900. "style": {
  8901. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8902. },
  8903. "name": "项目设计",
  8904. "forms": _formdiv,
  8905. "click": function () {
  8906. U.MD.D.I.openApplication(str, obj, info);
  8907. }
  8908. }
  8909. break;
  8910. }
  8911. const script1 = document.createElement("script");
  8912. script1.type = "text/javascript";
  8913. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8914. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8915. const script2 = document.createElement("script");
  8916. script2.type = "text/javascript";
  8917. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8918. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8919. const script3 = document.createElement("script");
  8920. script3.type = "text/javascript";
  8921. script3.charset = "UTF-8";
  8922. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8923. const script4 = document.createElement("script");
  8924. script4.type = "text/javascript";
  8925. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8926. script4.src = window.origin + "/js/Common/jietu2E.js";
  8927. if (_iframe) {
  8928. if (str == 'doc') {
  8929. _iframe = _formdiv.querySelector('iframe')
  8930. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8931. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8932. _iframe.contentWindow.document.body.appendChild(script1);
  8933. _iframe.contentWindow.document.body.appendChild(script2);
  8934. // _iframe.contentWindow.document.body.appendChild(script3);
  8935. _iframe.contentWindow.document.body.appendChild(script4);
  8936. })
  8937. if (onloadListener) {
  8938. _iframe.contentDocument.location.reload()
  8939. } else {
  8940. _iframe.contentDocument.location.reload()
  8941. }
  8942. } else if (str == 'courseDesign') {
  8943. U.UF.DL.iframeLoad(_iframe, function () {
  8944. // _iframe.contentWindow.U.MD.O.W.load();
  8945. // _iframe.contentWindow.document.body.appendChild(script1);
  8946. _iframe.contentWindow.document.body.appendChild(script2);
  8947. _iframe.contentWindow.document.body.appendChild(script4);
  8948. })
  8949. } else if (str == 'mind') {
  8950. _iframe = _formdiv.querySelector('iframe')
  8951. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8952. //
  8953. _iframe.contentWindow.document.body.appendChild(script1);
  8954. _iframe.contentWindow.document.body.appendChild(script2);
  8955. _iframe.contentWindow.document.body.appendChild(script4);
  8956. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8957. })
  8958. if (onloadListener) {
  8959. _iframe.contentDocument.location.reload()
  8960. } else {
  8961. _iframe.contentDocument.location.reload()
  8962. }
  8963. } else if (str == 'whiteboard') {
  8964. _iframe = _formdiv.querySelector('iframe')
  8965. let onloadListener = _iframe.onload = () => {
  8966. _iframe.contentWindow.document.body.appendChild(script1);
  8967. _iframe.contentWindow.document.body.appendChild(script2);
  8968. _iframe.contentWindow.document.body.appendChild(script4);
  8969. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8970. };
  8971. // if (onloadListener) {
  8972. // try {
  8973. // _iframe.src += "?cocorobo="+new Date().getTime()
  8974. // _iframe.contentWindow.document.location.reload()
  8975. // } catch (error) {
  8976. // }
  8977. // } else {
  8978. // _iframe.contentDocument.location.reload()
  8979. // }
  8980. } else {
  8981. _iframe.onload = () => {
  8982. _iframe.contentWindow.document.body.appendChild(script1);
  8983. _iframe.contentWindow.document.body.appendChild(script2);
  8984. // _iframe.contentWindow.document.body.appendChild(script3);
  8985. _iframe.contentWindow.document.body.appendChild(script4);
  8986. };
  8987. }
  8988. _jie.onclick = async () => {
  8989. let text = ''
  8990. if (aTool == 1) {
  8991. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8992. } else if (aTool == 6) {
  8993. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8994. } else if (aTool == 3) {
  8995. text = await U.MD.D.I.getEditorContent(_iframe);
  8996. }
  8997. _loading.style.display = 'flex'
  8998. console.log(_loading);
  8999. var _ajs = _iframe.contentWindow.document.createElement("script");
  9000. _ajs.type = "text/javascript";
  9001. _ajs.innerHTML =
  9002. // 'console.log(' + _loading + ');\n' +
  9003. 'var _js = document.createElement("script");\n' +
  9004. '_js.type="text/javascript";\n' +
  9005. '_js.charset="UTF-8";\n' +
  9006. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9007. "_js.onload = function(){\n" +
  9008. ' var a = document.getElementsByTagName("img")\n' +
  9009. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9010. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9011. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9012. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9013. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9014. "beforeUpload_shishi(file," +
  9015. "'" +
  9016. _userid +
  9017. "'" +
  9018. ", " +
  9019. "'" +
  9020. _cid +
  9021. "'" +
  9022. ", " +
  9023. "'" +
  9024. _stage +
  9025. "'" +
  9026. ", " +
  9027. "'" +
  9028. _task +
  9029. "'" +
  9030. ", " +
  9031. "'" +
  9032. _tool +
  9033. "'" +
  9034. ", " +
  9035. "'" +
  9036. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9037. "'" +
  9038. ", " +
  9039. "'" +
  9040. aTool +
  9041. "'" +
  9042. ", " +
  9043. "`" +
  9044. text +
  9045. "`" +
  9046. ")\n" +
  9047. " });\n" +
  9048. "}\n" +
  9049. "document.head.appendChild(_js);\n";
  9050. _iframe.contentWindow.document.head.appendChild(_ajs);
  9051. }
  9052. }
  9053. }
  9054. U.MD.D.I.getEditorContent = function (iframe) {
  9055. return new Promise((resolve, reject) => {
  9056. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9057. console.log(content);
  9058. resolve(content)
  9059. });
  9060. });
  9061. }
  9062. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9063. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9064. // if (res.value[0].length > 0) {
  9065. // // resolve(res.value[0][0].text);
  9066. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9067. // $(fileInput).val('');
  9068. // });
  9069. // }
  9070. // }, [], { "type": "GET", "withCredentials": true });
  9071. var xmlhttp;
  9072. var Mac, Sn, DeviceId
  9073. if (window.XMLHttpRequest) {
  9074. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9075. xmlhttp = new XMLHttpRequest();
  9076. } else {
  9077. // IE6, IE5 浏览器执行代码
  9078. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9079. }
  9080. xmlhttp.onreadystatechange = function () {
  9081. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9082. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9083. // resolve(res.value[0][0].text);
  9084. if (type == '2') {
  9085. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9086. } else if (type == '3') {
  9087. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9088. }
  9089. } else {
  9090. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9091. }
  9092. }
  9093. }
  9094. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9095. xmlhttp.send();
  9096. }
  9097. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9098. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9099. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9100. _userinfo = US.userInfo, //登录用户信息
  9101. _userid = US.userInfo.userid //登录用户id
  9102. let _iframe;
  9103. let _cid = cid,
  9104. _stage = stage,
  9105. _task = task,
  9106. _tool = tool;
  9107. var _jie = $$("div", {
  9108. "style": {
  9109. "position": "absolute",
  9110. "bottom": "50px",
  9111. "right": "50px",
  9112. "zIndex": "9999",
  9113. "backgroundColor": "#2268bc",
  9114. "color": "#fff",
  9115. "padding": "12px 20px",
  9116. "cursor": "pointer",
  9117. "borderRadius": "4px",
  9118. },
  9119. "innerHTML": "确认并提交"
  9120. })
  9121. let aTool = ''
  9122. let _loading = document.createElement('div')
  9123. _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;"
  9124. // _loading.id = "";
  9125. let _lchild = document.createElement('div')
  9126. let _limg = document.createElement('img')
  9127. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9128. _limg.style = "width: 26px;margin-right: 10px;"
  9129. _lchild.appendChild(_limg)
  9130. let _lspan = document.createElement('span')
  9131. _lspan.innerHTML = "上传中..."
  9132. _lchild.appendChild(_lspan)
  9133. _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%);"
  9134. _loading.appendChild(_lchild)
  9135. var _box = $$('div', {
  9136. "style": {
  9137. "position": "relative",
  9138. "width": "100%",
  9139. "height": "100%",
  9140. },
  9141. })
  9142. _box.appendChild(_loading)
  9143. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9144. switch (str) {
  9145. case "whiteboard":
  9146. aTool = 1;
  9147. _iframe = $$("iframe", {
  9148. "frameborder": "no",
  9149. "border": "0",
  9150. "scrolling ": "no",
  9151. "style": {
  9152. "cssText": "border:0;width:100%;height:100%"
  9153. },
  9154. "src": "https://beta.iwb.cocorobo.cn/"
  9155. })
  9156. _box.appendChild(_iframe);
  9157. _box.appendChild(_jie);
  9158. _formdiv = new U.UF.UI.form(
  9159. "电子白板",
  9160. _box, {
  9161. "id": "whiteboards" + cid + stage + task + tool,
  9162. "style": {
  9163. "width": "90%",
  9164. "height": "90%",
  9165. "overflow": 'hidden'
  9166. },
  9167. "onresize": function () { }
  9168. }, {
  9169. closecallback: function () { }
  9170. }, {
  9171. "style": {
  9172. "height": "36px"
  9173. }
  9174. }).form; //创建窗体
  9175. _taskbar = {
  9176. "id": str + _formdiv.id,
  9177. "style": {
  9178. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9179. },
  9180. "name": "电子白板",
  9181. "forms": _formdiv,
  9182. "click": function () {
  9183. U.MD.D.I.openApplication(str, obj, info);
  9184. }
  9185. }
  9186. break;
  9187. case "mind":
  9188. aTool = 3;
  9189. _iframe = $$("iframe", {
  9190. "frameborder": "no",
  9191. "border": "0",
  9192. "scrolling ": "no",
  9193. "style": {
  9194. "cssText": "border:0;width:100%;height:100%"
  9195. },
  9196. "src": "/kityminder-editor/dist/index.html"
  9197. });
  9198. _box.appendChild(_iframe);
  9199. _box.appendChild(_jie);
  9200. _formdiv = new U.UF.UI.form(
  9201. "思维导图",
  9202. _box, { //"/jsmind/example/demo.html"
  9203. "id": "minds" + cid + stage + task + tool,
  9204. "style": {
  9205. "width": "90%",
  9206. "height": "90%",
  9207. "overflow": 'hidden'
  9208. },
  9209. "onresize": function () { }
  9210. }, {
  9211. closecallback: function () { }
  9212. }, {
  9213. "style": {
  9214. "height": "36px"
  9215. }
  9216. }).form; //创建窗体
  9217. _taskbar = {
  9218. "id": str + _formdiv.id,
  9219. "style": {
  9220. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9221. },
  9222. "name": "思维导图",
  9223. "forms": _formdiv,
  9224. "click": function () {
  9225. U.MD.D.I.openApplication(str, obj, info);
  9226. }
  9227. }
  9228. break;
  9229. case "doc":
  9230. aTool = 6;
  9231. _iframe = $$("iframe", {
  9232. "frameborder": "no",
  9233. "border": "0",
  9234. "scrolling ": "no",
  9235. "style": {
  9236. "cssText": "border:0;width:100%;height:100%"
  9237. },
  9238. "src": "/Office/Word/WordEditArea.htm"
  9239. })
  9240. _box.appendChild(_iframe);
  9241. _box.appendChild(_jie);
  9242. _formdiv = new U.UF.UI.form(
  9243. "协同文档",
  9244. _box, {
  9245. "id": "docs" + cid + stage + task + tool,
  9246. "style": {
  9247. "width": "90%",
  9248. "height": "90%",
  9249. "overflow": 'hidden'
  9250. },
  9251. "onresize": function () { }
  9252. }, {
  9253. closecallback: function () { }
  9254. }, {
  9255. "style": {
  9256. "height": "36px"
  9257. }
  9258. }).form; //创建窗体
  9259. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9260. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9261. })
  9262. _taskbar = {
  9263. "id": str + _formdiv.id,
  9264. "style": {
  9265. "backgroundImage": "url(/img/icon/doc.png)"
  9266. },
  9267. "name": "协同文档",
  9268. "forms": _formdiv,
  9269. "click": function () {
  9270. U.MD.D.I.openApplication(str, obj, info);
  9271. }
  9272. }
  9273. break;
  9274. }
  9275. const script1 = document.createElement("script");
  9276. script1.type = "text/javascript";
  9277. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9278. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9279. const script2 = document.createElement("script");
  9280. script2.type = "text/javascript";
  9281. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9282. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9283. const script3 = document.createElement("script");
  9284. script3.type = "text/javascript";
  9285. script3.charset = "UTF-8";
  9286. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9287. const script4 = document.createElement("script");
  9288. script4.type = "text/javascript";
  9289. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9290. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9291. if (_iframe) {
  9292. if (str == 'doc') {
  9293. _iframe = _formdiv.querySelector('iframe')
  9294. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9295. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9296. _iframe.contentWindow.document.body.appendChild(script1);
  9297. _iframe.contentWindow.document.body.appendChild(script2);
  9298. // _iframe.contentWindow.document.body.appendChild(script3);
  9299. _iframe.contentWindow.document.body.appendChild(script4);
  9300. })
  9301. if (onloadListener) {
  9302. _iframe.contentDocument.location.reload()
  9303. } else {
  9304. _iframe.contentDocument.location.reload()
  9305. }
  9306. } else if (str == 'mind') {
  9307. _iframe = _formdiv.querySelector('iframe')
  9308. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9309. _iframe.contentWindow.document.body.appendChild(script1);
  9310. _iframe.contentWindow.document.body.appendChild(script2);
  9311. _iframe.contentWindow.document.body.appendChild(script4);
  9312. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9313. })
  9314. if (onloadListener) {
  9315. _iframe.contentDocument.location.reload()
  9316. } else {
  9317. _iframe.contentDocument.location.reload()
  9318. }
  9319. } else {
  9320. _iframe.onload = () => {
  9321. _iframe.contentWindow.document.body.appendChild(script1);
  9322. _iframe.contentWindow.document.body.appendChild(script2);
  9323. // _iframe.contentWindow.document.body.appendChild(script3);
  9324. _iframe.contentWindow.document.body.appendChild(script4);
  9325. };
  9326. }
  9327. _jie.onclick = async () => {
  9328. let text = ''
  9329. if (aTool == 6) {
  9330. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9331. } else if (aTool == 3) {
  9332. text = await U.MD.D.I.getEditorContent(_iframe);
  9333. }
  9334. _loading.style.display = 'flex'
  9335. console.log(_loading);
  9336. var _ajs = _iframe.contentWindow.document.createElement("script");
  9337. _ajs.type = "text/javascript";
  9338. _ajs.innerHTML =
  9339. // 'console.log(' + _loading + ');\n' +
  9340. 'var _js = document.createElement("script");\n' +
  9341. '_js.type="text/javascript";\n' +
  9342. '_js.charset="UTF-8";\n' +
  9343. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9344. "_js.onload = function(){\n" +
  9345. ' var a = document.getElementsByTagName("img")\n' +
  9346. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9347. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9348. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9349. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9350. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9351. "beforeUpload_shishi(file," +
  9352. "'" +
  9353. _userid +
  9354. "'" +
  9355. ", " +
  9356. "'" +
  9357. _cid +
  9358. "'" +
  9359. ", " +
  9360. "'" +
  9361. _stage +
  9362. "'" +
  9363. ", " +
  9364. "'" +
  9365. _task +
  9366. "'" +
  9367. ", " +
  9368. "'" +
  9369. _tool +
  9370. "'" +
  9371. ", " +
  9372. "'" +
  9373. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9374. "'" +
  9375. ", " +
  9376. "'" +
  9377. aTool +
  9378. "'" +
  9379. ", " +
  9380. "`" +
  9381. text +
  9382. "`" +
  9383. ")\n" +
  9384. " });\n" +
  9385. "}\n" +
  9386. "document.head.appendChild(_js);\n";
  9387. _iframe.contentWindow.document.head.appendChild(_ajs);
  9388. }
  9389. }
  9390. //U.MD.D.I.openClick(str);
  9391. //如果有任务栏信息
  9392. // if (_taskbar) {
  9393. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9394. // }
  9395. }
  9396. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9397. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9398. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9399. _userinfo = US.userInfo, //登录用户信息
  9400. _userid = US.userInfo.userid //登录用户id
  9401. let _iframe;
  9402. let _cid = cid,
  9403. _stage = stage,
  9404. _task = task,
  9405. _tool = tool;
  9406. var _jie = $$("div", {
  9407. "style": {
  9408. "position": "absolute",
  9409. "bottom": "50px",
  9410. "right": "50px",
  9411. "zIndex": "9999",
  9412. "backgroundColor": "#2268bc",
  9413. "color": "#fff",
  9414. "padding": "12px 20px",
  9415. "cursor": "pointer",
  9416. "borderRadius": "4px",
  9417. },
  9418. "innerHTML": "确认并提交"
  9419. })
  9420. let aTool = ''
  9421. let _loading = document.createElement('div')
  9422. _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;"
  9423. // _loading.id = "";
  9424. let _lchild = document.createElement('div')
  9425. let _limg = document.createElement('img')
  9426. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9427. _limg.style = "width: 26px;margin-right: 10px;"
  9428. _lchild.appendChild(_limg)
  9429. let _lspan = document.createElement('span')
  9430. _lspan.innerHTML = "上传中..."
  9431. _lchild.appendChild(_lspan)
  9432. _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%);"
  9433. _loading.appendChild(_lchild)
  9434. var _box = $$('div', {
  9435. "style": {
  9436. "position": "relative",
  9437. "width": "100%",
  9438. "height": "100%",
  9439. },
  9440. })
  9441. _box.appendChild(_loading)
  9442. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9443. switch (str) {
  9444. case "whiteboard":
  9445. aTool = 1;
  9446. _iframe = $$("iframe", {
  9447. "frameborder": "no",
  9448. "border": "0",
  9449. "scrolling ": "no",
  9450. "style": {
  9451. "cssText": "border:0;width:100%;height:100%"
  9452. },
  9453. "src": "https://beta.iwb.cocorobo.cn/"
  9454. })
  9455. _box.appendChild(_iframe);
  9456. _box.appendChild(_jie);
  9457. _formdiv = new U.UF.UI.form(
  9458. "电子白板",
  9459. _box, {
  9460. "id": "whiteboards" + cid + stage + task + tool,
  9461. "style": {
  9462. "width": "90%",
  9463. "height": "90%",
  9464. "overflow": 'hidden'
  9465. },
  9466. "onresize": function () { }
  9467. }, {
  9468. closecallback: function () { }
  9469. }, {
  9470. "style": {
  9471. "height": "36px"
  9472. }
  9473. }).form; //创建窗体
  9474. _taskbar = {
  9475. "id": str + _formdiv.id,
  9476. "style": {
  9477. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9478. },
  9479. "name": "电子白板",
  9480. "forms": _formdiv,
  9481. "click": function () {
  9482. U.MD.D.I.openApplication(str, obj, info);
  9483. }
  9484. }
  9485. break;
  9486. case "mind":
  9487. aTool = 3;
  9488. _iframe = $$("iframe", {
  9489. "frameborder": "no",
  9490. "border": "0",
  9491. "scrolling ": "no",
  9492. "style": {
  9493. "cssText": "border:0;width:100%;height:100%"
  9494. },
  9495. "src": "/kityminder-editor/dist/index.html"
  9496. });
  9497. _box.appendChild(_iframe);
  9498. _box.appendChild(_jie);
  9499. _formdiv = new U.UF.UI.form(
  9500. "思维导图",
  9501. _box, { //"/jsmind/example/demo.html"
  9502. "id": "minds" + cid + stage + task + tool,
  9503. "style": {
  9504. "width": "90%",
  9505. "height": "90%",
  9506. "overflow": 'hidden'
  9507. },
  9508. "onresize": function () { }
  9509. }, {
  9510. closecallback: function () { }
  9511. }, {
  9512. "style": {
  9513. "height": "36px"
  9514. }
  9515. }).form; //创建窗体
  9516. _taskbar = {
  9517. "id": str + _formdiv.id,
  9518. "style": {
  9519. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9520. },
  9521. "name": "思维导图",
  9522. "forms": _formdiv,
  9523. "click": function () {
  9524. U.MD.D.I.openApplication(str, obj, info);
  9525. }
  9526. }
  9527. break;
  9528. case "doc":
  9529. aTool = 6;
  9530. _iframe = $$("iframe", {
  9531. "frameborder": "no",
  9532. "border": "0",
  9533. "scrolling ": "no",
  9534. "style": {
  9535. "cssText": "border:0;width:100%;height:100%"
  9536. },
  9537. "src": "/Office/Word/WordEditArea.htm"
  9538. })
  9539. _box.appendChild(_iframe);
  9540. _box.appendChild(_jie);
  9541. _formdiv = new U.UF.UI.form(
  9542. "协同文档",
  9543. _box, {
  9544. "id": "docs" + cid + stage + task + tool,
  9545. "style": {
  9546. "width": "90%",
  9547. "height": "90%",
  9548. "overflow": 'hidden'
  9549. },
  9550. "onresize": function () { }
  9551. }, {
  9552. closecallback: function () { }
  9553. }, {
  9554. "style": {
  9555. "height": "36px"
  9556. }
  9557. }).form; //创建窗体
  9558. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9559. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9560. })
  9561. _taskbar = {
  9562. "id": str + _formdiv.id,
  9563. "style": {
  9564. "backgroundImage": "url(/img/icon/doc.png)"
  9565. },
  9566. "name": "协同文档",
  9567. "forms": _formdiv,
  9568. "click": function () {
  9569. U.MD.D.I.openApplication(str, obj, info);
  9570. }
  9571. }
  9572. break;
  9573. }
  9574. const script1 = document.createElement("script");
  9575. script1.type = "text/javascript";
  9576. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9577. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9578. const script2 = document.createElement("script");
  9579. script2.type = "text/javascript";
  9580. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9581. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9582. const script3 = document.createElement("script");
  9583. script3.type = "text/javascript";
  9584. script3.charset = "UTF-8";
  9585. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9586. const script4 = document.createElement("script");
  9587. script4.type = "text/javascript";
  9588. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9589. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9590. if (_iframe) {
  9591. if (str == 'doc') {
  9592. _iframe = _formdiv.querySelector('iframe')
  9593. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9594. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9595. _iframe.contentWindow.document.body.appendChild(script1);
  9596. _iframe.contentWindow.document.body.appendChild(script2);
  9597. // _iframe.contentWindow.document.body.appendChild(script3);
  9598. _iframe.contentWindow.document.body.appendChild(script4);
  9599. })
  9600. if (onloadListener) {
  9601. _iframe.contentDocument.location.reload()
  9602. } else {
  9603. _iframe.contentDocument.location.reload()
  9604. }
  9605. } else if (str == 'mind') {
  9606. _iframe = _formdiv.querySelector('iframe')
  9607. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9608. _iframe.contentWindow.document.body.appendChild(script1);
  9609. _iframe.contentWindow.document.body.appendChild(script2);
  9610. _iframe.contentWindow.document.body.appendChild(script4);
  9611. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9612. })
  9613. if (onloadListener) {
  9614. _iframe.contentDocument.location.reload()
  9615. } else {
  9616. _iframe.contentDocument.location.reload()
  9617. }
  9618. } else {
  9619. _iframe.onload = () => {
  9620. _iframe.contentWindow.document.body.appendChild(script1);
  9621. _iframe.contentWindow.document.body.appendChild(script2);
  9622. // _iframe.contentWindow.document.body.appendChild(script3);
  9623. _iframe.contentWindow.document.body.appendChild(script4);
  9624. };
  9625. }
  9626. _jie.onclick = async () => {
  9627. let text = ''
  9628. if (aTool == 6) {
  9629. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9630. } else if (aTool == 3) {
  9631. text = await U.MD.D.I.getEditorContent(_iframe);
  9632. }
  9633. _loading.style.display = 'flex'
  9634. console.log(_loading);
  9635. var _ajs = _iframe.contentWindow.document.createElement("script");
  9636. _ajs.type = "text/javascript";
  9637. _ajs.innerHTML =
  9638. // 'console.log(' + _loading + ');\n' +
  9639. 'var _js = document.createElement("script");\n' +
  9640. '_js.type="text/javascript";\n' +
  9641. '_js.charset="UTF-8";\n' +
  9642. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9643. "_js.onload = function(){\n" +
  9644. ' var a = document.getElementsByTagName("img")\n' +
  9645. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9646. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9647. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9648. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9649. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9650. "beforeUpload_shishi(file," +
  9651. "'" +
  9652. _userid +
  9653. "'" +
  9654. ", " +
  9655. "'" +
  9656. _cid +
  9657. "'" +
  9658. ", " +
  9659. "'" +
  9660. _stage +
  9661. "'" +
  9662. ", " +
  9663. "'" +
  9664. _task +
  9665. "'" +
  9666. ", " +
  9667. "'" +
  9668. _tool +
  9669. "'" +
  9670. ", " +
  9671. "'" +
  9672. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9673. "'" +
  9674. ", " +
  9675. "'" +
  9676. aTool +
  9677. "'" +
  9678. ", " +
  9679. "`" +
  9680. text +
  9681. "`" +
  9682. ")\n" +
  9683. " });\n" +
  9684. "}\n" +
  9685. "document.head.appendChild(_js);\n";
  9686. _iframe.contentWindow.document.head.appendChild(_ajs);
  9687. }
  9688. }
  9689. //U.MD.D.I.openClick(str);
  9690. //如果有任务栏信息
  9691. // if (_taskbar) {
  9692. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9693. // }
  9694. }
  9695. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9696. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9697. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9698. _userinfo = US.userInfo, //登录用户信息
  9699. _userid = US.userInfo.userid //登录用户id
  9700. let _iframe;
  9701. let _cid = cid,
  9702. _stage = stage,
  9703. _task = task,
  9704. _tool = tool;
  9705. var _jie = $$("div", {
  9706. "style": {
  9707. "position": "absolute",
  9708. "bottom": "50px",
  9709. "right": "50px",
  9710. "zIndex": "9999",
  9711. "backgroundColor": "#2268bc",
  9712. "color": "#fff",
  9713. "padding": "12px 20px",
  9714. "cursor": "pointer",
  9715. "borderRadius": "4px",
  9716. },
  9717. "innerHTML": "上传模板"
  9718. })
  9719. let aTool = ''
  9720. let _loading = document.createElement('div')
  9721. _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;"
  9722. // _loading.id = "";
  9723. let _lchild = document.createElement('div')
  9724. let _limg = document.createElement('img')
  9725. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9726. _limg.style = "width: 26px;margin-right: 10px;"
  9727. _lchild.appendChild(_limg)
  9728. let _lspan = document.createElement('span')
  9729. _lspan.innerHTML = "上传中..."
  9730. _lchild.appendChild(_lspan)
  9731. _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%);"
  9732. _loading.appendChild(_lchild)
  9733. var _box = $$('div', {
  9734. "style": {
  9735. "position": "relative",
  9736. "width": "100%",
  9737. "height": "100%",
  9738. },
  9739. })
  9740. _box.appendChild(_loading)
  9741. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9742. switch (str) {
  9743. case "whiteboard":
  9744. aTool = 1;
  9745. _iframe = $$("iframe", {
  9746. "frameborder": "no",
  9747. "border": "0",
  9748. "scrolling ": "no",
  9749. "style": {
  9750. "cssText": "border:0;width:100%;height:100%"
  9751. },
  9752. "src": "https://beta.iwb.cocorobo.cn/"
  9753. })
  9754. _box.appendChild(_iframe);
  9755. _box.appendChild(_jie);
  9756. _formdiv = new U.UF.UI.form(
  9757. "电子白板",
  9758. _box, {
  9759. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9760. "style": {
  9761. "width": "90%",
  9762. "height": "90%",
  9763. "overflow": 'hidden'
  9764. },
  9765. "onresize": function () { }
  9766. }, {
  9767. closecallback: function () { }
  9768. }, {
  9769. "style": {
  9770. "height": "36px"
  9771. }
  9772. }).form; //创建窗体
  9773. _taskbar = {
  9774. "id": str + _formdiv.id,
  9775. "style": {
  9776. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9777. },
  9778. "name": "电子白板",
  9779. "forms": _formdiv,
  9780. "click": function () {
  9781. U.MD.D.I.openApplication(str, obj, info);
  9782. }
  9783. }
  9784. break;
  9785. case "mind":
  9786. aTool = 3;
  9787. _iframe = $$("iframe", {
  9788. "frameborder": "no",
  9789. "border": "0",
  9790. "scrolling ": "no",
  9791. "style": {
  9792. "cssText": "border:0;width:100%;height:100%"
  9793. },
  9794. "src": "/kityminder-editor/dist/index.html"
  9795. });
  9796. _box.appendChild(_iframe);
  9797. _box.appendChild(_jie);
  9798. _formdiv = new U.UF.UI.form(
  9799. "思维导图",
  9800. _box, { //"/jsmind/example/demo.html"
  9801. "id": "minds_Yu" + cid + stage + task + tool,
  9802. "style": {
  9803. "width": "90%",
  9804. "height": "90%",
  9805. "overflow": 'hidden'
  9806. },
  9807. "onresize": function () { }
  9808. }, {
  9809. closecallback: function () { }
  9810. }, {
  9811. "style": {
  9812. "height": "36px"
  9813. }
  9814. }).form; //创建窗体
  9815. _taskbar = {
  9816. "id": str + _formdiv.id,
  9817. "style": {
  9818. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9819. },
  9820. "name": "思维导图",
  9821. "forms": _formdiv,
  9822. "click": function () {
  9823. U.MD.D.I.openApplication(str, obj, info);
  9824. }
  9825. }
  9826. break;
  9827. case "doc":
  9828. aTool = 6;
  9829. _iframe = $$("iframe", {
  9830. "frameborder": "no",
  9831. "border": "0",
  9832. "scrolling ": "no",
  9833. "style": {
  9834. "cssText": "border:0;width:100%;height:100%"
  9835. },
  9836. "src": "/Office/Word/WordEditArea.htm"
  9837. })
  9838. _box.appendChild(_iframe);
  9839. _box.appendChild(_jie);
  9840. _formdiv = new U.UF.UI.form(
  9841. "协同文档",
  9842. _box, {
  9843. "id": "docs_Yu" + cid + stage + task + tool,
  9844. "style": {
  9845. "width": "90%",
  9846. "height": "90%",
  9847. "overflow": 'hidden'
  9848. },
  9849. "onresize": function () { }
  9850. }, {
  9851. closecallback: function () { }
  9852. }, {
  9853. "style": {
  9854. "height": "36px"
  9855. }
  9856. }).form; //创建窗体
  9857. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9858. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9859. })
  9860. _taskbar = {
  9861. "id": str + _formdiv.id,
  9862. "style": {
  9863. "backgroundImage": "url(/img/icon/doc.png)"
  9864. },
  9865. "name": "协同文档",
  9866. "forms": _formdiv,
  9867. "click": function () {
  9868. U.MD.D.I.openApplication(str, obj, info);
  9869. }
  9870. }
  9871. break;
  9872. case "CocoPi":
  9873. aTool = 57;
  9874. _iframe = $$("iframe", {
  9875. "allowpaymentrequest": "allowpaymentrequest",
  9876. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9877. "webkitallowfullscreen": "",
  9878. "mozallowfullscreen": "",
  9879. "frameborder": "no",
  9880. "border": "0",
  9881. "scrolling ": "no",
  9882. "style": {
  9883. "cssText": "border:0;width:100%;height:100%"
  9884. },
  9885. "src": "https://pi.cocorobo.cn/"
  9886. })
  9887. _box.appendChild(_iframe);
  9888. _box.appendChild(_jie);
  9889. _formdiv = new U.UF.UI.form(
  9890. "CocoPi",
  9891. _box, {
  9892. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9893. "style": {
  9894. "width": "90%",
  9895. "height": "90%",
  9896. "overflow": 'hidden'
  9897. },
  9898. "onresize": function () { }
  9899. }, {
  9900. closecallback: function () { }
  9901. }, {
  9902. "style": {
  9903. "height": "36px"
  9904. }
  9905. }).form; //创建窗体
  9906. _taskbar = {
  9907. "id": str + _formdiv.id,
  9908. "style": {
  9909. "backgroundImage": "url(/img/icon/cocopi.png)"
  9910. },
  9911. "name": "CocoPi",
  9912. "forms": _formdiv,
  9913. "click": function () {
  9914. U.MD.D.I.openApplication(str, obj, info);
  9915. }
  9916. }
  9917. break;
  9918. }
  9919. if (_iframe) {
  9920. if (str == 'doc') {
  9921. _iframe = _formdiv.querySelector('iframe')
  9922. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9923. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9924. })
  9925. if (onloadListener) {
  9926. _iframe.contentDocument.location.reload()
  9927. } else {
  9928. _iframe.contentDocument.location.reload()
  9929. }
  9930. } else if (str == 'mind') {
  9931. _iframe = _formdiv.querySelector('iframe')
  9932. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9933. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9934. })
  9935. if (onloadListener) {
  9936. _iframe.contentDocument.location.reload()
  9937. } else {
  9938. _iframe.contentDocument.location.reload()
  9939. }
  9940. } else if (str == 'whiteboard') {
  9941. _iframe = _formdiv.querySelector('iframe')
  9942. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9943. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9944. })
  9945. // if (onloadListener) {
  9946. // try {
  9947. // _iframe.src += "?cocorobo="+new Date().getTime()
  9948. // _iframe.contentWindow.document.location.reload()
  9949. // } catch (error) {
  9950. // }
  9951. // } else {
  9952. // _iframe.contentDocument.location.reload()
  9953. // }
  9954. } else if (str == 'CocoPi') {
  9955. _iframe = _formdiv.querySelector('iframe')
  9956. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9957. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9958. })
  9959. if (onloadListener) {
  9960. _iframe.contentDocument.location.reload()
  9961. } else {
  9962. _iframe.contentDocument.location.reload()
  9963. }
  9964. } else {
  9965. _iframe.onload = () => { };
  9966. }
  9967. _jie.onclick = async () => {
  9968. let text = ''
  9969. let type = '2'
  9970. if (aTool == 1) {
  9971. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9972. type = '3'
  9973. } else if (aTool == 6) {
  9974. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9975. type = '1'
  9976. } else if (aTool == 3) {
  9977. text = await U.MD.D.I.getEditorContent(_iframe);
  9978. type = '2'
  9979. } else if (aTool == 57) {
  9980. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9981. type = '4'
  9982. }
  9983. _loading.style.display = 'flex'
  9984. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9985. }
  9986. }
  9987. //U.MD.D.I.openClick(str);
  9988. //如果有任务栏信息
  9989. // if (_taskbar) {
  9990. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9991. // }
  9992. }
  9993. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9994. var xmlhttp;
  9995. var Mac, Sn, DeviceId
  9996. if (window.XMLHttpRequest) {
  9997. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9998. xmlhttp = new XMLHttpRequest();
  9999. } else {
  10000. // IE6, IE5 浏览器执行代码
  10001. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10002. }
  10003. xmlhttp.onreadystatechange = function () {
  10004. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10005. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10006. // resolve(res.value[0][0].text);
  10007. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10008. }
  10009. }
  10010. }
  10011. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10012. xmlhttp.send();
  10013. }
  10014. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10015. var xmlhttp;
  10016. var Mac, Sn, DeviceId
  10017. if (window.XMLHttpRequest) {
  10018. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10019. xmlhttp = new XMLHttpRequest();
  10020. } else {
  10021. // IE6, IE5 浏览器执行代码
  10022. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10023. }
  10024. xmlhttp.onreadystatechange = function () {
  10025. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10026. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10027. // resolve(res.value[0][0].text);
  10028. if (type == '2') {
  10029. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10030. } else if (type == '3') {
  10031. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10032. } else if (type == '4') {
  10033. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10034. }
  10035. } else {
  10036. if (type == '2') {
  10037. iframe.contentWindow.editor.minder.importData('json', '')
  10038. } else if (type == '3') {
  10039. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10040. } else if (type == '4') {
  10041. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10042. }
  10043. }
  10044. }
  10045. }
  10046. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10047. xmlhttp.send();
  10048. }
  10049. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10050. var xmlhttp;
  10051. var Mac, Sn, DeviceId
  10052. if (window.XMLHttpRequest) {
  10053. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10054. xmlhttp = new XMLHttpRequest();
  10055. } else {
  10056. // IE6, IE5 浏览器执行代码
  10057. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10058. }
  10059. xmlhttp.onreadystatechange = function () {
  10060. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10061. if (xmlhttp.response) {
  10062. // resolve(res.value[0][0].text);
  10063. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10064. // $(fileInput).val('');
  10065. // });
  10066. span.innerHTML = '上传成功'
  10067. setTimeout(() => {
  10068. loading.style.display = 'none'
  10069. }, 1000);
  10070. }
  10071. }
  10072. }
  10073. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10074. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10075. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10076. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10077. // 设置请求头,表示请求体的编码格式
  10078. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10079. // 设置请求体,使用url-encoded格式的数据
  10080. }
  10081. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10082. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10083. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10084. _userinfo = US.userInfo, //登录用户信息
  10085. _userid = US.userInfo.userid //登录用户id
  10086. let _iframe;
  10087. let _cid = cid,
  10088. _stage = stage,
  10089. _task = task,
  10090. _tool = tool;
  10091. var _jie = $$("div", {
  10092. "style": {
  10093. "position": "absolute",
  10094. "bottom": "50px",
  10095. "right": "50px",
  10096. "zIndex": "9999",
  10097. "backgroundColor": "#2268bc",
  10098. "color": "#fff",
  10099. "padding": "12px 20px",
  10100. "cursor": "pointer",
  10101. "borderRadius": "4px",
  10102. },
  10103. "innerHTML": "提交作业"
  10104. })
  10105. let aTool = ''
  10106. let _loading = document.createElement('div')
  10107. _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;"
  10108. // _loading.id = "";
  10109. let _lchild = document.createElement('div')
  10110. let _limg = document.createElement('img')
  10111. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10112. _limg.style = "width: 26px;margin-right: 10px;"
  10113. _lchild.appendChild(_limg)
  10114. let _lspan = document.createElement('span')
  10115. _lspan.innerHTML = "上传中..."
  10116. _lchild.appendChild(_lspan)
  10117. _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%);"
  10118. _loading.appendChild(_lchild)
  10119. var _box = $$('div', {
  10120. "style": {
  10121. "position": "relative",
  10122. "width": "100%",
  10123. "height": "100%",
  10124. },
  10125. })
  10126. _box.appendChild(_loading)
  10127. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10128. switch (str) {
  10129. case "CocoPi":
  10130. aTool = 57;
  10131. _iframe = $$("iframe", {
  10132. "allowpaymentrequest": "allowpaymentrequest",
  10133. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10134. "webkitallowfullscreen": "",
  10135. "mozallowfullscreen": "",
  10136. "frameborder": "no",
  10137. "border": "0",
  10138. "scrolling ": "no",
  10139. "style": {
  10140. "cssText": "border:0;width:100%;height:100%"
  10141. },
  10142. "src": "https://pi.cocorobo.cn/"
  10143. })
  10144. _box.appendChild(_iframe);
  10145. _box.appendChild(_jie);
  10146. _formdiv = new U.UF.UI.form(
  10147. "CocoPi",
  10148. _box, {
  10149. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10150. "style": {
  10151. "width": "90%",
  10152. "height": "90%",
  10153. "overflow": 'hidden'
  10154. },
  10155. "onresize": function () { }
  10156. }, {
  10157. closecallback: function () { }
  10158. }, {
  10159. "style": {
  10160. "height": "36px"
  10161. }
  10162. }).form; //创建窗体
  10163. _taskbar = {
  10164. "id": str + _formdiv.id,
  10165. "style": {
  10166. "backgroundImage": "url(/img/icon/cocopi.png)"
  10167. },
  10168. "name": "CocoPi",
  10169. "forms": _formdiv,
  10170. "click": function () {
  10171. U.MD.D.I.openApplication(str, obj, info);
  10172. }
  10173. }
  10174. break;
  10175. }
  10176. if (_iframe) {
  10177. if (str == 'CocoPi') {
  10178. _iframe = _formdiv.querySelector('iframe')
  10179. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10180. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10181. })
  10182. if (onloadListener) {
  10183. _iframe.contentDocument.location.reload()
  10184. } else {
  10185. _iframe.contentDocument.location.reload()
  10186. }
  10187. }
  10188. _jie.onclick = async () => {
  10189. let text = ''
  10190. if (aTool == 57) {
  10191. text = _iframe.contentWindow.getLoadXmlStr()
  10192. }
  10193. _loading.style.display = 'flex'
  10194. console.log(_loading);
  10195. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10196. _loading.style.display = 'none'
  10197. let _div = document.createElement('div')
  10198. _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;"
  10199. let _inner = document.createElement('div')
  10200. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10201. _inner.innerHTML = "上传成功"
  10202. _div.appendChild(_inner)
  10203. _iframe.contentWindow.window.document.body.appendChild(_div)
  10204. _div.onclick = () => {
  10205. _iframe.contentWindow.window.document.body.removeChild(_div)
  10206. }
  10207. setTimeout(() => {
  10208. _iframe.contentWindow.window.document.body.removeChild(_div)
  10209. }, 1000);
  10210. }, [], { "type": "POST", "withCredentials": true });
  10211. }
  10212. }
  10213. }
  10214. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10215. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10216. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10217. _userid = student.userid, //登录用户id
  10218. _username = student.student //用户名字
  10219. let _iframe;
  10220. let _cid = cid,
  10221. _stage = stage,
  10222. _task = task,
  10223. _tool = tool;
  10224. var _jie = $$("div", {
  10225. "style": {
  10226. "position": "absolute",
  10227. "bottom": "50px",
  10228. "right": "50px",
  10229. "zIndex": "9999",
  10230. "backgroundColor": "#2268bc",
  10231. "color": "#fff",
  10232. "padding": "12px 20px",
  10233. "cursor": "pointer",
  10234. "borderRadius": "4px",
  10235. },
  10236. "innerHTML": "提交作业"
  10237. })
  10238. let aTool = ''
  10239. let _loading = document.createElement('div')
  10240. _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;"
  10241. // _loading.id = "";
  10242. let _lchild = document.createElement('div')
  10243. let _limg = document.createElement('img')
  10244. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10245. _limg.style = "width: 26px;margin-right: 10px;"
  10246. _lchild.appendChild(_limg)
  10247. let _lspan = document.createElement('span')
  10248. _lspan.innerHTML = "上传中..."
  10249. _lchild.appendChild(_lspan)
  10250. _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%);"
  10251. _loading.appendChild(_lchild)
  10252. var _box = $$('div', {
  10253. "style": {
  10254. "position": "relative",
  10255. "width": "100%",
  10256. "height": "100%",
  10257. },
  10258. })
  10259. _box.appendChild(_loading)
  10260. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10261. switch (str) {
  10262. case "CocoPi":
  10263. aTool = 57;
  10264. _iframe = $$("iframe", {
  10265. "allowpaymentrequest": "allowpaymentrequest",
  10266. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10267. "webkitallowfullscreen": "",
  10268. "mozallowfullscreen": "",
  10269. "frameborder": "no",
  10270. "border": "0",
  10271. "scrolling ": "no",
  10272. "style": {
  10273. "cssText": "border:0;width:100%;height:100%"
  10274. },
  10275. "src": "https://pi.cocorobo.cn/"
  10276. })
  10277. _box.appendChild(_iframe);
  10278. _box.appendChild(_jie);
  10279. _formdiv = new U.UF.UI.form(
  10280. "CocoPi-" + _username,
  10281. _box, {
  10282. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10283. "style": {
  10284. "width": "90%",
  10285. "height": "90%",
  10286. "overflow": 'hidden'
  10287. },
  10288. "onresize": function () { }
  10289. }, {
  10290. closecallback: function () { }
  10291. }, {
  10292. "style": {
  10293. "height": "36px"
  10294. }
  10295. }).form; //创建窗体
  10296. _taskbar = {
  10297. "id": str + _formdiv.id,
  10298. "style": {
  10299. "backgroundImage": "url(/img/icon/cocopi.png)"
  10300. },
  10301. "name": "CocoPi",
  10302. "forms": _formdiv,
  10303. "click": function () {
  10304. U.MD.D.I.openApplication(str, obj, info);
  10305. }
  10306. }
  10307. break;
  10308. }
  10309. if (_iframe) {
  10310. if (str == 'CocoPi') {
  10311. _iframe = _formdiv.querySelector('iframe')
  10312. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10313. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10314. })
  10315. if (onloadListener) {
  10316. _iframe.contentDocument.location.reload()
  10317. } else {
  10318. _iframe.contentDocument.location.reload()
  10319. }
  10320. }
  10321. _jie.onclick = async () => {
  10322. let text = ''
  10323. if (aTool == 57) {
  10324. text = _iframe.contentWindow.getLoadXmlStr()
  10325. }
  10326. _loading.style.display = 'flex'
  10327. console.log(_loading);
  10328. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10329. _loading.style.display = 'none'
  10330. let _div = document.createElement('div')
  10331. _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;"
  10332. let _inner = document.createElement('div')
  10333. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10334. _inner.innerHTML = "上传成功"
  10335. _div.appendChild(_inner)
  10336. _iframe.contentWindow.window.document.body.appendChild(_div)
  10337. _div.onclick = () => {
  10338. _iframe.contentWindow.window.document.body.removeChild(_div)
  10339. }
  10340. setTimeout(() => {
  10341. _iframe.contentWindow.window.document.body.removeChild(_div)
  10342. }, 1000);
  10343. }, [], { "type": "POST", "withCredentials": true });
  10344. }
  10345. }
  10346. }
  10347. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10348. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10349. if (res.value[0].length > 0) {
  10350. if (atool == 57) {
  10351. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10352. }
  10353. } else {
  10354. if (atool == 57) {
  10355. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10356. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10357. }
  10358. }
  10359. }, [], { "type": "POST", "withCredentials": true });
  10360. }