DeskTop.js 674 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. ];
  1561. //SPROUT Lab
  1562. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. ];
  1573. //010204
  1574. U.MD.D.I.x010204StudentDeskIcon = [
  1575. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailTeacherDeskIcon = [
  1582. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1583. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1585. ];
  1586. //trail
  1587. U.MD.D.I.trailStudentDeskIcon = [
  1588. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1589. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1590. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1592. ];
  1593. //010504
  1594. U.MD.D.I.x010504TeacherDeskIcon = [
  1595. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1596. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1604. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1605. ];
  1606. //010504
  1607. U.MD.D.I.x010504StudentDeskIcon = [
  1608. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. ];
  1613. //SCNUET
  1614. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1615. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1616. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1620. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1621. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1622. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1626. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1627. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1628. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1629. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1631. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1632. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1633. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1635. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1636. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1637. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1638. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1639. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1640. ];
  1641. //SCNUET
  1642. U.MD.D.I.SCNUETAdminDeskIcon = [
  1643. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1644. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1648. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1649. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1650. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1652. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1653. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1654. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1655. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1656. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1657. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1660. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1661. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1662. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1663. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1666. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1667. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1668. ];
  1669. //SCNUET
  1670. U.MD.D.I.SCNUETStudentDeskIcon = [
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. ];
  1676. //x020201
  1677. U.MD.D.I.x020201TeacherDeskIcon = [
  1678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1694. ];
  1695. //x020201
  1696. U.MD.D.I.x020201AdminDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1702. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1706. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1707. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1711. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1712. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1713. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1714. ];
  1715. //020201
  1716. U.MD.D.I.x020201StudentDeskIcon = [
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //010611
  1723. U.MD.D.I.x010611TeacherDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1727. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1732. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1733. ];
  1734. //010611
  1735. U.MD.D.I.x010611StudentDeskIcon = [
  1736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. ];
  1741. //tianyuan
  1742. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1743. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1744. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1745. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1746. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1747. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1751. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1752. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1753. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1754. ];
  1755. //010611
  1756. U.MD.D.I.tianyuanStudentDeskIcon = [
  1757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1761. ];
  1762. //320101
  1763. U.MD.D.I.x320101TeacherDeskIcon = [
  1764. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1765. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1766. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1767. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1768. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1769. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1770. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1771. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1772. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1773. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1774. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1775. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1776. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1777. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1778. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1779. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1780. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1781. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1782. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1783. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1784. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1785. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1786. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1787. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1788. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1789. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1790. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1791. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1792. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1793. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1794. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1795. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1796. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1801. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1802. ];
  1803. //320101
  1804. U.MD.D.I.x320101StudentDeskIcon = [
  1805. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. ];
  1810. //#region 桌面初始化a
  1811. /**
  1812. * 初始化桌面的起始函数
  1813. *
  1814. */
  1815. U.MD.D.I.init = function () {
  1816. if ($("#U_MD_D_K")[0]) {
  1817. //初始化桌面图标
  1818. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1819. // var clickUrl = ':12588/requestIp.php';
  1820. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1821. // U.MD.D.I.Ip = data;
  1822. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1823. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1824. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1825. // })
  1826. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1827. // })
  1828. }
  1829. }
  1830. /**
  1831. * 模式切换
  1832. *
  1833. */
  1834. U.MD.D.I.ModeCheck = function (type) {
  1835. if (US.Config.type == type) {
  1836. return
  1837. }
  1838. US.Config.type = type
  1839. $('.U_PBL_Check .active')[0].className = ''
  1840. if (type == 1) {
  1841. $('.U_PBL_Check div')[0].className = 'active'
  1842. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1843. } else {
  1844. $('.U_PBL_Check div')[1].className = 'active'
  1845. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1846. }
  1847. //初始化桌面图标
  1848. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1849. if (type == 2) {
  1850. U.MD.D.I.openApplication("project")
  1851. }
  1852. }
  1853. /**
  1854. * 隐藏任务栏
  1855. *
  1856. * @param {element} 桌面元素
  1857. */
  1858. U.MD.D.I.hiddenTaskbar = function (el) {
  1859. //任务栏位置变小
  1860. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1861. //桌面的位置变大
  1862. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1863. }
  1864. /**
  1865. * 隐藏任务栏
  1866. *
  1867. * @param {element} 桌面元素
  1868. */
  1869. U.MD.D.I.hiddenTaskbarout = function (el) {
  1870. //任务栏位置变小
  1871. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1872. //任务栏位置变化
  1873. U.selectEl(el).css({ "bottom": "-60px" });
  1874. //桌面的位置变大
  1875. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1876. }
  1877. }
  1878. /**
  1879. * 初始化打印桌面图标
  1880. *
  1881. * @param {element} 桌面元素
  1882. */
  1883. U.MD.D.I.initDesktopIcons = function (el, type) {
  1884. var i, //用于循环
  1885. _content, //桌面图标元素
  1886. _iconcontent, //桌面图标元素
  1887. _frag = $$("frag"), //定义一个碎片元素
  1888. _type = US.userInfo.type,
  1889. _org = US.userInfo.org,
  1890. _oid = US.userInfo.organizeid,
  1891. _role = US.userInfo.role,
  1892. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1893. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1894. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1895. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1896. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1897. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1898. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1899. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1900. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1901. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1902. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1903. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1904. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1905. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1906. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1907. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1908. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1909. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1910. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1911. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1912. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1913. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1914. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1915. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1916. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1917. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1918. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1919. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1920. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1921. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1922. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1923. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1924. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1925. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1926. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1927. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1928. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1929. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1930. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1931. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1932. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1933. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1934. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1935. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1936. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1937. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1938. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1939. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1940. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1941. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1942. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1943. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1944. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1945. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1946. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1947. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1948. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1949. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1950. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1951. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1952. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1953. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1954. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1955. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1956. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1957. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1958. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1959. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1960. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1961. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1962. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1963. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1964. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1965. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1966. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1967. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1968. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1969. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1970. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1971. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1972. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1973. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1974. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1975. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1976. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1977. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1978. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1979. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1980. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1981. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1982. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1983. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1984. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1985. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1986. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1987. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1988. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1989. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1990. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1991. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1992. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1993. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1994. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1995. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1996. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1997. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1998. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1999. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2000. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2001. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2002. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2003. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2004. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2005. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2006. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'];
  2007. //清楚桌面图标
  2008. el.innerHTML = "";
  2009. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2010. _teacherDesktopIconInfo.push(
  2011. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2012. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2013. )
  2014. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2015. }
  2016. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2017. _teacherDesktopIconInfo.push(
  2018. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2019. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2020. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2021. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2022. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2023. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2024. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2025. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2026. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2027. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2028. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2029. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2030. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2031. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2032. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2033. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2034. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2035. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2036. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2037. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2038. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2039. )
  2040. }
  2041. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2042. _teacherDesktopIconInfo.push(
  2043. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2044. )
  2045. }
  2046. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2047. // _teacherDesktopIconInfo.push(
  2048. // )
  2049. // }
  2050. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. )
  2055. }
  2056. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2057. _teacherDesktopIconInfo.push(
  2058. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2060. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2061. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2062. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2063. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2064. )
  2065. _studentDesktopIconInfo.push(
  2066. )
  2067. }
  2068. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2069. _teacherDesktopIconInfo.push(
  2070. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2071. )
  2072. _studentDesktopIconInfo.push(
  2073. )
  2074. }
  2075. //010606 组织
  2076. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2077. _teacherDesktopIconInfo.push(
  2078. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2079. )
  2080. _studentDesktopIconInfo.push(
  2081. )
  2082. }
  2083. //麒麟二中 和 民新小学
  2084. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2085. _teacherDesktopIconInfo.push(
  2086. )
  2087. }
  2088. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2089. _teacherDesktopIconInfo.push(
  2090. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2091. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2092. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2093. )
  2094. }
  2095. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2096. _hkTeacherDeskIconInfo.push(
  2097. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2098. )
  2099. }
  2100. //北师大附中(010601)
  2101. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2102. // _teacherDesktopIconInfo.push(
  2103. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2104. // )
  2105. // _studentDesktopIconInfo.push(
  2106. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2107. // )
  2108. // }
  2109. //樂善堂余近卿中學
  2110. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2111. _teacherDesktopIconInfo.push(
  2112. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2113. )
  2114. }
  2115. // Education Artificial Intelligence
  2116. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2117. _teacherDesktopIconInfo.push(
  2118. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2119. )
  2120. }
  2121. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2122. _teacherDesktopIconInfo.push(
  2123. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2124. )
  2125. }
  2126. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2127. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2128. _teacherDesktopIconInfo.push(
  2129. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2130. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2131. )
  2132. }
  2133. //麒麟二中
  2134. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2135. _studentDesktopIconInfo.push(
  2136. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2137. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2138. )
  2139. }
  2140. //万科双语
  2141. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2142. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2143. if (el.Name == '项目管理') {
  2144. el.Name = 'PBL项目'
  2145. }
  2146. return el
  2147. })
  2148. _studentDesktopIconInfo3.push(
  2149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2150. )
  2151. }
  2152. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2153. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2154. return el.Name != '魔盒识字' && el.Name != '24点'
  2155. })
  2156. }
  2157. if ((_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") && _type == 2) {
  2158. _studentDesktopIconInfo.push(
  2159. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2160. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2161. )
  2162. }
  2163. //循环创建桌面图标
  2164. if (type == 1) {
  2165. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2166. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2167. _content = $$("div", {
  2168. className: "U_MD_D_KO",
  2169. "onmousedown": U.UF.C.closure(function (obj) {
  2170. //防止拖动图标即打开了桌面应用
  2171. U.MD.D.click(this, obj);
  2172. }, [_studentDesktopIconInfo[i]]),
  2173. "onclick": U.UF.C.closure(function (obj) {
  2174. //防止拖动图标即打开了桌面应用
  2175. U.MD.D.click(this, obj);
  2176. }, [_studentDesktopIconInfo[i]])
  2177. }, _frag); //
  2178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2181. }
  2182. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2183. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2184. _content = $$("div", {
  2185. className: "U_MD_D_KO",
  2186. "onmousedown": U.UF.C.closure(function (obj) {
  2187. //防止拖动图标即打开了桌面应用
  2188. U.MD.D.click(this, obj);
  2189. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2190. "onclick": U.UF.C.closure(function (obj) {
  2191. //防止拖动图标即打开了桌面应用
  2192. U.MD.D.click(this, obj);
  2193. }, [_hkZJLSStudentDeskIconInfo[i]])
  2194. }, _frag); //
  2195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2198. } //
  2199. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2200. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_ytyStudentDeskIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_ytyStudentDeskIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2215. } //
  2216. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2217. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_jccssylStudentDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_jccssylStudentDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2232. }
  2233. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2234. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_scnuaiStudentDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_scnuaiStudentDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2249. }
  2250. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2251. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_caleStudentDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_caleStudentDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2268. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2269. _content = $$("div", {
  2270. className: "U_MD_D_KO",
  2271. "onmousedown": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_thuioeStudentDeskIconInfo[i]]),
  2275. "onclick": U.UF.C.closure(function (obj) {
  2276. //防止拖动图标即打开了桌面应用
  2277. U.MD.D.click(this, obj);
  2278. }, [_thuioeStudentDeskIconInfo[i]])
  2279. }, _frag); //
  2280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2283. }
  2284. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2285. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_tpcStudentDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_tpcStudentDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2300. } //
  2301. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2302. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2303. _content = $$("div", {
  2304. className: "U_MD_D_KO",
  2305. "onmousedown": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_chjyjStudentDeskIconInfo[i]]),
  2309. "onclick": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_chjyjStudentDeskIconInfo[i]])
  2313. }, _frag); //
  2314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2317. }
  2318. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2319. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2320. _content = $$("div", {
  2321. className: "U_MD_D_KO",
  2322. "onmousedown": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_szjkyStudentDeskIconInfo[i]]),
  2326. "onclick": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_szjkyStudentDeskIconInfo[i]])
  2330. }, _frag); //
  2331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2334. }
  2335. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2336. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2337. _content = $$("div", {
  2338. className: "U_MD_D_KO",
  2339. "onmousedown": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_x020201StudentDeskIconInfo[i]]),
  2343. "onclick": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_x020201StudentDeskIconInfo[i]])
  2347. }, _frag); //
  2348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2351. }
  2352. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2353. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2354. _content = $$("div", {
  2355. className: "U_MD_D_KO",
  2356. "onmousedown": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_SCNUETStudentDeskIconInfo[i]]),
  2360. "onclick": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_SCNUETStudentDeskIconInfo[i]])
  2364. }, _frag); //
  2365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2368. }
  2369. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2370. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2371. _content = $$("div", {
  2372. className: "U_MD_D_KO",
  2373. "onmousedown": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_dseiStudentDeskIconInfo[i]]),
  2377. "onclick": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_dseiStudentDeskIconInfo[i]])
  2381. }, _frag); //
  2382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2385. }
  2386. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2387. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2404. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_nsfxStudentDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_nsfxStudentDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2419. }
  2420. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2421. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_stiaStudentDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_stiaStudentDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2438. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2439. _content = $$("div", {
  2440. className: "U_MD_D_KO",
  2441. "onmousedown": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_szdjgStudentDeskIconInfo[i]]),
  2445. "onclick": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szdjgStudentDeskIconInfo[i]])
  2449. }, _frag); //
  2450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2453. }
  2454. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2455. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_x010607StudentDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x010607StudentDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2472. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_xhlyStudentDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_xhlyStudentDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2489. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2506. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_x010503StudentDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_x010503StudentDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2523. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_x010504StudentDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_x010504StudentDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2540. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010204StudentDeskIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_x010204StudentDeskIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2557. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x320101StudentDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_x320101StudentDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2574. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_trailStudentDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_trailStudentDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2589. }
  2590. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2591. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2608. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_x010608StudentDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_x010608StudentDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2625. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_x010611StudentDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_x010611StudentDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2642. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2643. _content = $$("div", {
  2644. className: "U_MD_D_KO",
  2645. "onmousedown": U.UF.C.closure(function (obj) {
  2646. //防止拖动图标即打开了桌面应用
  2647. U.MD.D.click(this, obj);
  2648. }, [_tianyuantudentDeskIconInfo[i]]),
  2649. "onclick": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_tianyuantudentDeskIconInfo[i]])
  2653. }, _frag); //
  2654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2657. }
  2658. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2659. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2660. _content = $$("div", {
  2661. className: "U_MD_D_KO",
  2662. "onmousedown": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_siesStudentDeskIconInfo[i]]),
  2666. "onclick": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_siesStudentDeskIconInfo[i]])
  2670. }, _frag); //
  2671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2674. }
  2675. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2676. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_guzmsStudentDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_guzmsStudentDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2691. }
  2692. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2693. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2694. _content = $$("div", {
  2695. className: "U_MD_D_KO",
  2696. "onmousedown": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_hkStudentDeskIconInfo[i]]),
  2700. "onclick": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_hkStudentDeskIconInfo[i]])
  2704. }, _frag); //
  2705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2708. }
  2709. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2710. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_hkaceStudentDeskIconInfo[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_hkaceStudentDeskIconInfo[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2725. }
  2726. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2727. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_BSDNSstudentDesktopIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2744. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_cocobizStudentDeskIconInfo[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_cocobizStudentDeskIconInfo[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2759. }
  2760. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2761. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_xxzjkyStudentDeskIconInfo[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2776. }
  2777. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2778. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_studentDesktopIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_studentDesktopIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2795. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_tcStudentDeskIconInfo[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_tcStudentDeskIconInfo[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2810. }
  2811. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2812. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_szscStudentDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_szscStudentDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2829. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2830. _content = $$("div", {
  2831. className: "U_MD_D_KO",
  2832. "onmousedown": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_studentDesktopIconInfo3[i]]),
  2836. "onclick": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_studentDesktopIconInfo3[i]])
  2840. }, _frag); //
  2841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2844. }
  2845. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2846. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2847. _content = $$("div", {
  2848. className: "U_MD_D_KO",
  2849. "onmousedown": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_studentDesktopIconInfo2[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_studentDesktopIconInfo2[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2861. }
  2862. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2863. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2864. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2865. continue
  2866. }
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_wanketeacherDesktopIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_wanketeacherDesktopIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2883. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_wankeAdminDesktopIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_wankeAdminDesktopIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2900. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2901. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2902. continue
  2903. }
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_scnuaiTeacherDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2920. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2921. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2922. continue
  2923. }
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_BSDNSteacherDesktopIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2940. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_scnuaiAdminDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_scnuaiAdminDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2957. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2958. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_jccssylTeacherDeskIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_jccssylTeacherDeskIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2977. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2978. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_caleTeacherDeskIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_caleTeacherDeskIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2997. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2998. _content = $$("div", {
  2999. className: "U_MD_D_KO",
  3000. "onmousedown": U.UF.C.closure(function (obj) {
  3001. //防止拖动图标即打开了桌面应用
  3002. U.MD.D.click(this, obj);
  3003. }, [_tpcOrganizerDeskIconInfo[i]]),
  3004. "onclick": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_tpcOrganizerDeskIconInfo[i]])
  3008. }, _frag); //
  3009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3012. }
  3013. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3014. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3015. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3016. continue
  3017. }
  3018. _content = $$("div", {
  3019. className: "U_MD_D_KO",
  3020. "onmousedown": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_tpcTeacherDeskIconInfo[i]]),
  3024. "onclick": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_tpcTeacherDeskIconInfo[i]])
  3028. }, _frag); //
  3029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3032. }
  3033. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3034. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3035. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3036. continue
  3037. }
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_teacherDesktopIconInfo2[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_teacherDesktopIconInfo2[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3054. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3055. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_thuioeTeacherDeskIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_thuioeTeacherDeskIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3074. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3075. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3076. continue
  3077. }
  3078. _content = $$("div", {
  3079. className: "U_MD_D_KO",
  3080. "onmousedown": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_lotechTeacherDeskIconInfo[i]]),
  3084. "onclick": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_lotechTeacherDeskIconInfo[i]])
  3088. }, _frag); //
  3089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3092. }//
  3093. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3094. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3095. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3096. continue
  3097. }
  3098. _content = $$("div", {
  3099. className: "U_MD_D_KO",
  3100. "onmousedown": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3104. "onclick": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3108. }, _frag); //
  3109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3112. }
  3113. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3114. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3115. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3116. continue
  3117. }
  3118. _content = $$("div", {
  3119. className: "U_MD_D_KO",
  3120. "onmousedown": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_siesTeacherDeskIconInfo[i]]),
  3124. "onclick": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_siesTeacherDeskIconInfo[i]])
  3128. }, _frag); //
  3129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3132. }
  3133. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3134. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3135. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3136. continue
  3137. }
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_guzmsTeacherDeskIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_guzmsTeacherDeskIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3154. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3155. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3156. continue
  3157. }
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_longhuaTeacherDeskIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_longhuaTeacherDeskIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3174. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3176. continue
  3177. }
  3178. _content = $$("div", {
  3179. className: "U_MD_D_KO",
  3180. "onmousedown": U.UF.C.closure(function (obj) {
  3181. //防止拖动图标即打开了桌面应用
  3182. U.MD.D.click(this, obj);
  3183. }, [_ytyTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_ytyTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3194. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3195. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3196. continue
  3197. }
  3198. _content = $$("div", {
  3199. className: "U_MD_D_KO",
  3200. "onmousedown": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3204. "onclick": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_yunhaiTeacherDeskIconInfo[i]])
  3208. }, _frag); //
  3209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3212. } //_hkStudentDeskIconInfo
  3213. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3214. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3215. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3216. continue
  3217. }
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3234. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3235. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3236. continue
  3237. }
  3238. _content = $$("div", {
  3239. className: "U_MD_D_KO",
  3240. "onmousedown": U.UF.C.closure(function (obj) {
  3241. //防止拖动图标即打开了桌面应用
  3242. U.MD.D.click(this, obj);
  3243. }, [_hkTeacherDeskIconInfo[i]]),
  3244. "onclick": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_hkTeacherDeskIconInfo[i]])
  3248. }, _frag); //
  3249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3252. }
  3253. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3254. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3255. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3256. continue
  3257. }
  3258. _content = $$("div", {
  3259. className: "U_MD_D_KO",
  3260. "onmousedown": U.UF.C.closure(function (obj) {
  3261. //防止拖动图标即打开了桌面应用
  3262. U.MD.D.click(this, obj);
  3263. }, [_hkaceTeacherDeskIconInfo[i]]),
  3264. "onclick": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_hkaceTeacherDeskIconInfo[i]])
  3268. }, _frag); //
  3269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3272. }
  3273. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3274. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3275. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3276. continue
  3277. }
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_cocobizTeacherDeskIconInfo[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_cocobizTeacherDeskIconInfo[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3294. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3295. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3296. continue
  3297. }
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3312. }
  3313. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3314. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_gdjgAdminDeskIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_gdjgAdminDeskIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3329. }
  3330. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3331. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3332. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3333. continue
  3334. }
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_gdjgTeacherDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_gdjgTeacherDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3349. }
  3350. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3351. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3352. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3353. continue
  3354. }
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_szherTeacherDeskIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_szherTeacherDeskIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3369. }
  3370. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3371. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_heyuannAdminDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_heyuannAdminDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3388. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3389. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_heyuanTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_heyuanTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. } //
  3407. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3408. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_dseiAdminDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_dseiAdminDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3425. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_dseiTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_dseiTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. } //
  3444. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3445. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3446. _content = $$("div", {
  3447. className: "U_MD_D_KO",
  3448. "onmousedown": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_chjyjAdminDeskIconInfo[i]]),
  3452. "onclick": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_chjyjAdminDeskIconInfo[i]])
  3456. }, _frag); //
  3457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3460. }//
  3461. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3462. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3463. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3464. continue
  3465. }
  3466. _content = $$("div", {
  3467. className: "U_MD_D_KO",
  3468. "onmousedown": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_chjyjTeacherDeskIconInfo[i]]),
  3472. "onclick": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_chjyjTeacherDeskIconInfo[i]])
  3476. }, _frag); //
  3477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3480. }
  3481. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3482. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3483. _content = $$("div", {
  3484. className: "U_MD_D_KO",
  3485. "onmousedown": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_szjkyAdminDeskIconInfo[i]]),
  3489. "onclick": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_szjkyAdminDeskIconInfo[i]])
  3493. }, _frag); //
  3494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3497. }//
  3498. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3499. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3500. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3501. continue
  3502. }
  3503. _content = $$("div", {
  3504. className: "U_MD_D_KO",
  3505. "onmousedown": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_szjkyTeacherDeskIconInfo[i]]),
  3509. "onclick": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_szjkyTeacherDeskIconInfo[i]])
  3513. }, _frag); //
  3514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3517. }
  3518. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3519. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3520. _content = $$("div", {
  3521. className: "U_MD_D_KO",
  3522. "onmousedown": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_x020201AdminDeskIconInfo[i]]),
  3526. "onclick": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_x020201AdminDeskIconInfo[i]])
  3530. }, _frag); //
  3531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3534. }//
  3535. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3536. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3537. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3538. continue
  3539. }
  3540. _content = $$("div", {
  3541. className: "U_MD_D_KO",
  3542. "onmousedown": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_x020201TeacherDeskIconInfo[i]]),
  3546. "onclick": U.UF.C.closure(function (obj) {
  3547. //防止拖动图标即打开了桌面应用
  3548. U.MD.D.click(this, obj);
  3549. }, [_x020201TeacherDeskIconInfo[i]])
  3550. }, _frag); //
  3551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3554. }
  3555. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3556. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_SCNUETAdminDeskIconInfo[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_SCNUETAdminDeskIconInfo[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3571. }//
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3573. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3574. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3575. continue
  3576. }
  3577. _content = $$("div", {
  3578. className: "U_MD_D_KO",
  3579. "onmousedown": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3583. "onclick": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_SCNUETTeacherDeskIconInfo[i]])
  3587. }, _frag); //
  3588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3591. }
  3592. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3593. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_futianAdminDeskIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_futianAdminDeskIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3610. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3611. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3612. continue
  3613. }
  3614. _content = $$("div", {
  3615. className: "U_MD_D_KO",
  3616. "onmousedown": U.UF.C.closure(function (obj) {
  3617. //防止拖动图标即打开了桌面应用
  3618. U.MD.D.click(this, obj);
  3619. }, [_futianTeacherDeskIconInfo[i]]),
  3620. "onclick": U.UF.C.closure(function (obj) {
  3621. //防止拖动图标即打开了桌面应用
  3622. U.MD.D.click(this, obj);
  3623. }, [_futianTeacherDeskIconInfo[i]])
  3624. }, _frag); //
  3625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3628. }
  3629. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3630. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3631. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3632. continue
  3633. }
  3634. _content = $$("div", {
  3635. className: "U_MD_D_KO",
  3636. "onmousedown": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_MingdeTeacherDeskIcon[i]]),
  3640. "onclick": U.UF.C.closure(function (obj) {
  3641. //防止拖动图标即打开了桌面应用
  3642. U.MD.D.click(this, obj);
  3643. }, [_MingdeTeacherDeskIcon[i]])
  3644. }, _frag); //
  3645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3648. }
  3649. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3650. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3651. _content = $$("div", {
  3652. className: "U_MD_D_KO",
  3653. "onmousedown": U.UF.C.closure(function (obj) {
  3654. //防止拖动图标即打开了桌面应用
  3655. U.MD.D.click(this, obj);
  3656. }, [_lhsAdminDesktopIconInfo[i]]),
  3657. "onclick": U.UF.C.closure(function (obj) {
  3658. //防止拖动图标即打开了桌面应用
  3659. U.MD.D.click(this, obj);
  3660. }, [_lhsAdminDesktopIconInfo[i]])
  3661. }, _frag); //
  3662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3665. }
  3666. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3667. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3668. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3669. continue
  3670. }
  3671. _content = $$("div", {
  3672. className: "U_MD_D_KO",
  3673. "onmousedown": U.UF.C.closure(function (obj) {
  3674. //防止拖动图标即打开了桌面应用
  3675. U.MD.D.click(this, obj);
  3676. }, [_lhsteacherDesktopIconInfo[i]]),
  3677. "onclick": U.UF.C.closure(function (obj) {
  3678. //防止拖动图标即打开了桌面应用
  3679. U.MD.D.click(this, obj);
  3680. }, [_lhsteacherDesktopIconInfo[i]])
  3681. }, _frag); //
  3682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3685. }
  3686. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3687. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3688. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3689. continue
  3690. }
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. "onmousedown": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3697. "onclick": U.UF.C.closure(function (obj) {
  3698. //防止拖动图标即打开了桌面应用
  3699. U.MD.D.click(this, obj);
  3700. }, [_zhoujiateacherDesktopIconInfo[i]])
  3701. }, _frag); //
  3702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3705. }
  3706. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3707. for (i = 0; i < _hanDeskIcon.length; i++) {
  3708. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3709. continue
  3710. }
  3711. _content = $$("div", {
  3712. className: "U_MD_D_KO",
  3713. "onmousedown": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_hanDeskIcon[i]]),
  3717. "onclick": U.UF.C.closure(function (obj) {
  3718. //防止拖动图标即打开了桌面应用
  3719. U.MD.D.click(this, obj);
  3720. }, [_hanDeskIcon[i]])
  3721. }, _frag); //
  3722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3725. }
  3726. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3727. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3728. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3729. continue
  3730. }
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_orgStemDeskIcon[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_orgStemDeskIcon[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3745. }
  3746. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3747. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3748. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_szulsDeskIcon[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_szulsDeskIcon[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3767. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3768. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3769. continue
  3770. }
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_orgDesktopIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖动图标即打开了桌面应用
  3779. U.MD.D.click(this, obj);
  3780. }, [_orgDesktopIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3785. }
  3786. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3787. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3788. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_schoolDesktopIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_schoolDesktopIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3807. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3808. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_GMteacherDesktopIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_GMteacherDesktopIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3825. }
  3826. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3827. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3828. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3829. continue
  3830. }
  3831. _content = $$("div", {
  3832. className: "U_MD_D_KO",
  3833. "onmousedown": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_SONGteacherDesktopIconInfo[i]]),
  3837. "onclick": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_SONGteacherDesktopIconInfo[i]])
  3841. }, _frag); //
  3842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3845. }
  3846. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3847. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3848. _content = $$("div", {
  3849. className: "U_MD_D_KO",
  3850. "onmousedown": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_GMstudentDesktopIconInfo[i]]),
  3854. "onclick": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_GMstudentDesktopIconInfo[i]])
  3858. }, _frag); //
  3859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3862. }
  3863. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3864. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3865. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3866. continue
  3867. }
  3868. _content = $$("div", {
  3869. className: "U_MD_D_KO",
  3870. "onmousedown": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_tcTeacherDeskIconInfo[i]]),
  3874. "onclick": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_tcTeacherDeskIconInfo[i]])
  3878. }, _frag); //
  3879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3882. }
  3883. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3884. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3885. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3886. continue
  3887. }
  3888. _content = $$("div", {
  3889. className: "U_MD_D_KO",
  3890. "onmousedown": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_tcOrganizerDeskIconInfo[i]]),
  3894. "onclick": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_tcOrganizerDeskIconInfo[i]])
  3898. }, _frag); //
  3899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3902. }
  3903. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3904. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3905. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3906. continue
  3907. }
  3908. _content = $$("div", {
  3909. className: "U_MD_D_KO",
  3910. "onmousedown": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_szscTeacherDeskIconInfo[i]]),
  3914. "onclick": U.UF.C.closure(function (obj) {
  3915. //防止拖动图标即打开了桌面应用
  3916. U.MD.D.click(this, obj);
  3917. }, [_szscTeacherDeskIconInfo[i]])
  3918. }, _frag); //
  3919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3922. }
  3923. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3924. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3925. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3926. continue
  3927. }
  3928. _content = $$("div", {
  3929. className: "U_MD_D_KO",
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_szscOrganizerDeskIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_szscOrganizerDeskIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3942. }
  3943. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3944. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3945. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3946. continue
  3947. }
  3948. _content = $$("div", {
  3949. className: "U_MD_D_KO",
  3950. "onmousedown": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_nsfxTeacherDeskIconInfo[i]]),
  3954. "onclick": U.UF.C.closure(function (obj) {
  3955. //防止拖动图标即打开了桌面应用
  3956. U.MD.D.click(this, obj);
  3957. }, [_nsfxTeacherDeskIconInfo[i]])
  3958. }, _frag); //
  3959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3962. }
  3963. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3964. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3965. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3966. continue
  3967. }
  3968. _content = $$("div", {
  3969. className: "U_MD_D_KO",
  3970. "onmousedown": U.UF.C.closure(function (obj) {
  3971. //防止拖动图标即打开了桌面应用
  3972. U.MD.D.click(this, obj);
  3973. }, [_stiaTeacherDeskIconInfo[i]]),
  3974. "onclick": U.UF.C.closure(function (obj) {
  3975. //防止拖动图标即打开了桌面应用
  3976. U.MD.D.click(this, obj);
  3977. }, [_stiaTeacherDeskIconInfo[i]])
  3978. }, _frag); //
  3979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3982. }
  3983. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3984. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3985. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3986. continue
  3987. }
  3988. _content = $$("div", {
  3989. className: "U_MD_D_KO",
  3990. "onmousedown": U.UF.C.closure(function (obj) {
  3991. //防止拖动图标即打开了桌面应用
  3992. U.MD.D.click(this, obj);
  3993. }, [_szdjgTeacherDeskIconInfo[i]]),
  3994. "onclick": U.UF.C.closure(function (obj) {
  3995. //防止拖动图标即打开了桌面应用
  3996. U.MD.D.click(this, obj);
  3997. }, [_szdjgTeacherDeskIconInfo[i]])
  3998. }, _frag); //
  3999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4002. }
  4003. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4004. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4005. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4006. continue
  4007. }
  4008. _content = $$("div", {
  4009. className: "U_MD_D_KO",
  4010. "onmousedown": U.UF.C.closure(function (obj) {
  4011. //防止拖动图标即打开了桌面应用
  4012. U.MD.D.click(this, obj);
  4013. }, [_x010607TeacherDeskIconInfo[i]]),
  4014. "onclick": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_x010607TeacherDeskIconInfo[i]])
  4018. }, _frag); //
  4019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4022. }
  4023. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4024. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4025. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4026. continue
  4027. }
  4028. _content = $$("div", {
  4029. className: "U_MD_D_KO",
  4030. "onmousedown": U.UF.C.closure(function (obj) {
  4031. //防止拖动图标即打开了桌面应用
  4032. U.MD.D.click(this, obj);
  4033. }, [_xhlyTeacherDeskIconInfo[i]]),
  4034. "onclick": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_xhlyTeacherDeskIconInfo[i]])
  4038. }, _frag); //
  4039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4042. }
  4043. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4044. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4045. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4046. continue
  4047. }
  4048. _content = $$("div", {
  4049. className: "U_MD_D_KO",
  4050. "onmousedown": U.UF.C.closure(function (obj) {
  4051. //防止拖动图标即打开了桌面应用
  4052. U.MD.D.click(this, obj);
  4053. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4054. "onclick": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4058. }, _frag); //
  4059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4062. }
  4063. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4064. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4065. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4066. continue
  4067. }
  4068. _content = $$("div", {
  4069. className: "U_MD_D_KO",
  4070. "onmousedown": U.UF.C.closure(function (obj) {
  4071. //防止拖动图标即打开了桌面应用
  4072. U.MD.D.click(this, obj);
  4073. }, [_x010503TeacherDeskIconInfo[i]]),
  4074. "onclick": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_x010503TeacherDeskIconInfo[i]])
  4078. }, _frag); //
  4079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4082. }
  4083. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4084. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4085. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4086. continue
  4087. }
  4088. _content = $$("div", {
  4089. className: "U_MD_D_KO",
  4090. "onmousedown": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_x010504TeacherDeskIconInfo[i]]),
  4094. "onclick": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_x010504TeacherDeskIconInfo[i]])
  4098. }, _frag); //
  4099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4102. }
  4103. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4104. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4105. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4106. continue
  4107. }
  4108. _content = $$("div", {
  4109. className: "U_MD_D_KO",
  4110. "onmousedown": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_x010204TeacherDeskIconInfo[i]]),
  4114. "onclick": U.UF.C.closure(function (obj) {
  4115. //防止拖动图标即打开了桌面应用
  4116. U.MD.D.click(this, obj);
  4117. }, [_x010204TeacherDeskIconInfo[i]])
  4118. }, _frag); //
  4119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4122. }
  4123. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4124. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4125. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4126. continue
  4127. }
  4128. _content = $$("div", {
  4129. className: "U_MD_D_KO",
  4130. "onmousedown": U.UF.C.closure(function (obj) {
  4131. //防止拖动图标即打开了桌面应用
  4132. U.MD.D.click(this, obj);
  4133. }, [_x320101TeacherDeskIconInfo[i]]),
  4134. "onclick": U.UF.C.closure(function (obj) {
  4135. //防止拖动图标即打开了桌面应用
  4136. U.MD.D.click(this, obj);
  4137. }, [_x320101TeacherDeskIconInfo[i]])
  4138. }, _frag); //
  4139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4142. }
  4143. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4144. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4145. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4146. continue
  4147. }
  4148. _content = $$("div", {
  4149. className: "U_MD_D_KO",
  4150. "onmousedown": U.UF.C.closure(function (obj) {
  4151. //防止拖动图标即打开了桌面应用
  4152. U.MD.D.click(this, obj);
  4153. }, [_trailTeacherDeskIconInfo[i]]),
  4154. "onclick": U.UF.C.closure(function (obj) {
  4155. //防止拖动图标即打开了桌面应用
  4156. U.MD.D.click(this, obj);
  4157. }, [_trailTeacherDeskIconInfo[i]])
  4158. }, _frag); //
  4159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4162. }
  4163. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4164. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4165. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4166. continue
  4167. }
  4168. _content = $$("div", {
  4169. className: "U_MD_D_KO",
  4170. "onmousedown": U.UF.C.closure(function (obj) {
  4171. //防止拖动图标即打开了桌面应用
  4172. U.MD.D.click(this, obj);
  4173. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4174. "onclick": U.UF.C.closure(function (obj) {
  4175. //防止拖动图标即打开了桌面应用
  4176. U.MD.D.click(this, obj);
  4177. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4178. }, _frag); //
  4179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4182. }
  4183. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4184. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4185. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4186. continue
  4187. }
  4188. _content = $$("div", {
  4189. className: "U_MD_D_KO",
  4190. "onmousedown": U.UF.C.closure(function (obj) {
  4191. //防止拖动图标即打开了桌面应用
  4192. U.MD.D.click(this, obj);
  4193. }, [_x010608TeacherDeskIconInfo[i]]),
  4194. "onclick": U.UF.C.closure(function (obj) {
  4195. //防止拖动图标即打开了桌面应用
  4196. U.MD.D.click(this, obj);
  4197. }, [_x010608TeacherDeskIconInfo[i]])
  4198. }, _frag); //
  4199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4202. }
  4203. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4204. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4205. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4206. continue
  4207. }
  4208. _content = $$("div", {
  4209. className: "U_MD_D_KO",
  4210. "onmousedown": U.UF.C.closure(function (obj) {
  4211. //防止拖动图标即打开了桌面应用
  4212. U.MD.D.click(this, obj);
  4213. }, [_x010611TeacherDeskIconInfo[i]]),
  4214. "onclick": U.UF.C.closure(function (obj) {
  4215. //防止拖动图标即打开了桌面应用
  4216. U.MD.D.click(this, obj);
  4217. }, [_x010611TeacherDeskIconInfo[i]])
  4218. }, _frag); //
  4219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4222. }
  4223. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4224. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4225. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4226. continue
  4227. }
  4228. _content = $$("div", {
  4229. className: "U_MD_D_KO",
  4230. "onmousedown": U.UF.C.closure(function (obj) {
  4231. //防止拖动图标即打开了桌面应用
  4232. U.MD.D.click(this, obj);
  4233. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4234. "onclick": U.UF.C.closure(function (obj) {
  4235. //防止拖动图标即打开了桌面应用
  4236. U.MD.D.click(this, obj);
  4237. }, [_tianyuanTeacherDeskIconInfo[i]])
  4238. }, _frag); //
  4239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4242. }
  4243. } else {
  4244. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4245. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4246. continue
  4247. }
  4248. _content = $$("div", {
  4249. className: "U_MD_D_KO",
  4250. "onmousedown": U.UF.C.closure(function (obj) {
  4251. //防止拖动图标即打开了桌面应用
  4252. U.MD.D.click(this, obj);
  4253. }, [_teacherDesktopIconInfo[i]]),
  4254. "onclick": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_teacherDesktopIconInfo[i]])
  4258. }, _frag); //
  4259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4262. }
  4263. }
  4264. } else {
  4265. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4266. _content = $$("div", {
  4267. className: "U_MD_D_KO",
  4268. style: { 'width': '124px', 'height': '145px' },
  4269. "onmousedown": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_easyDesktopIconInfo[i]]),
  4273. "onclick": U.UF.C.closure(function (obj) {
  4274. //防止拖动图标即打开了桌面应用
  4275. U.MD.D.click(this, obj);
  4276. }, [_easyDesktopIconInfo[i]])
  4277. }, _frag); //
  4278. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4281. }
  4282. }
  4283. if (type == 1) {
  4284. //加载好后给图标定位
  4285. U.MD.D.iconPostion($(_frag).Child());
  4286. } else {
  4287. //加载好后给图标定位
  4288. U.MD.D.iconPostion2($(_frag).Child());
  4289. }
  4290. //把图标加载到页面
  4291. el.appendChild(_frag);
  4292. }
  4293. /**
  4294. * 显示任务栏
  4295. *
  4296. * @param {element} 桌面元素
  4297. */
  4298. U.MD.D.I.displayTaskbar = function (el) {
  4299. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4300. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4301. //任务栏位置变化
  4302. U.selectEl(el).css({ "bottom": "0px" });
  4303. //桌面位置变话
  4304. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4305. }
  4306. }
  4307. //#region 桌面图标拖动逻辑
  4308. /**
  4309. * 桌面排列图标
  4310. *
  4311. * @param {element} 桌面元素
  4312. * @param {object} 上下相距的距离
  4313. * @param {object} 左右相距的距离
  4314. * @return {object} 命名空间
  4315. */
  4316. U.MD.D.iconPostion = function (childs, top, left) {
  4317. var i; //用于循环处理
  4318. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4319. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4320. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4321. for (i = 0; i < childs.length; i++) {
  4322. //如果竖排top超过了范围处理
  4323. if (top + 95 > US.height - 10) {
  4324. //left超过了页面范围处理,则向上重叠打印处理
  4325. if ((left + 180) > US.width) {
  4326. top -= 110;
  4327. left -= 90;
  4328. }
  4329. //没有超过范围,那么left+90添加到下一个竖排打印
  4330. else {
  4331. left += 90;
  4332. top = 15;
  4333. };
  4334. }
  4335. //给图标的位置赋值
  4336. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4337. if (i < childs.length - 1) {
  4338. //页面图标每次向下加95
  4339. top += 95;
  4340. }
  4341. }
  4342. //返回最后调用的图标的位置
  4343. return [top, left];
  4344. }
  4345. /**
  4346. * 桌面排列图标
  4347. *
  4348. * @param {element} 桌面元素
  4349. * @param {object} 上下相距的距离
  4350. * @param {object} 左右相距的距离
  4351. * @return {object} 命名空间
  4352. */
  4353. U.MD.D.iconPostion2 = function (childs, top, left) {
  4354. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4355. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4356. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4357. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4358. for (i = 0; i < childs.length; i++) {
  4359. //如果竖排top超过了范围处理
  4360. if (left + 150 > US.width - 10) {
  4361. //left超过了页面范围处理,则向上重叠打印处理
  4362. if ((top + 180) > US.Height) {
  4363. top -= 150;
  4364. left -= 150;
  4365. }
  4366. //没有超过范围,那么left+90添加到下一个竖排打印
  4367. else {
  4368. top += 150;
  4369. left = ol;
  4370. };
  4371. }
  4372. //给图标的位置赋值
  4373. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4374. if (i < childs.length - 1) {
  4375. //页面图标每次向下加95
  4376. left += 150;
  4377. }
  4378. }
  4379. //返回最后调用的图标的位置
  4380. return [top, left];
  4381. }
  4382. /**
  4383. * 桌面点击事件逻辑
  4384. *
  4385. * @param {element} 桌面元素
  4386. * @param {object} 上下相距的距离
  4387. * @param {object} 左右相距的距离
  4388. * @return {object} 命名空间
  4389. */
  4390. U.MD.D.click = function (el, obj) {
  4391. var _buttonnumber = event.button; //点击的按钮的事件值
  4392. var _userinfo = US.userInfo;
  4393. U.UF.EV.stopBubble(); //阻止向上冒泡
  4394. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4395. if (_buttonnumber < 2) {
  4396. //如果是click事件的处理
  4397. if (event.type == "click") {
  4398. //如果元素在mousemove事件中没有移动则出发click事件
  4399. if (!U.MD.D.I.IsDrag) {
  4400. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4401. U.alert("请先登录您的账号!");
  4402. setTimeout(() => {
  4403. U.MD.U.L.login();
  4404. }, 2000);
  4405. } else {
  4406. //打开应用处理
  4407. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4408. }
  4409. }
  4410. }
  4411. //如果是mouse事件的处理
  4412. else {
  4413. if (US.Config.type == '1') {
  4414. //拖动处理,添加拖动和拖动结束事件
  4415. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4416. }
  4417. }
  4418. U.MD.D.I.IsDrag = false;
  4419. }
  4420. }
  4421. /**
  4422. * 拖动的处理
  4423. *
  4424. */
  4425. U.MD.D.iconMove = function () {
  4426. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4427. U.MD.D.I.IsDrag = true;
  4428. }
  4429. /**
  4430. * 拖动结束后,这里是定位处理,以网状的形式定位
  4431. *
  4432. * @param {element} 拖动的元素
  4433. * @return {object} 命名空间
  4434. */
  4435. U.MD.D.iconUp = function (el) {
  4436. var _top = 15,
  4437. _left = 20,
  4438. _margin,
  4439. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4440. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4441. if (_positioninfo["OT"] > 15) {
  4442. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4443. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4444. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4445. }
  4446. if (_positioninfo["OL"] > 20) {
  4447. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4448. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4449. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4450. }
  4451. //while循环判断么一个重叠的元素
  4452. do {
  4453. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4454. _top = _positioninfo[0] + 95; //得到定位后的top
  4455. _left = _positioninfo[1]; //得到定位后的left
  4456. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4457. }
  4458. /**
  4459. * 判断拖动后图标是否重叠
  4460. *
  4461. * @param {element} 拖动的元素
  4462. * @param {element} 桌面所有的元素
  4463. * @param {array} 拖动元素的位置
  4464. ----------[0] 上 top
  4465. ----------[1] 左 left
  4466. * @return {object} 命名空间
  4467. */
  4468. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4469. //循环所有的图标
  4470. for (var i = 0; i < childs.length; i++) {
  4471. //判断有没有和该图标诶子重叠的元素
  4472. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4473. return childs[i]; //如果有返回
  4474. }
  4475. }
  4476. }
  4477. //#endregion
  4478. //#endregion
  4479. //#region 桌面应用
  4480. /**
  4481. * 打开应用
  4482. *
  4483. * @param {string} 类型
  4484. -----------------Disk 网盘系统
  4485. -----------------PDisk 学习系统网盘
  4486. -----------------Poto 图片
  4487. -----------------Video 视频
  4488. -----------------Music 音乐
  4489. -----------------Word word
  4490. -----------------Excel excel
  4491. -----------------Txt 记事本
  4492. -----------------PB 学习系统
  4493. -----------------Blog 朋友圈系统
  4494. -----------------FTP ftp系统
  4495. -----------------Group 好友群
  4496. -----------------SY 首页系统
  4497. -----------------Set 个人设置
  4498. -----------------XSet 系统设置
  4499. -----------------App 我们所有的app
  4500. -----------------BC c.1473.cn 平台
  4501. -----------------CWeb d.1473.cn 变成平台
  4502. -----------------其他的外联系统 我们统一用iframe打开
  4503. * @param {array} 类型
  4504. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4505. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4506. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4507. 如果第一个参数为其他,则无第二个参数
  4508. * @returns {array}
  4509. */
  4510. window.addEventListener('message', function (e) { // 监听 message 事件
  4511. // alert(e.data.type);
  4512. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4513. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4514. //3是展示全部阶段 2学生 1老师 4专家
  4515. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4516. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4517. //3是展示全部阶段 2学生 1老师 4专家
  4518. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4519. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4520. //3是展示全部阶段 2学生 1老师 4专家
  4521. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4522. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4523. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4524. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4525. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4526. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4527. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4528. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4529. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4530. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4531. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4532. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4533. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4534. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4535. //3是展示全部阶段 2学生 1老师 4专家
  4536. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4537. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4538. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4539. U.MD.D.I.selectUser();
  4540. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4541. var _formel = document.getElementById("study");
  4542. U.UF.F.windowZooming(_formel);
  4543. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4544. var _formel = document.getElementById("studyDetail");
  4545. U.UF.F.windowZooming(_formel);
  4546. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4547. var _formel = document.getElementById("studyDetail");
  4548. U.UF.F.windowZooming(_formel);
  4549. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4550. var _formel = document.getElementById("studentStudy");
  4551. U.UF.F.windowZooming(_formel);
  4552. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4553. // var _formel = document.getElementById("study");
  4554. //如果最大化了,那么就把他缩小
  4555. // if (_formel.ismaximize) {
  4556. // return;
  4557. // }
  4558. // U.UF.F.windowZooming(_formel);
  4559. // U.UF.F.topWindow(_formel);
  4560. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4561. // var _formel = document.getElementById("studyDetail");
  4562. //如果最大化了,那么就把他缩小
  4563. // if (_formel.ismaximize) {
  4564. // return;
  4565. // }
  4566. // U.UF.F.windowZooming(_formel);
  4567. // U.UF.F.topWindow(_formel);
  4568. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4569. // var _formel = document.getElementById("studentStudy");
  4570. // if (_formel.ismaximize) {
  4571. // return;
  4572. // }
  4573. // U.UF.F.windowZooming(_formel);
  4574. // U.UF.F.topWindow(_formel);
  4575. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4576. var _formel = document.getElementById("study");
  4577. // if (_formel.ismaximize) {
  4578. // return;
  4579. // }
  4580. // U.UF.F.windowZooming(_formel);
  4581. U.UF.F.topWindow(_formel);
  4582. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4583. var _formel = document.getElementById("studentIndex");
  4584. U.UF.F.windowZooming(_formel);
  4585. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4586. var _formel = document.getElementById("studyDetailS");
  4587. U.UF.F.windowZooming(_formel);
  4588. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4589. var _formel = document.getElementById("studioIndex");
  4590. U.UF.F.windowZooming(_formel);
  4591. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4592. var _formel = document.getElementById("studyDetailStudio");
  4593. U.UF.F.windowZooming(_formel);
  4594. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4595. var _formel = document.getElementById("studyDetailStudio");
  4596. U.UF.F.windowZooming(_formel);
  4597. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4598. var _formel = document.getElementById("studyDetailNT");
  4599. U.UF.F.windowZooming(_formel);
  4600. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4601. var _formel = document.getElementById("studyDetailS");
  4602. U.UF.F.windowZooming(_formel);
  4603. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4604. var _formel = document.getElementById("studyDetailS");
  4605. U.UF.F.topWindow(_formel);
  4606. } else if (e.data.tools && e.data.tools == "1") {
  4607. // U.MD.D.I.openApplication("whiteboard")
  4608. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "2") {
  4610. U.MD.D.I.openApplication("note")
  4611. } else if (e.data.tools && e.data.tools == "3") {
  4612. // U.MD.D.I.openApplication("mind")
  4613. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4614. } else if (e.data.tools && e.data.tools == "4") {
  4615. U.MD.D.I.openApplication("investigation")
  4616. } else if (e.data.tools && e.data.tools == "6") {
  4617. // U.MD.D.I.openApplication("doc")
  4618. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4619. } else if (e.data.tools && e.data.tools == "7") {
  4620. // U.MD.D.I.openApplication("mindNetwork")
  4621. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4622. } else if (e.data.tools && e.data.tools == "8") {
  4623. U.MD.D.I.openApplication("library")
  4624. } else if (e.data.tools && e.data.tools == "17") {
  4625. U.MD.D.I.openApplication("stuLibrary")
  4626. } else if (e.data.tools && e.data.tools == "18") {
  4627. U.MD.D.I.openApplication("train")
  4628. } else if (e.data.tools && e.data.tools == "21") {
  4629. U.MD.D.I.openApplication("program")
  4630. } else if (e.data.tools && e.data.tools == "22") {
  4631. U.MD.D.I.openApplication("AIprogram2")
  4632. } else if (e.data.tools && e.data.tools == "23") {
  4633. U.MD.D.I.openApplication("Pythonprogram")
  4634. } else if (e.data.tools && e.data.tools == "24") {
  4635. U.MD.D.I.openApplication("AIprogram")
  4636. } else if (e.data.tools && e.data.tools == "25") {
  4637. U.MD.D.I.openApplication("sys")
  4638. } else if (e.data.tools && e.data.tools == "26") {
  4639. // U.MD.D.I.openApplication("courseDesign")
  4640. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4641. } else if (e.data.tools && e.data.tools == "31") {
  4642. U.MD.D.I.openApplication("netWorkPanel")
  4643. } else if (e.data.tools && e.data.tools == "32") {
  4644. U.MD.D.I.openApplication("codeEdit")
  4645. } else if (e.data.tools && e.data.tools == "57") {
  4646. U.MD.D.I.openApplication("CocoPi")
  4647. } else if (e.data.tools && e.data.tools == "63") {
  4648. U.MD.D.I.openApplication("Wood")
  4649. } else if (e.data.tools && e.data.tools == "58") {
  4650. U.MD.D.I.openApplication("car")
  4651. } else if (e.data.tools && e.data.tools == "59") {
  4652. U.MD.D.I.openApplication("lineSearch")
  4653. } else if (e.data.tools && e.data.tools == "60") {
  4654. U.MD.D.I.openApplication("deepLearning")
  4655. } else if (e.data.tools && e.data.tools == "61") {
  4656. U.MD.D.I.openApplication("allHistory")
  4657. } else if (e.data.tools && e.data.tools == "28") {
  4658. U.MD.D.I.openApplication("translation")
  4659. } else if (e.data.tools && e.data.tools == "37") {
  4660. U.MD.D.I.openApplication("mohe")
  4661. } else if (e.data.tools && e.data.tools == "38") {
  4662. U.MD.D.I.openApplication("24game")
  4663. } else if (e.data.tools && e.data.tools == "39") {
  4664. U.MD.D.I.openApplication("GeoGebra")
  4665. } else if (e.data.tools && e.data.tools == "43") {
  4666. U.MD.D.I.openApplication("studentEvaluate")
  4667. } else if (e.data.tools && e.data.tools == "44") {
  4668. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4669. } else if (e.data.tools && e.data.tools == "46") {
  4670. U.MD.D.I.openApplication("project")
  4671. } else if (e.data.tools && e.data.tools == "71") {
  4672. U.MD.D.I.openApplication("aigptCourse")
  4673. } else if (e.data.tools && e.data.tools == "1s") {
  4674. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4675. } else if (e.data.tools && e.data.tools == "3s") {
  4676. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4677. } else if (e.data.tools && e.data.tools == "6s") {
  4678. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "1studio") {
  4680. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4681. } else if (e.data.tools && e.data.tools == "3studio") {
  4682. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "6studio") {
  4684. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4685. } else if (e.data.tools && e.data.tools == "3y") {
  4686. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4687. } else if (e.data.tools && e.data.tools == "1y") {
  4688. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4689. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4690. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4691. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4692. U.MD.D.I.openApplication("AIAnalyse")
  4693. } else if (e.data.tools && e.data.tools == "1teacher") {
  4694. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4695. } else if (e.data.tools && e.data.tools == "3teacher") {
  4696. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4697. } else if (e.data.tools && e.data.tools == "7teacher") {
  4698. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4699. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4700. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4701. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4702. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4703. } else if (e.data.tools && e.data.tools == "1E") {
  4704. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4705. } else if (e.data.tools && e.data.tools == "3E") {
  4706. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4707. } else if (e.data.tools && e.data.tools == "57y") {
  4708. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4709. } else if (e.data.tools && e.data.tools == "57u") {
  4710. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4711. } else if (e.data.tools && e.data.tools == "57teacher") {
  4712. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4713. } else if (e.data.tools && e.data.tools == "64") {
  4714. U.MD.D.I.openApplication("AIChat")
  4715. } else if (e.data.tools && e.data.tools == "66") {
  4716. U.MD.D.I.openApplication("formulaEdi")
  4717. } else if (e.data.tools && e.data.tools == "67") {
  4718. U.MD.D.I.openApplication("molStr")
  4719. } else if (e.data.tools && e.data.tools == "68") {
  4720. U.MD.D.I.openApplication("timeAxis")
  4721. } else if (e.data.tools && e.data.tools == "openCourse") {
  4722. let _data = {
  4723. typea: e.data.typea || '',
  4724. typeb: e.data.typeb || '',
  4725. typed: e.data.typed || '',
  4726. }
  4727. U.MD.D.I.openInApplication("index", _data)
  4728. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4729. let _data = {
  4730. classid: e.data.classid || '',
  4731. }
  4732. U.MD.D.I.openInApplication("dataClass", _data)
  4733. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4734. let _data = {
  4735. cid: e.data.cid || '',
  4736. gid: e.data.gid || '',
  4737. }
  4738. U.MD.D.I.openInApplication("opencCscl", _data)
  4739. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4740. U.MD.D.I.openApplication("dataBoardTest")
  4741. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4742. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4743. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4744. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4745. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4746. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4747. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4748. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4749. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4750. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4751. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4752. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4753. }else if (e.data.tools && e.data.tools == "loginSz") {
  4754. U.MD.D.I.openInApplication("loginSz")
  4755. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4756. if($('#classroom_observation_board')[0]){
  4757. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4758. }
  4759. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4760. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4761. if($('#classroom_observation_ob_comment')[0]){
  4762. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4763. }
  4764. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4765. }else if (e.data.tools && e.data.tools == "logout"){
  4766. U.MD.U.LO.logoutSystem()
  4767. }else if (e.data.tools && e.data.tools == "getLogin"){
  4768. let _iframe = $('#UI_Login')[0];
  4769. if (_iframe) {
  4770. var userInfo = US.userInfo;
  4771. var type = 2
  4772. if(userInfo && userInfo.userid){
  4773. type = 1
  4774. }
  4775. _contentWindow = _iframe.contentWindow;
  4776. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4777. }
  4778. }
  4779. });
  4780. U.MD.D.I.selectUser = function () {
  4781. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4782. if (res.value[0].length > 0) {
  4783. US.userInfo = res.value[0][0];
  4784. $(".userName")[0].innerHTML = US.userInfo.username;
  4785. }
  4786. }, [], { "type": "GET", "withCredentials": true });
  4787. }
  4788. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4789. var _userinfo = US.userInfo, //登录用户信息
  4790. _userid = US.userInfo.userid, //登录用户id
  4791. _oid = _userinfo.organizeid,
  4792. _type = US.userInfo.type,
  4793. _org = US.userInfo.org,
  4794. _role = US.userInfo.role,
  4795. _classId = US.userInfo.classid;
  4796. if (_type == 4) {
  4797. tType = 4
  4798. }
  4799. switch (str) {
  4800. case "studyDetailNT": //无终端模式
  4801. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4802. setTimeout(() => {
  4803. U.MD.U.L.login();
  4804. }, 2000);
  4805. } else {
  4806. _formdiv = new U.UF.UI.form(
  4807. "课程详情",
  4808. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4809. "id": "studyDetailNT",
  4810. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4816. break;
  4817. }
  4818. case "studyDetail":
  4819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4820. setTimeout(() => {
  4821. U.MD.U.L.login();
  4822. }, 2000);
  4823. } else {
  4824. _formdiv = new U.UF.UI.form(
  4825. "课程详情",
  4826. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4827. "id": "studyDetail",
  4828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4834. break;
  4835. }
  4836. case "studyDetailTrain":
  4837. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4838. setTimeout(() => {
  4839. U.MD.U.L.login();
  4840. }, 2000);
  4841. } else {
  4842. _formdiv = new U.UF.UI.form(
  4843. "培训详情",
  4844. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4845. "id": "studyDetailTrain",
  4846. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4852. break;
  4853. }
  4854. case "studyDetailS":
  4855. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4856. setTimeout(() => {
  4857. U.MD.U.L.login();
  4858. }, 2000);
  4859. } else {
  4860. _formdiv = new U.UF.UI.form(
  4861. "项目详情",
  4862. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4863. "id": "studyDetailS",
  4864. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4870. break;
  4871. }
  4872. case "studyDetailStudio":
  4873. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4874. setTimeout(() => {
  4875. U.MD.U.L.login();
  4876. }, 2000);
  4877. } else {
  4878. _formdiv = new U.UF.UI.form(
  4879. "工作详情",
  4880. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4881. "id": "studyDetailStudio",
  4882. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4888. break;
  4889. }
  4890. case "studyDetailS5":
  4891. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4892. setTimeout(() => {
  4893. U.MD.U.L.login();
  4894. }, 2000);
  4895. } else {
  4896. _formdiv = new U.UF.UI.form(
  4897. "项目详情",
  4898. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4899. "id": "studyDetailS",
  4900. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4906. break;
  4907. }
  4908. case "studyDetailGM":
  4909. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4910. setTimeout(() => {
  4911. U.MD.U.L.login();
  4912. }, 2000);
  4913. } else {
  4914. _formdiv = new U.UF.UI.form(
  4915. "课程详情",
  4916. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4917. "id": "studyDetail",
  4918. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4924. break;
  4925. }
  4926. case "hanUrl":
  4927. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4928. setTimeout(() => {
  4929. U.MD.U.L.login();
  4930. }, 2000);
  4931. } else {
  4932. _formdiv = new U.UF.UI.form(
  4933. "汉字宫",
  4934. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4935. "id": "hanUrl",
  4936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //创建窗体
  4941. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4942. break;
  4943. }
  4944. case "index":
  4945. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4946. setTimeout(() => {
  4947. U.MD.U.L.login();
  4948. }, 2000);
  4949. } else {
  4950. _formdiv = new U.UF.UI.form(
  4951. "课程中心",
  4952. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  4953. "id": "study",
  4954. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4960. break;
  4961. }
  4962. case "dataClass":
  4963. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4964. setTimeout(() => {
  4965. U.MD.U.L.login();
  4966. }, 2000);
  4967. } else {
  4968. _formdiv = new U.UF.UI.form(
  4969. "数据报告",
  4970. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4971. "id": "dataClass",
  4972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. closecallback: function () { }
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4978. break;
  4979. }
  4980. case "opencCscl":
  4981. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4982. setTimeout(() => {
  4983. U.MD.U.L.login();
  4984. }, 2000);
  4985. } else {
  4986. _formdiv = new U.UF.UI.form(
  4987. "协同建构",
  4988. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4989. "id": "futureClass",
  4990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/futureClass.png)" }, "name": "协同建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4996. break;
  4997. }
  4998. case "openCourseUpdate":
  4999. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5000. setTimeout(() => {
  5001. U.MD.U.L.login();
  5002. }, 2000);
  5003. } else {
  5004. _formdiv = new U.UF.UI.form(
  5005. "课程管理",
  5006. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5007. "id": "openCourseUpdate",
  5008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. break;
  5014. }
  5015. case "openNewCourseUpdate":
  5016. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5017. setTimeout(() => {
  5018. U.MD.U.L.login();
  5019. }, 2000);
  5020. } else {
  5021. _formdiv = new U.UF.UI.form(
  5022. "课程管理",
  5023. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5024. "id": "openCourseUpdate",
  5025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. break;
  5031. }
  5032. case "openCourseEUpdate":
  5033. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5034. setTimeout(() => {
  5035. U.MD.U.L.login();
  5036. }, 2000);
  5037. } else {
  5038. _formdiv = new U.UF.UI.form(
  5039. "课程管理",
  5040. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5041. "id": "openCourseUpdate",
  5042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. break;
  5048. }
  5049. case "openCourseAiUpdate":
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. setTimeout(() => {
  5052. U.MD.U.L.login();
  5053. }, 2000);
  5054. } else {
  5055. _formdiv = new U.UF.UI.form(
  5056. "课程管理",
  5057. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5058. "id": "openCourseUpdate",
  5059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. break;
  5065. }
  5066. case "openCourseAiUpdate2":
  5067. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5068. setTimeout(() => {
  5069. U.MD.U.L.login();
  5070. }, 2000);
  5071. } else {
  5072. _formdiv = new U.UF.UI.form(
  5073. "课程管理",
  5074. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5075. "id": "openCourseUpdate",
  5076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. break;
  5082. }
  5083. case "openCourseNewUpdate":
  5084. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5085. setTimeout(() => {
  5086. U.MD.U.L.login();
  5087. }, 2000);
  5088. } else {
  5089. _formdiv = new U.UF.UI.form(
  5090. "课程管理",
  5091. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5092. "id": "openCourseUpdate",
  5093. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //创建窗体
  5098. break;
  5099. }
  5100. case "inviteLoginSz":
  5101. _formdiv = new U.UF.UI.form(
  5102. "随机码登录",
  5103. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5104. "id": "loginSz",
  5105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //创建窗体
  5110. break;
  5111. case "loginSz":
  5112. _formdiv = new U.UF.UI.form(
  5113. "教师登录",
  5114. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5115. "id": "loginSz",
  5116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5117. "onresize": function () { }
  5118. }, {
  5119. closecallback: function () { }
  5120. }, { "style": { "height": "36px" } }).form; //创建窗体
  5121. break;
  5122. case "teacher":
  5123. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5124. setTimeout(() => {
  5125. U.MD.U.L.login();
  5126. }, 2000);
  5127. } else {
  5128. _formdiv = new U.UF.UI.form(
  5129. "教师管理",
  5130. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5131. "id": "teacher",
  5132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5133. "onresize": function () { }
  5134. }, {
  5135. closecallback: function () { }
  5136. }, { "style": { "height": "36px" } }).form; //创建窗体
  5137. break;
  5138. }
  5139. case "dataBoardSZArea":
  5140. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5141. setTimeout(() => {
  5142. U.MD.U.L.login();
  5143. }, 2000);
  5144. } else {
  5145. _formdiv = new U.UF.UI.form(
  5146. "综合数据看板",
  5147. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5148. "id": "dataBoardSZArea",
  5149. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. break;
  5155. }
  5156. case "dataBoardSZCity":
  5157. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5158. setTimeout(() => {
  5159. U.MD.U.L.login();
  5160. }, 2000);
  5161. } else {
  5162. _formdiv = new U.UF.UI.form(
  5163. "综合数据看板",
  5164. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5165. "id": "dataBoardSZCity",
  5166. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. break;
  5172. }
  5173. case "classroom_observation_board":
  5174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5175. setTimeout(() => {
  5176. U.MD.U.L.login();
  5177. }, 2000);
  5178. } else {
  5179. _formdiv = new U.UF.UI.form(
  5180. "课堂观察",
  5181. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5182. "id": "classroom_observation_board",
  5183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. break;
  5189. }
  5190. case "classroom_observation_ob_comment":
  5191. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5192. setTimeout(() => {
  5193. U.MD.U.L.login();
  5194. }, 2000);
  5195. } else {
  5196. _formdiv = new U.UF.UI.form(
  5197. "课堂审核",
  5198. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5199. "id": "classroom_observation_ob_comment",
  5200. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. break;
  5206. }
  5207. }
  5208. }
  5209. U.MD.D.I.openApplication = function (str, obj, info) {
  5210. obj = obj || {};
  5211. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5212. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5213. _userinfo = US.userInfo, //登录用户信息
  5214. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5215. _oid = obj.organizeid || _userinfo.organizeid,
  5216. _type = US.userInfo.type,
  5217. _org = US.userInfo.org,
  5218. _role = US.userInfo.role,
  5219. _classId = US.userInfo.classid,
  5220. _TscreenType = 1
  5221. _screenType = 2,
  5222. _SscreenType = 3;
  5223. let iframeBool = true
  5224. if(U.UF.UI.form.allForm[str]){
  5225. iframeBool = false
  5226. }
  5227. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5228. return;
  5229. }
  5230. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5231. switch (str) {
  5232. case "studnetProject": //好友打开
  5233. _formdiv = new U.UF.UI.form(
  5234. "我的项目",
  5235. $$("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 }), {
  5236. "id": "studnetProject",
  5237. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. _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); } }
  5243. break;
  5244. case "studentEvaluate": //好友打开
  5245. _formdiv = new U.UF.UI.form(
  5246. "我的评价",
  5247. $$("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 }), {
  5248. "id": "studentEvaluate",
  5249. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. _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); } }
  5255. break;
  5256. case "my":
  5257. _formdiv = new U.UF.UI.form(
  5258. "我的资料",
  5259. $$("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 }), {
  5260. "id": "my",
  5261. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5262. "onresize": function () { }
  5263. }, {
  5264. closecallback: function () { }
  5265. }, { "style": { "height": "36px" } }).form; //创建窗体
  5266. _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); } }
  5267. break;
  5268. case "program":
  5269. _formdiv = new U.UF.UI.form(
  5270. "编程平台",
  5271. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5272. "id": "program",
  5273. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5274. "onresize": function () { }
  5275. }, {
  5276. closecallback: function () { }
  5277. }, { "style": { "height": "36px" } }).form; //创建窗体
  5278. _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); } }
  5279. break;
  5280. case "library":
  5281. _formdiv = new U.UF.UI.form(
  5282. "素材库",
  5283. $$("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 }), {
  5284. "id": "library",
  5285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5286. "onresize": function () { }
  5287. }, {
  5288. closecallback: function () { }
  5289. }, { "style": { "height": "36px" } }).form; //创建窗体
  5290. _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); } }
  5291. break;
  5292. case "whiteboard":
  5293. _formdiv = new U.UF.UI.form(
  5294. "电子白板",
  5295. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5296. "id": "whiteboard",
  5297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. _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); } }
  5303. break;
  5304. case "investigation":
  5305. _formdiv = new U.UF.UI.form(
  5306. "问卷调查",
  5307. $$("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 }), {
  5308. "id": "investigation",
  5309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5310. "onresize": function () { }
  5311. }, {
  5312. closecallback: function () { }
  5313. }, { "style": { "height": "36px" } }).form; //创建窗体
  5314. _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); } }
  5315. break;
  5316. case "note":
  5317. _formdiv = new U.UF.UI.form(
  5318. "便签分类",
  5319. $$("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 }), {
  5320. "id": "note",
  5321. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _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); } }
  5327. break;
  5328. // case "score":
  5329. // _formdiv = new U.UF.UI.form(
  5330. // "量规评分",
  5331. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5332. // "id": "score",
  5333. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5334. // "onresize": function() {}
  5335. // }, {
  5336. // closecallback: function() {}
  5337. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. // _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); } }
  5339. // break;
  5340. case "mind":
  5341. _formdiv = new U.UF.UI.form(
  5342. "思维导图",
  5343. $$("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"
  5344. "id": "mind",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _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); } }
  5351. break;
  5352. case "doc":
  5353. // U.MD.D.I.isRoom();
  5354. _formdiv = new U.UF.UI.form(
  5355. "协同文档",
  5356. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5357. "id": "doc",
  5358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5359. "onresize": function () { }
  5360. }, {
  5361. closecallback: function () { }
  5362. }, { "style": { "height": "36px" } }).form; //创建窗体
  5363. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5364. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5365. // })
  5366. _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); } }
  5367. break;
  5368. case "studentStudy":
  5369. _formdiv = new U.UF.UI.form(
  5370. "课程中心",
  5371. $$("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
  5372. "id": "studentStudy",
  5373. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. _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); } }
  5379. break;
  5380. case "train": //好友打开
  5381. _formdiv = new U.UF.UI.form(
  5382. "训练平台",
  5383. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5384. "id": "train",
  5385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. _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); } }
  5391. break;
  5392. case "mindNetwork": //好友打开
  5393. _formdiv = new U.UF.UI.form(
  5394. "思维网格",
  5395. $$("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 }), {
  5396. "id": "mindNetwork",
  5397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5398. "onresize": function () { }
  5399. }, {
  5400. closecallback: function () { }
  5401. }, { "style": { "height": "36px" } }).form; //创建窗体
  5402. _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); } }
  5403. break;
  5404. case "studentClassRoom": //好友打开
  5405. _formdiv = new U.UF.UI.form(
  5406. "实时课堂",
  5407. $$("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 }), {
  5408. "id": "studentClassRoom",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _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); } }
  5415. setTimeout(() => {
  5416. U.UF.F.windowZooming(_formdiv)
  5417. }, 0);
  5418. break;
  5419. }
  5420. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5421. switch (str) {
  5422. case "studnetProject": //好友打开
  5423. _formdiv = new U.UF.UI.form(
  5424. "我的项目",
  5425. $$("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 }), {
  5426. "id": "studnetProject",
  5427. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. _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); } }
  5433. break;
  5434. case "studentEvaluate": //好友打开
  5435. _formdiv = new U.UF.UI.form(
  5436. "我的评价",
  5437. $$("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 }), {
  5438. "id": "studentEvaluate",
  5439. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5440. "onresize": function () { }
  5441. }, {
  5442. closecallback: function () { }
  5443. }, { "style": { "height": "36px" } }).form; //创建窗体
  5444. _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); } }
  5445. break;
  5446. case "my":
  5447. _formdiv = new U.UF.UI.form(
  5448. "我的资料",
  5449. $$("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 }), {
  5450. "id": "my",
  5451. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5452. "onresize": function () { }
  5453. }, {
  5454. closecallback: function () { }
  5455. }, { "style": { "height": "36px" } }).form; //创建窗体
  5456. _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); } }
  5457. break;
  5458. case "program":
  5459. _formdiv = new U.UF.UI.form(
  5460. "编程平台",
  5461. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5462. "id": "program",
  5463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5464. "onresize": function () { }
  5465. }, {
  5466. closecallback: function () { }
  5467. }, { "style": { "height": "36px" } }).form; //创建窗体
  5468. _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); } }
  5469. break;
  5470. case "library":
  5471. _formdiv = new U.UF.UI.form(
  5472. "素材库",
  5473. $$("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 }), {
  5474. "id": "library",
  5475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. _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); } }
  5481. break;
  5482. case "whiteboard":
  5483. _formdiv = new U.UF.UI.form(
  5484. "电子白板",
  5485. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5486. "id": "whiteboard",
  5487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5488. "onresize": function () { }
  5489. }, {
  5490. closecallback: function () { }
  5491. }, { "style": { "height": "36px" } }).form; //创建窗体
  5492. _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); } }
  5493. break;
  5494. case "investigation":
  5495. _formdiv = new U.UF.UI.form(
  5496. "问卷调查",
  5497. $$("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 }), {
  5498. "id": "investigation",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. break;
  5506. case "note":
  5507. _formdiv = new U.UF.UI.form(
  5508. "便签分类",
  5509. $$("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 }), {
  5510. "id": "note",
  5511. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5512. "onresize": function () { }
  5513. }, {
  5514. closecallback: function () { }
  5515. }, { "style": { "height": "36px" } }).form; //创建窗体
  5516. _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); } }
  5517. break;
  5518. // case "score":
  5519. // _formdiv = new U.UF.UI.form(
  5520. // "量规评分",
  5521. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5522. // "id": "score",
  5523. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. // "onresize": function() {}
  5525. // }, {
  5526. // closecallback: function() {}
  5527. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5528. // _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); } }
  5529. // break;
  5530. case "mind":
  5531. _formdiv = new U.UF.UI.form(
  5532. "思维导图",
  5533. $$("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"
  5534. "id": "mind",
  5535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. _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); } }
  5541. break;
  5542. case "doc":
  5543. // U.MD.D.I.isRoom();
  5544. _formdiv = new U.UF.UI.form(
  5545. "协同文档",
  5546. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5547. "id": "doc",
  5548. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5549. "onresize": function () { }
  5550. }, {
  5551. closecallback: function () { }
  5552. }, { "style": { "height": "36px" } }).form; //创建窗体
  5553. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5554. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5555. })
  5556. _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); } }
  5557. break;
  5558. case "train": //好友打开
  5559. _formdiv = new U.UF.UI.form(
  5560. "训练平台",
  5561. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5562. "id": "train",
  5563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5564. "onresize": function () { }
  5565. }, {
  5566. closecallback: function () { }
  5567. }, { "style": { "height": "36px" } }).form; //创建窗体
  5568. _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); } }
  5569. break;
  5570. case "studentStudy":
  5571. _formdiv = new U.UF.UI.form(
  5572. "课程中心",
  5573. $$("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
  5574. "id": "studentStudy",
  5575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5576. "onresize": function () { }
  5577. }, {
  5578. closecallback: function () { }
  5579. }, { "style": { "height": "36px" } }).form; //创建窗体
  5580. _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); } }
  5581. break;
  5582. case "mindNetwork": //好友打开
  5583. _formdiv = new U.UF.UI.form(
  5584. "思维网格",
  5585. $$("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 }), {
  5586. "id": "mindNetwork",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. _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); } }
  5593. break;
  5594. case "studentClassRoom": //好友打开
  5595. _formdiv = new U.UF.UI.form(
  5596. "实时课堂",
  5597. $$("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 }), {
  5598. "id": "studentClassRoom",
  5599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //创建窗体
  5604. _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); } }
  5605. setTimeout(() => {
  5606. U.UF.F.windowZooming(_formdiv)
  5607. }, 0);
  5608. break;
  5609. }
  5610. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5611. //选择应用处理
  5612. switch (str) {
  5613. case "project": //好友打开
  5614. _formdiv = new U.UF.UI.form(
  5615. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5616. $$("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 }), {
  5617. "id": "project",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _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); } }
  5624. break;
  5625. case "student":
  5626. _formdiv = new U.UF.UI.form(
  5627. "学生管理",
  5628. $$("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 }), {
  5629. "id": "student",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. case "evaluate":
  5638. _formdiv = new U.UF.UI.form(
  5639. "学生评价",
  5640. $$("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 }), {
  5641. "id": "evaluate",
  5642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _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); } }
  5648. break;
  5649. case "sys":
  5650. _formdiv = new U.UF.UI.form(
  5651. "目标管理",
  5652. $$("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 }), {
  5653. "id": "sys",
  5654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _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); } }
  5660. break;
  5661. case "courseDesign":
  5662. _formdiv = new U.UF.UI.form(
  5663. "项目设计",
  5664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5665. "id": "courseDesign",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. break;
  5673. case "program":
  5674. _formdiv = new U.UF.UI.form(
  5675. "编程平台",
  5676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5677. "id": "program",
  5678. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _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); } }
  5684. break;
  5685. case "class":
  5686. _formdiv = new U.UF.UI.form(
  5687. "班级管理",
  5688. $$("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 }), {
  5689. "id": "class",
  5690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _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); } }
  5696. break;
  5697. case "Grade":
  5698. _formdiv = new U.UF.UI.form(
  5699. "年级管理",
  5700. $$("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 }), {
  5701. "id": "Grade",
  5702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _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); } }
  5708. break;
  5709. case "teacherOffice":
  5710. _formdiv = new U.UF.UI.form(
  5711. "教研室",
  5712. $$("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 }), {
  5713. "id": "teacherOffice",
  5714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _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); } }
  5720. break;
  5721. case "my":
  5722. _formdiv = new U.UF.UI.form(
  5723. "我的资料",
  5724. $$("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 }), {
  5725. "id": "my",
  5726. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _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); } }
  5732. break;
  5733. case "notice":
  5734. _formdiv = new U.UF.UI.form(
  5735. "通知公告",
  5736. $$("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 }), {
  5737. "id": "notice",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _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); } }
  5744. break;
  5745. case "library":
  5746. _formdiv = new U.UF.UI.form(
  5747. "素材库",
  5748. $$("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 }), {
  5749. "id": "library",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _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); } }
  5756. break;
  5757. case "whiteboard":
  5758. _formdiv = new U.UF.UI.form(
  5759. "电子白板",
  5760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5761. "id": "whiteboard",
  5762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _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); } }
  5768. break;
  5769. case "investigation":
  5770. _formdiv = new U.UF.UI.form(
  5771. "问卷调查",
  5772. $$("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 }), {
  5773. "id": "investigation",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _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); } }
  5780. break;
  5781. case "note":
  5782. _formdiv = new U.UF.UI.form(
  5783. "便签分类",
  5784. $$("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 }), {
  5785. "id": "note",
  5786. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. break;
  5793. // case "score":
  5794. // _formdiv = new U.UF.UI.form(
  5795. // "量规评分",
  5796. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5797. // "id": "score",
  5798. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5799. // "onresize": function() {}
  5800. // }, {
  5801. // closecallback: function() {}
  5802. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5803. // _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); } }
  5804. // break;
  5805. case "mind":
  5806. _formdiv = new U.UF.UI.form(
  5807. "思维导图",
  5808. $$("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"
  5809. "id": "mind",
  5810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, { "style": { "height": "36px" } }).form; //创建窗体
  5815. _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); } }
  5816. break;
  5817. case "doc":
  5818. // U.MD.D.I.isRoom();
  5819. _formdiv = new U.UF.UI.form(
  5820. "协同文档",
  5821. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5822. "id": "doc",
  5823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5824. "onresize": function () { }
  5825. }, {
  5826. closecallback: function () { }
  5827. }, { "style": { "height": "36px" } }).form; //创建窗体
  5828. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5829. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5830. })
  5831. _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); } }
  5832. break;
  5833. case "study":
  5834. _formdiv = new U.UF.UI.form(
  5835. "课程中心",
  5836. $$("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
  5837. "id": "study",
  5838. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //创建窗体
  5843. _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); } }
  5844. break;
  5845. case "mindNetwork": //好友打开
  5846. _formdiv = new U.UF.UI.form(
  5847. "思维网格",
  5848. $$("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 }), {
  5849. "id": "mindNetwork",
  5850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5851. "onresize": function () { }
  5852. }, {
  5853. closecallback: function () { }
  5854. }, { "style": { "height": "36px" } }).form; //创建窗体
  5855. _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); } }
  5856. break;
  5857. case "train": //好友打开
  5858. _formdiv = new U.UF.UI.form(
  5859. "训练平台",
  5860. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5861. "id": "mindNetwork",
  5862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5863. "onresize": function () { }
  5864. }, {
  5865. closecallback: function () { }
  5866. }, { "style": { "height": "36px" } }).form; //创建窗体
  5867. _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); } }
  5868. break;
  5869. case "teacherClassRoom": //好友打开
  5870. _formdiv = new U.UF.UI.form(
  5871. "实时课堂",
  5872. $$("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 }), {
  5873. "id": "teacherClassRoom",
  5874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5875. "onresize": function () { }
  5876. }, {
  5877. closecallback: function () { }
  5878. }, { "style": { "height": "36px" } }).form; //创建窗体
  5879. _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); } }
  5880. setTimeout(() => {
  5881. U.UF.F.windowZooming(_formdiv)
  5882. }, 0);
  5883. break;
  5884. }
  5885. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5886. switch (str) {
  5887. case "project": //好友打开
  5888. _formdiv = new U.UF.UI.form(
  5889. "课程管理",
  5890. $$("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 }), {
  5891. "id": "project",
  5892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //创建窗体
  5897. _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); } }
  5898. break;
  5899. case "evaluate":
  5900. _formdiv = new U.UF.UI.form(
  5901. "学生评价",
  5902. $$("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 }), {
  5903. "id": "evaluate",
  5904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //创建窗体
  5909. _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); } }
  5910. break;
  5911. case "notice":
  5912. _formdiv = new U.UF.UI.form(
  5913. "通知公告",
  5914. $$("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 }), {
  5915. "id": "notice",
  5916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5917. "onresize": function () { }
  5918. }, {
  5919. closecallback: function () { }
  5920. }, { "style": { "height": "36px" } }).form; //创建窗体
  5921. _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); } }
  5922. break;
  5923. case "stuLibrary":
  5924. _formdiv = new U.UF.UI.form(
  5925. "学习资料",
  5926. $$("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 }), {
  5927. "id": "stuLibrary",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. _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); } }
  5934. break;
  5935. case "program":
  5936. _formdiv = new U.UF.UI.form(
  5937. "编程平台",
  5938. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5939. "id": "program",
  5940. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5941. "onresize": function () { }
  5942. }, {
  5943. closecallback: function () { }
  5944. }, { "style": { "height": "36px" } }).form; //创建窗体
  5945. _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); } }
  5946. break;
  5947. case "whiteboard":
  5948. _formdiv = new U.UF.UI.form(
  5949. "电子白板",
  5950. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5951. "id": "whiteboard",
  5952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5953. "onresize": function () { }
  5954. }, {
  5955. closecallback: function () { }
  5956. }, { "style": { "height": "36px" } }).form; //创建窗体
  5957. _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); } }
  5958. break;
  5959. case "investigation":
  5960. _formdiv = new U.UF.UI.form(
  5961. "问卷调查",
  5962. $$("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 }), {
  5963. "id": "investigation",
  5964. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5965. "onresize": function () { }
  5966. }, {
  5967. closecallback: function () { }
  5968. }, { "style": { "height": "36px" } }).form; //创建窗体
  5969. _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); } }
  5970. break;
  5971. case "mind":
  5972. _formdiv = new U.UF.UI.form(
  5973. "思维导图",
  5974. $$("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"
  5975. "id": "mind",
  5976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //创建窗体
  5981. _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); } }
  5982. break;
  5983. case "doc":
  5984. // U.MD.D.I.isRoom();
  5985. _formdiv = new U.UF.UI.form(
  5986. "协同文档",
  5987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5988. "id": "doc",
  5989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //创建窗体
  5994. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5995. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5996. })
  5997. _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); } }
  5998. break;
  5999. case "study":
  6000. _formdiv = new U.UF.UI.form(
  6001. "课程中心",
  6002. $$("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
  6003. "id": "study",
  6004. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6005. "onresize": function () { }
  6006. }, {
  6007. closecallback: function () { }
  6008. }, { "style": { "height": "36px" } }).form; //创建窗体
  6009. _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); } }
  6010. break;
  6011. case "mindNetwork": //好友打开
  6012. _formdiv = new U.UF.UI.form(
  6013. "思维网格",
  6014. $$("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 }), {
  6015. "id": "mindNetwork",
  6016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //创建窗体
  6021. _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); } }
  6022. break;
  6023. case "train": //好友打开
  6024. _formdiv = new U.UF.UI.form(
  6025. "训练平台",
  6026. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6027. "id": "train",
  6028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6029. "onresize": function () { }
  6030. }, {
  6031. closecallback: function () { }
  6032. }, { "style": { "height": "36px" } }).form; //创建窗体
  6033. _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); } }
  6034. break;
  6035. case "sys":
  6036. _formdiv = new U.UF.UI.form(
  6037. "目标管理",
  6038. $$("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 }), {
  6039. "id": "sys",
  6040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6041. "onresize": function () { }
  6042. }, {
  6043. closecallback: function () { }
  6044. }, { "style": { "height": "36px" } }).form; //创建窗体
  6045. _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); } }
  6046. break;
  6047. case "courseDesign":
  6048. _formdiv = new U.UF.UI.form(
  6049. "项目设计",
  6050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6051. "id": "courseDesign",
  6052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. _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); } }
  6058. break;
  6059. }
  6060. } else if (!_type) {
  6061. switch (str) {
  6062. case "my":
  6063. _formdiv = new U.UF.UI.form(
  6064. "我的资料",
  6065. $$("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 }), {
  6066. "id": "my",
  6067. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _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); } }
  6073. break;
  6074. }
  6075. }
  6076. switch (str) {
  6077. // AIprogram2 AI体验 aihub.cocorobo.cn
  6078. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6079. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6080. case "formulaEdi": //公式编辑
  6081. _formdiv = new U.UF.UI.form(
  6082. "公式编辑",
  6083. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6084. "id": "formulaEdi",
  6085. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6086. "onresize": function () { }
  6087. }, {
  6088. closecallback: function () { }
  6089. }, { "style": { "height": "36px" } }).form; //创建窗体
  6090. _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); } }
  6091. break;
  6092. case "molStr": //分子结构
  6093. _formdiv = new U.UF.UI.form(
  6094. "分子结构",
  6095. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6096. "id": "molStr",
  6097. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6098. "onresize": function () { }
  6099. }, {
  6100. closecallback: function () { }
  6101. }, { "style": { "height": "36px" } }).form; //创建窗体
  6102. _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); } }
  6103. break;
  6104. case "timeAxis": //时间轴
  6105. _formdiv = new U.UF.UI.form(
  6106. "时间轴",
  6107. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6108. "id": "timeAxis",
  6109. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _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); } }
  6115. break;
  6116. case "AIprogram2": //AI体验
  6117. _formdiv = new U.UF.UI.form(
  6118. "AI体验",
  6119. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6120. "id": "AIprogram2",
  6121. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _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); } }
  6127. break;
  6128. case "Pythonprogram": //python编程
  6129. _formdiv = new U.UF.UI.form(
  6130. "Python编程",
  6131. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6132. "id": "Pythonprogram",
  6133. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //创建窗体
  6138. _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); } }
  6139. break;
  6140. case "AIprogram": //ai编程
  6141. _formdiv = new U.UF.UI.form(
  6142. "AI编程平台",
  6143. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6144. "id": "AIprogram",
  6145. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _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); } }
  6151. break;
  6152. case "CocoPi": //CocoPi
  6153. _formdiv = new U.UF.UI.form(
  6154. "CocoPi",
  6155. $$("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" }), {
  6156. "id": "CocoPi",
  6157. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //创建窗体
  6162. _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); } }
  6163. break;
  6164. case "Wood": //Wood
  6165. _formdiv = new U.UF.UI.form(
  6166. "海龟编程",
  6167. $$("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/" }), {
  6168. "id": "Wood",
  6169. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //创建窗体
  6174. _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); } }
  6175. break;
  6176. case "car": //模拟驾驶
  6177. _formdiv = new U.UF.UI.form(
  6178. "模拟驾驶",
  6179. $$("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/" }), {
  6180. "id": "car",
  6181. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //创建窗体
  6186. _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); } }
  6187. break;
  6188. case "lineSearch": //路径搜索
  6189. _formdiv = new U.UF.UI.form(
  6190. "路径搜索",
  6191. $$("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/" }), {
  6192. "id": "lineSearch",
  6193. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //创建窗体
  6198. _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); } }
  6199. break;
  6200. case "deepLearning": //深度学习
  6201. _formdiv = new U.UF.UI.form(
  6202. "深度学习",
  6203. $$("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/#" }), {
  6204. "id": "deepLearning",
  6205. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //创建窗体
  6210. _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); } }
  6211. break;
  6212. case "allHistory": //深度学习
  6213. _formdiv = new U.UF.UI.form(
  6214. "全历史",
  6215. $$("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/" }), {
  6216. "id": "allHistory",
  6217. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6218. "onresize": function () { }
  6219. }, {
  6220. closecallback: function () { }
  6221. }, { "style": { "height": "36px" } }).form; //创建窗体
  6222. _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); } }
  6223. break;
  6224. case "chatPDF": //ai编程
  6225. _formdiv = new U.UF.UI.form(
  6226. "chatPDF",
  6227. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6228. "id": "chatPDF",
  6229. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6230. "onresize": function () { }
  6231. }, {
  6232. closecallback: function () { }
  6233. }, { "style": { "height": "36px" } }).form; //创建窗体
  6234. _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); } }
  6235. break;
  6236. case "resources": //国家教育
  6237. _formdiv = new U.UF.UI.form(
  6238. "国家教育",
  6239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6240. "id": "resources",
  6241. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6242. "onresize": function () { }
  6243. }, {
  6244. closecallback: function () { }
  6245. }, { "style": { "height": "36px" } }).form; //创建窗体
  6246. _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); } }
  6247. break;
  6248. case "codeEdit": //源码编辑
  6249. _formdiv = new U.UF.UI.form(
  6250. "源码编辑",
  6251. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6252. "id": "codeEdit",
  6253. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6254. "onresize": function () { }
  6255. }, {
  6256. closecallback: function () { }
  6257. }, { "style": { "height": "36px" } }).form; //创建窗体
  6258. _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); } }
  6259. break; //
  6260. case "MindMap": //MindMap
  6261. _formdiv = new U.UF.UI.form(
  6262. "MindMap",
  6263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6264. "id": "MindMap",
  6265. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //创建窗体
  6270. _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); } }
  6271. break;
  6272. case "netWorkPanel": //netWorkPanel
  6273. _formdiv = new U.UF.UI.form(
  6274. "netWorkPanel",
  6275. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6276. "id": "netWorkPanel",
  6277. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6278. "onresize": function () { }
  6279. }, {
  6280. closecallback: function () { }
  6281. }, { "style": { "height": "36px" } }).form; //创建窗体
  6282. _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); } }
  6283. break;
  6284. case "GeoGebra": //GeoGebra
  6285. _formdiv = new U.UF.UI.form(
  6286. "GeoGebra",
  6287. $$("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" }), {
  6288. "id": "GeoGebra",
  6289. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6290. "onresize": function () { }
  6291. }, {
  6292. closecallback: function () { }
  6293. }, { "style": { "height": "36px" } }).form; //创建窗体
  6294. _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); } }
  6295. break;
  6296. case "translation": //翻译
  6297. _formdiv = new U.UF.UI.form(
  6298. "翻译",
  6299. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6300. "id": "translation",
  6301. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6302. "onresize": function () { }
  6303. }, {
  6304. closecallback: function () { }
  6305. }, { "style": { "height": "36px" } }).form; //创建窗体
  6306. _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); } }
  6307. break;
  6308. case "mohe": //魔盒
  6309. _formdiv = new U.UF.UI.form(
  6310. "魔盒识字",
  6311. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6312. "id": "mohe",
  6313. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6314. "onresize": function () { }
  6315. }, {
  6316. closecallback: function () { }
  6317. }, { "style": { "height": "36px" } }).form; //创建窗体
  6318. _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); } }
  6319. break;
  6320. case "24game": //24点
  6321. _formdiv = new U.UF.UI.form(
  6322. "24点",
  6323. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6324. "id": "24game",
  6325. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6326. "onresize": function () { }
  6327. }, {
  6328. closecallback: function () { }
  6329. }, { "style": { "height": "36px" } }).form; //创建窗体
  6330. _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); } }
  6331. break;
  6332. case "case":
  6333. _formdiv = new U.UF.UI.form(
  6334. "课程进展",
  6335. $$("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 }), {
  6336. "id": "case",
  6337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6338. "onresize": function () { }
  6339. }, {
  6340. closecallback: function () { }
  6341. }, { "style": { "height": "36px" } }).form; //创建窗体
  6342. _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); } }
  6343. break;
  6344. case "snf":
  6345. _formdiv = new U.UF.UI.form(
  6346. "赛诺梵",
  6347. $$("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" }), {
  6348. "id": "snf",
  6349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6350. "onresize": function () { }
  6351. }, {
  6352. closecallback: function () { }
  6353. }, { "style": { "height": "36px" } }).form; //创建窗体
  6354. _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); } }
  6355. break;
  6356. case "hanFamily":
  6357. _formdiv = new U.UF.UI.form(
  6358. "汉字家族",
  6359. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6360. "id": "hanFamily",
  6361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6362. "onresize": function () { }
  6363. }, {
  6364. closecallback: function () { }
  6365. }, { "style": { "height": "36px" } }).form; //创建窗体
  6366. _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); } }
  6367. break;
  6368. case "hanClassics":
  6369. _formdiv = new U.UF.UI.form(
  6370. "国学经典",
  6371. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6372. "id": "hanClassics",
  6373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6374. "onresize": function () { }
  6375. }, {
  6376. closecallback: function () { }
  6377. }, { "style": { "height": "36px" } }).form; //创建窗体
  6378. _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); } }
  6379. break;
  6380. case "hanTraining":
  6381. _formdiv = new U.UF.UI.form(
  6382. "笔画训练",
  6383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6384. "id": "hanTraining",
  6385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6386. "onresize": function () { }
  6387. }, {
  6388. closecallback: function () { }
  6389. }, { "style": { "height": "36px" } }).form; //创建窗体
  6390. _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); } }
  6391. break;
  6392. case "hanClass":
  6393. _formdiv = new U.UF.UI.form(
  6394. "书法课堂",
  6395. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6396. "id": "hanClass",
  6397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6398. "onresize": function () { }
  6399. }, {
  6400. closecallback: function () { }
  6401. }, { "style": { "height": "36px" } }).form; //创建窗体
  6402. _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); } }
  6403. break;
  6404. case "han":
  6405. _formdiv = new U.UF.UI.form(
  6406. "汉字宫",
  6407. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6408. "id": "han",
  6409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6410. "onresize": function () { }
  6411. }, {
  6412. closecallback: function () { }
  6413. }, { "style": { "height": "36px" } }).form; //创建窗体
  6414. _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); } }
  6415. break;
  6416. case "projectGM": //课程管理
  6417. _formdiv = new U.UF.UI.form(
  6418. "课程管理",
  6419. $$("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 }), {
  6420. "id": "projectGM",
  6421. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6422. "onresize": function () { }
  6423. }, {
  6424. closecallback: function () { }
  6425. }, { "style": { "height": "36px" } }).form; //创建窗体
  6426. _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); } }
  6427. break;
  6428. case "studyGM": //课程中心
  6429. _formdiv = new U.UF.UI.form(
  6430. "课程中心",
  6431. $$("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
  6432. "id": "study",
  6433. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6434. "onresize": function () { }
  6435. }, {
  6436. closecallback: function () { }
  6437. }, { "style": { "height": "36px" } }).form; //创建窗体
  6438. _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); } }
  6439. break;
  6440. // studentGM
  6441. case "studentGM": //学生管理
  6442. _formdiv = new U.UF.UI.form(
  6443. "学生管理",
  6444. $$("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 }), {
  6445. "id": "studentGM",
  6446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //创建窗体
  6451. _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); } }
  6452. break;
  6453. case "evaluateGM": //学生评价
  6454. _formdiv = new U.UF.UI.form(
  6455. "学生评价",
  6456. $$("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 }), {
  6457. "id": "evaluateGM",
  6458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //创建窗体
  6463. _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); } }
  6464. break;
  6465. // classGM
  6466. case "classGM": //班级管理
  6467. _formdiv = new U.UF.UI.form(
  6468. "班级管理",
  6469. $$("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 }), {
  6470. "id": "classGM",
  6471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () { }
  6475. }, { "style": { "height": "36px" } }).form; //创建窗体
  6476. _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); } }
  6477. break;
  6478. // dataGM
  6479. case "dataGM":
  6480. _formdiv = new U.UF.UI.form(
  6481. "我的资料",
  6482. $$("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 }), {
  6483. "id": "dataGM",
  6484. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. // caseGM
  6492. case "caseGM": //课程进展
  6493. _formdiv = new U.UF.UI.form(
  6494. "课程进展",
  6495. $$("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 }), {
  6496. "id": "caseGM",
  6497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _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); } }
  6503. break;
  6504. // meterialGM
  6505. case "meterialGM": //素材库
  6506. _formdiv = new U.UF.UI.form(
  6507. "素材库",
  6508. $$("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 }), {
  6509. "id": "meterialGM",
  6510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6511. "onresize": function () { }
  6512. }, {
  6513. closecallback: function () { }
  6514. }, { "style": { "height": "36px" } }).form; //创建窗体
  6515. _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); } }
  6516. break;
  6517. // evaluateSGM
  6518. case "evaluateSGM": //我的评价
  6519. _formdiv = new U.UF.UI.form(
  6520. "我的评价",
  6521. $$("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 }), {
  6522. "id": "evaluateSGM",
  6523. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6524. "onresize": function () { }
  6525. }, {
  6526. closecallback: function () { }
  6527. }, { "style": { "height": "36px" } }).form; //创建窗体
  6528. _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); } }
  6529. break;
  6530. case "jupyter": //jupyter
  6531. _formdiv = new U.UF.UI.form(
  6532. "jupyter",
  6533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6534. "id": "jupyter",
  6535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, { "style": { "height": "36px" } }).form; //创建窗体
  6540. _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); } }
  6541. break;
  6542. case "number": //数字实验室
  6543. _formdiv = new U.UF.UI.form(
  6544. "数字实验室",
  6545. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6546. "id": "number",
  6547. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //创建窗体
  6552. _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); } }
  6553. break;
  6554. case "studentCourse": //项目管理 学生
  6555. _formdiv = new U.UF.UI.form(
  6556. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6557. $$("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 }), {
  6558. "id": "studentCourse",
  6559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () { }
  6563. }, { "style": { "height": "36px" } }).form; //创建窗体
  6564. _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); } }
  6565. break;
  6566. case "studentCourseS": //项目管理 老师
  6567. _formdiv = new U.UF.UI.form(
  6568. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6569. $$("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 }), {
  6570. "id": "studentCourseS",
  6571. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6572. "onresize": function () { }
  6573. }, {
  6574. closecallback: function () { }
  6575. }, { "style": { "height": "36px" } }).form; //创建窗体
  6576. _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); } }
  6577. break;
  6578. case "studentIndex": //项目中心
  6579. _formdiv = new U.UF.UI.form(
  6580. "项目中心",
  6581. $$("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 }), {
  6582. "id": "studentIndex",
  6583. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6584. "onresize": function () { }
  6585. }, {
  6586. closecallback: function () { }
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _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); } }
  6589. break;
  6590. case "CaseDesignS":
  6591. _formdiv = new U.UF.UI.form(
  6592. "项目进展",
  6593. $$("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 }), {
  6594. "id": "case",
  6595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () { }
  6599. }, { "style": { "height": "36px" } }).form; //创建窗体
  6600. _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); } }
  6601. break;
  6602. case "tcStudent": //腾讯学生管理
  6603. _formdiv = new U.UF.UI.form(
  6604. "学生管理",
  6605. $$("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 }), {
  6606. "id": "tcStudent",
  6607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "tcSchool": //腾讯学校管理
  6615. _formdiv = new U.UF.UI.form(
  6616. "学校管理",
  6617. $$("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 }), {
  6618. "id": "tcSchool",
  6619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. break;
  6626. case "tcTeacher": //腾讯学校管理
  6627. _formdiv = new U.UF.UI.form(
  6628. "教师管理",
  6629. $$("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 }), {
  6630. "id": "tcTeacher",
  6631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _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); } }
  6637. break;
  6638. case "teacher":
  6639. _formdiv = new U.UF.UI.form(
  6640. "教师管理",
  6641. $$("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 }), {
  6642. "id": "teacher",
  6643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _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); } }
  6649. break;
  6650. case "tcData": //腾讯我的资料
  6651. _formdiv = new U.UF.UI.form(
  6652. "我的资料",
  6653. $$("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 }), {
  6654. "id": "tcData",
  6655. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _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); } }
  6661. break;
  6662. case "tcNotice": //腾讯消息通知
  6663. _formdiv = new U.UF.UI.form(
  6664. "消息通知",
  6665. $$("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 }), {
  6666. "id": "tcNotice",
  6667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6668. "onresize": function () { }
  6669. }, {
  6670. closecallback: function () { }
  6671. }, { "style": { "height": "36px" } }).form; //创建窗体
  6672. _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); } }
  6673. break;
  6674. case "myReport": //好友打开
  6675. _formdiv = new U.UF.UI.form(
  6676. "我的评价",
  6677. $$("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 }), {
  6678. "id": "myReport",
  6679. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6680. "onresize": function () { }
  6681. }, {
  6682. closecallback: function () { }
  6683. }, { "style": { "height": "36px" } }).form; //创建窗体
  6684. _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); } }
  6685. break;
  6686. case "learnAna": //好友打开
  6687. _formdiv = new U.UF.UI.form(
  6688. "学习分析",
  6689. $$("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 }), {
  6690. "id": "learnAna",
  6691. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6692. "onresize": function () { }
  6693. }, {
  6694. closecallback: function () { }
  6695. }, { "style": { "height": "36px" } }).form; //创建窗体
  6696. _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); } }
  6697. break;
  6698. case "AIChat": //AI共创
  6699. _formdiv = new U.UF.UI.form(
  6700. "AI共创",
  6701. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6702. "id": "AIChat",
  6703. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6704. "onresize": function () { }
  6705. }, {
  6706. istop: true,
  6707. closecallback: function () { $("#aichat_icon").remove(); },
  6708. narrowcallback: function () {
  6709. if (!$("#aichat_icon")[0]) {
  6710. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6711. }
  6712. },
  6713. }, { "style": { "height": "36px" } }).form; //创建窗体
  6714. _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); } }
  6715. break;
  6716. case "ainew": //AI共创
  6717. _formdiv = new U.UF.UI.form(
  6718. "AI协同",
  6719. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6720. "id": "ainew",
  6721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6722. "onresize": function () { }
  6723. }, {
  6724. closecallback: function () { }
  6725. }, { "style": { "height": "36px" } }).form; //创建窗体
  6726. _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); } }
  6727. break;
  6728. case "gpt4": //gpt4
  6729. _formdiv = new U.UF.UI.form(
  6730. "AI助手",
  6731. $$("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 }), {
  6732. "id": "gpt4",
  6733. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6734. "onresize": function () { }
  6735. }, {
  6736. closecallback: function () { }
  6737. }, { "style": { "height": "36px" } }).form; //创建窗体
  6738. _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); } }
  6739. break;
  6740. case "aigpt": //gpt4
  6741. _formdiv = new U.UF.UI.form(
  6742. "AI助手+",
  6743. $$("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 }), {
  6744. "id": "aigpt",
  6745. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6746. "onresize": function () { }
  6747. }, {
  6748. closecallback: function () {
  6749. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6750. }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6754. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6755. })
  6756. break;
  6757. case "aiKnowledge": //aiKnowledge
  6758. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6759. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6760. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6761. }
  6762. _formdiv = new U.UF.UI.form(
  6763. "知识建构",
  6764. $$("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 }), {
  6765. "id": "aiKnowledge",
  6766. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //创建窗体
  6771. _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); } }
  6772. break;
  6773. case "futureClass": //AI共创
  6774. _formdiv = new U.UF.UI.form(
  6775. "协同建构",
  6776. $$("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
  6777. "id": "synergyCourse",
  6778. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () {
  6782. $("iframe", _formdiv)[0].contentWindow.loginout();
  6783. }
  6784. }, { "style": { "height": "36px" } }).form; //创建窗体
  6785. _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); } }
  6786. break;
  6787. case "aiagent": //ai agent
  6788. _formdiv = new U.UF.UI.form(
  6789. "AI Agent",
  6790. $$("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" }), {
  6791. "id": "AIAgent",
  6792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6793. "onresize": function () { }
  6794. }, {
  6795. closecallback: function () { }
  6796. }, { "style": { "height": "36px" } }).form; //创建窗体
  6797. _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); } }
  6798. break;
  6799. case "dataBoard": //数据看板
  6800. _formdiv = new U.UF.UI.form(
  6801. "数据看板",
  6802. $$("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 }), {
  6803. "id": "dataBoard",
  6804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //创建窗体
  6809. _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); } }
  6810. break;
  6811. case "dataBoardSies": //数据融合
  6812. _formdiv = new U.UF.UI.form(
  6813. "数据融合",
  6814. $$("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 }), {
  6815. "id": "dataBoardSies",
  6816. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () { }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _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); } }
  6822. break;
  6823. case "dataBoardNew": //数据看板
  6824. _formdiv = new U.UF.UI.form(
  6825. "综合看板",
  6826. $$("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 }), {
  6827. "id": "dataBoardNew",
  6828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6829. "onresize": function () { }
  6830. }, {
  6831. closecallback: function () { }
  6832. }, { "style": { "height": "36px" } }).form; //创建窗体
  6833. _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); } }
  6834. break;
  6835. case "dataBoardTest": //数据看板
  6836. _formdiv = new U.UF.UI.form(
  6837. "评测看板",
  6838. $$("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 }), {
  6839. "id": "dataBoardTest",
  6840. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6841. "onresize": function () { }
  6842. }, {
  6843. closecallback: function () { }
  6844. }, { "style": { "height": "36px" } }).form; //创建窗体
  6845. _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); } }
  6846. break;
  6847. case "AIAnalyse": //AI共创
  6848. _formdiv = new U.UF.UI.form(
  6849. "AI分析",
  6850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6851. "id": "AIAnalyse",
  6852. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6853. "onresize": function () { }
  6854. }, {
  6855. closecallback: function () { }
  6856. }, { "style": { "height": "36px" } }).form; //创建窗体
  6857. _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); } }
  6858. break;
  6859. case "studioCourse": //AI共创
  6860. _formdiv = new U.UF.UI.form(
  6861. "工作管理",
  6862. $$("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 }), {
  6863. "id": "studioCourse",
  6864. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, { "style": { "height": "36px" } }).form; //创建窗体
  6869. _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); } }
  6870. break;
  6871. case "studioIndex": //AI共创
  6872. _formdiv = new U.UF.UI.form(
  6873. "工作中心",
  6874. $$("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 }), {
  6875. "id": "studioIndex",
  6876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () { }
  6880. }, { "style": { "height": "36px" } }).form; //创建窗体
  6881. _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); } }
  6882. break;
  6883. case "source":
  6884. _formdiv = new U.UF.UI.form(
  6885. "教学资源",
  6886. $$("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 }), {
  6887. "id": "source",
  6888. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //创建窗体
  6893. _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); } }
  6894. break;
  6895. case "testTeacher":
  6896. _formdiv = new U.UF.UI.form(
  6897. "智能表单",
  6898. $$("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 }), {
  6899. "id": "testTeacher",
  6900. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //创建窗体
  6905. _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); } }
  6906. break;
  6907. case "testStudent":
  6908. _formdiv = new U.UF.UI.form(
  6909. "教师中心",
  6910. $$("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 }), {
  6911. "id": "testStudent",
  6912. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //创建窗体
  6917. _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); } }
  6918. break;
  6919. case "testTeacherSies":
  6920. _formdiv = new U.UF.UI.form(
  6921. "教师管理",
  6922. $$("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 }), {
  6923. "id": "testTeacherSies",
  6924. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6925. "onresize": function () { }
  6926. }, {
  6927. closecallback: function () { }
  6928. }, { "style": { "height": "36px" } }).form; //创建窗体
  6929. _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); } }
  6930. break;
  6931. case "testStudentSies":
  6932. _formdiv = new U.UF.UI.form(
  6933. "教师中心",
  6934. $$("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 }), {
  6935. "id": "testStudentSies",
  6936. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6937. "onresize": function () { }
  6938. }, {
  6939. closecallback: function () { }
  6940. }, { "style": { "height": "36px" } }).form; //创建窗体
  6941. _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); } }
  6942. break;
  6943. case "ytpbl": //消息通知
  6944. _formdiv = new U.UF.UI.form(
  6945. "案例征集",
  6946. $$("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 }), {
  6947. "id": "ytpbl",
  6948. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6949. "onresize": function () { }
  6950. }, {
  6951. closecallback: function () { }
  6952. }, { "style": { "height": "36px" } }).form; //创建窗体
  6953. _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); } }
  6954. // 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");
  6955. break;
  6956. case "aiCourseResource": //人工智能窗体
  6957. _formdiv = new U.UF.UI.form(
  6958. false,
  6959. $$("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 }), {
  6960. "id": "aiCourseResource",
  6961. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6962. "onresize": function () { },
  6963. "isdrag": false,
  6964. }, {
  6965. closecallback: function () { }
  6966. }, { "style": { "height": "36px" } }).form; //创建窗体
  6967. _taskbar = ''
  6968. break;
  6969. case "szdjgCocooroboX": //图形化编程
  6970. _formdiv = new U.UF.UI.form(
  6971. "图形化编程",
  6972. $$("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" }), {
  6973. "id": "szdjgCocooroboX",
  6974. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6975. "onresize": function () { }
  6976. }, {
  6977. closecallback: function () { }
  6978. }, { "style": { "height": "36px" } }).form; //创建窗体
  6979. _taskbar = ''
  6980. break;
  6981. case "szdjgPython": //python编程
  6982. _formdiv = new U.UF.UI.form(
  6983. "Python编程",
  6984. $$("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" }), {
  6985. "id": "szdjgPython",
  6986. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6987. "onresize": function () { }
  6988. }, {
  6989. closecallback: function () { }
  6990. }, { "style": { "height": "36px" } }).form; //创建窗体
  6991. _taskbar = ''
  6992. break;
  6993. case "Record":
  6994. _formdiv = new U.UF.UI.form(
  6995. "观察记录",
  6996. $$("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 }), {
  6997. "id": "Record",
  6998. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6999. "onresize": function () { }
  7000. }, {
  7001. closecallback: function () { }
  7002. }, { "style": { "height": "36px" } }).form; //创建窗体
  7003. _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); } }
  7004. break;
  7005. case "aigptCourse":
  7006. _formdiv = new U.UF.UI.form(
  7007. "AI智能体",
  7008. $$("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' }), {
  7009. "id": "aigptCourse",
  7010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7011. "onresize": function () { }
  7012. }, {
  7013. closecallback: function () { }
  7014. }, { "style": { "height": "36px" } }).form; //创建窗体
  7015. _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); } }
  7016. break;
  7017. case "classroomObservation":
  7018. _formdiv = new U.UF.UI.form(
  7019. "课堂观察",
  7020. $$("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 }), {
  7021. "id": "classroomObservation",
  7022. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7023. "onresize": function () { }
  7024. }, {
  7025. closecallback: function () { }
  7026. }, { "style": { "height": "36px" } }).form; //创建窗体
  7027. _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); } }
  7028. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7029. break;
  7030. case "pblCourse":
  7031. _formdiv = new U.UF.UI.form(
  7032. "学生PBL",
  7033. $$("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 }), {
  7034. "id": "pblCourse",
  7035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7036. "onresize": function () { }
  7037. }, {
  7038. closecallback: function () { }
  7039. }, { "style": { "height": "36px" } }).form; //创建窗体
  7040. _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); } }
  7041. break;
  7042. case "appStore":
  7043. _formdiv = new U.UF.UI.form(
  7044. "CocoFlow",
  7045. $$("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 }), {
  7046. "id": "appStore",
  7047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7048. "onresize": function () { }
  7049. }, {
  7050. closecallback: function () { }
  7051. }, { "style": { "height": "36px" } }).form; //创建窗体
  7052. _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); } }
  7053. break;
  7054. case "sassPlatform":
  7055. _formdiv = new U.UF.UI.form(
  7056. "Sass通用后台管理",
  7057. $$("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 }), {
  7058. "id": "sassPlatform",
  7059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7060. "onresize": function () { }
  7061. }, {
  7062. closecallback: function () { }
  7063. }, { "style": { "height": "36px" } }).form; //创建窗体
  7064. _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); } }
  7065. break;
  7066. case "EDU":
  7067. _formdiv = new U.UF.UI.form(
  7068. "EDU",
  7069. $$("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" }), {
  7070. "id": "EDU",
  7071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7072. "onresize": function () { }
  7073. }, {
  7074. closecallback: function () { }
  7075. }, { "style": { "height": "36px" } }).form; //创建窗体
  7076. _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); } }
  7077. break;
  7078. case "knowledge":
  7079. _formdiv = new U.UF.UI.form(
  7080. "知识库",
  7081. $$("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 }), {
  7082. "id": "knowledge",
  7083. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7084. "onresize": function () { }
  7085. }, {
  7086. closecallback: function () { }
  7087. }, { "style": { "height": "36px" } }).form; //创建窗体
  7088. _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); } }
  7089. break;
  7090. case "userExamine":
  7091. _formdiv = new U.UF.UI.form(
  7092. "账号申请",
  7093. $$("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" }), {
  7094. "id": "userExamine",
  7095. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7096. "onresize": function () { }
  7097. }, {
  7098. closecallback: function () { }
  7099. }, { "style": { "height": "36px" } }).form; //创建窗体
  7100. break;
  7101. }
  7102. //U.MD.D.I.openClick(str);
  7103. //如果有任务栏信息
  7104. if (_taskbar) {
  7105. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7106. }
  7107. if(iframeBool){
  7108. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7109. let onload = U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7110. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7111. })
  7112. let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7113. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7114. };
  7115. if(!(onload || onloadListener)){
  7116. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7117. }
  7118. }
  7119. }
  7120. // U.MD.D.I.openClick = function(str){
  7121. // var click = '';
  7122. // switch(str){
  7123. // case 'friend':
  7124. // click = '我的好友';
  7125. // break;
  7126. // case 'domain':
  7127. // click = '域名管理';
  7128. // break;
  7129. // case 'disk':
  7130. // click = '我的云盘';
  7131. // break;
  7132. // case 'word':
  7133. // click = 'Word';
  7134. // break;
  7135. // case 'excel':
  7136. // click = 'Execl';
  7137. // break;
  7138. // case 'txt':
  7139. // click = '文本文件';
  7140. // break;
  7141. // case 'lookupFriend':
  7142. // click = '查找好友';
  7143. // break;
  7144. // case 'ftp':
  7145. // click = 'FTP';
  7146. // break;
  7147. // case 'group':
  7148. // click = '群组';
  7149. // break;
  7150. // case 'set':
  7151. // click = '我的设置';
  7152. // break;
  7153. // case 'systemSet':
  7154. // click = '系统设置';
  7155. // break;
  7156. // case 'boomYun':
  7157. // click = '互联办公';
  7158. // break;
  7159. // case 'xz':
  7160. // click = '云端下载';
  7161. // break;
  7162. // case 'client':
  7163. // click = '有思浏览器';
  7164. // break;
  7165. // case 'backEndProgramming':
  7166. // click = '在线后台编程';
  7167. // break;
  7168. // case 'frontEndProgramming':
  7169. // click = '在线前端编程';
  7170. // break;
  7171. // default: break;
  7172. // }
  7173. // if(U.MD.D.I.Ip && click){
  7174. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7175. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7176. // })
  7177. // }
  7178. // }
  7179. /**
  7180. *函数作用:ajax简易函数,使用post格式
  7181. *@param url {data} 后台地址
  7182. *@param data {data} 参数json
  7183. *@param fn {data} 回调函数
  7184. *
  7185. */
  7186. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7187. // var xhr = new XMLHttpRequest();
  7188. // xhr.open("GET",url,true);
  7189. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7190. // xhr.onreadystatechange = function(){
  7191. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7192. // fn.call(this,xhr.responseText);
  7193. // }
  7194. // };
  7195. // xhr.send();
  7196. // }
  7197. /*判断是否是内网IP*/
  7198. // U.MD.D.I.isInnerIPFn = function(str){
  7199. // var curPageUrl = str;
  7200. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7201. // curPageUrl =curPageUrl.replace(reg1,'');
  7202. // // console.log('curPageUrl-1 '+curPageUrl);
  7203. // var reg2 = /\:+/g;//替换冒号为一点
  7204. // curPageUrl =curPageUrl.replace(reg2,'.');
  7205. // // console.log('curPageUrl-2 '+curPageUrl);
  7206. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7207. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7208. // if(curPageUrl[2] != '16'){
  7209. // return ipAddress;
  7210. // }else{
  7211. // return false;
  7212. // }
  7213. // }
  7214. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7215. // //compatibility for firefox and chrome
  7216. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7217. // var pc = new myPeerConnection({
  7218. // iceServers: []
  7219. // }),
  7220. // noop = function() {},
  7221. // localIPs = {},
  7222. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7223. // key;
  7224. // function iterateIP(ip) {
  7225. // if (!localIPs[ip]) onNewIP(ip);
  7226. // localIPs[ip] = true;
  7227. // }
  7228. // //create a bogus data channel
  7229. // pc.createDataChannel("");
  7230. // // create offer and set local description
  7231. // pc.createOffer().then(function(sdp) {
  7232. // sdp.sdp.split('\n').forEach(function(line) {
  7233. // if (line.indexOf('candidate') < 0) return;
  7234. // line.match(ipRegex).forEach(iterateIP);
  7235. // });
  7236. // pc.setLocalDescription(sdp, noop, noop);
  7237. // }).catch(function(reason) {
  7238. // // An error occurred, so handle the failure to connect
  7239. // });
  7240. // //sten for candidate events
  7241. // pc.onicecandidate = function(ice) {
  7242. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7243. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7244. // };
  7245. // }
  7246. // U.MD.D.I.getUserIpBool = function(callback){
  7247. // U.MD.D.I.getUserIP(function(ip){
  7248. // alert("Got IP! :" + ip);
  7249. // });
  7250. //}
  7251. //#endregion
  7252. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7253. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7254. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7255. _userinfo = US.userInfo, //登录用户信息
  7256. _userid = US.userInfo.userid //登录用户id
  7257. let _iframe;
  7258. let _cid = cid,
  7259. _stage = stage,
  7260. _task = task,
  7261. _tool = tool;
  7262. var _jie = $$("div", {
  7263. "style": {
  7264. "position": "absolute",
  7265. "bottom": "50px",
  7266. "right": "50px",
  7267. "zIndex": "9999",
  7268. "backgroundColor": "#2268bc",
  7269. "color": "#fff",
  7270. "padding": "12px 20px",
  7271. "cursor": "pointer",
  7272. "borderRadius": "4px",
  7273. },
  7274. "innerHTML": "提交作业"
  7275. })
  7276. let aTool = ''
  7277. let _loading = document.createElement('div')
  7278. _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;"
  7279. // _loading.id = "";
  7280. let _lchild = document.createElement('div')
  7281. let _limg = document.createElement('img')
  7282. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7283. _limg.style = "width: 26px;margin-right: 10px;"
  7284. _lchild.appendChild(_limg)
  7285. let _lspan = document.createElement('span')
  7286. _lspan.innerHTML = "上传中..."
  7287. _lchild.appendChild(_lspan)
  7288. _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%);"
  7289. _loading.appendChild(_lchild)
  7290. var _box = $$('div', {
  7291. "style": {
  7292. "position": "relative",
  7293. "width": "100%",
  7294. "height": "100%",
  7295. },
  7296. })
  7297. _box.appendChild(_loading)
  7298. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7299. switch (str) {
  7300. case "whiteboard":
  7301. aTool = 1;
  7302. _iframe = $$("iframe", {
  7303. "frameborder": "no",
  7304. "border": "0",
  7305. "scrolling ": "no",
  7306. "style": {
  7307. "cssText": "border:0;width:100%;height:100%"
  7308. },
  7309. "src": "https://beta.iwb.cocorobo.cn/"
  7310. })
  7311. _box.appendChild(_iframe);
  7312. _box.appendChild(_jie);
  7313. _formdiv = new U.UF.UI.form(
  7314. "电子白板",
  7315. _box, {
  7316. "id": "whiteboard" + cid + stage + task + tool,
  7317. "style": {
  7318. "width": "90%",
  7319. "height": "90%",
  7320. "overflow": 'hidden'
  7321. },
  7322. "onresize": function () { }
  7323. }, {
  7324. closecallback: function () { }
  7325. }, {
  7326. "style": {
  7327. "height": "36px"
  7328. }
  7329. }).form; //创建窗体
  7330. _taskbar = {
  7331. "id": str + _formdiv.id,
  7332. "style": {
  7333. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7334. },
  7335. "name": "电子白板",
  7336. "forms": _formdiv,
  7337. "click": function () {
  7338. U.MD.D.I.openApplication(str, obj, info);
  7339. }
  7340. }
  7341. break;
  7342. case "mind":
  7343. aTool = 3;
  7344. _iframe = $$("iframe", {
  7345. "frameborder": "no",
  7346. "border": "0",
  7347. "scrolling ": "no",
  7348. "style": {
  7349. "cssText": "border:0;width:100%;height:100%"
  7350. },
  7351. "src": "/kityminder-editor/dist/index.html"
  7352. })
  7353. _box.appendChild(_iframe);
  7354. _box.appendChild(_jie);
  7355. _formdiv = new U.UF.UI.form(
  7356. "思维导图",
  7357. _box, { //"/jsmind/example/demo.html"
  7358. "id": "mind" + cid + stage + task + tool,
  7359. "style": {
  7360. "width": "90%",
  7361. "height": "90%",
  7362. "overflow": 'hidden'
  7363. },
  7364. "onresize": function () { }
  7365. }, {
  7366. closecallback: function () { }
  7367. }, {
  7368. "style": {
  7369. "height": "36px"
  7370. }
  7371. }).form; //创建窗体
  7372. _taskbar = {
  7373. "id": str + _formdiv.id,
  7374. "style": {
  7375. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7376. },
  7377. "name": "思维导图",
  7378. "forms": _formdiv,
  7379. "click": function () {
  7380. U.MD.D.I.openApplication(str, obj, info);
  7381. }
  7382. }
  7383. break;
  7384. case "MindMap":
  7385. aTool = 3;
  7386. _iframe = $$("iframe", {
  7387. "frameborder": "no",
  7388. "border": "0",
  7389. "scrolling ": "no",
  7390. "style": {
  7391. "cssText": "border:0;width:100%;height:100%"
  7392. },
  7393. "src": "//cloud.cocorobo.cn/mind/"
  7394. })
  7395. _box.appendChild(_iframe);
  7396. _box.appendChild(_jie);
  7397. _formdiv = new U.UF.UI.form(
  7398. "思维导图",
  7399. _box, { //"/jsmind/example/demo.html"
  7400. "id": "mind" + cid + stage + task + tool,
  7401. "style": {
  7402. "width": "90%",
  7403. "height": "90%",
  7404. "overflow": 'hidden'
  7405. },
  7406. "onresize": function () { }
  7407. }, {
  7408. closecallback: function () { }
  7409. }, {
  7410. "style": {
  7411. "height": "36px"
  7412. }
  7413. }).form; //创建窗体
  7414. _taskbar = {
  7415. "id": str + _formdiv.id,
  7416. "style": {
  7417. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7418. },
  7419. "name": "思维导图",
  7420. "forms": _formdiv,
  7421. "click": function () {
  7422. U.MD.D.I.openApplication(str, obj, info);
  7423. }
  7424. }
  7425. break;
  7426. case "doc":
  7427. aTool = 6;
  7428. _iframe = $$("iframe", {
  7429. "frameborder": "no",
  7430. "border": "0",
  7431. "scrolling ": "no",
  7432. "style": {
  7433. "cssText": "border:0;width:100%;height:100%"
  7434. },
  7435. "src": "/Office/Word/WordEditArea.htm"
  7436. })
  7437. _box.appendChild(_iframe);
  7438. _box.appendChild(_jie);
  7439. _formdiv = new U.UF.UI.form(
  7440. "协同文档",
  7441. _box, {
  7442. "id": "doc" + cid + stage + task + tool,
  7443. "style": {
  7444. "width": "90%",
  7445. "height": "90%",
  7446. "overflow": 'hidden'
  7447. },
  7448. "onresize": function () { }
  7449. }, {
  7450. closecallback: function () { }
  7451. }, {
  7452. "style": {
  7453. "height": "36px"
  7454. }
  7455. }).form; //创建窗体
  7456. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7457. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7458. })
  7459. _taskbar = {
  7460. "id": str + _formdiv.id,
  7461. "style": {
  7462. "backgroundImage": "url(/img/icon/doc.png)"
  7463. },
  7464. "name": "协同文档",
  7465. "forms": _formdiv,
  7466. "click": function () {
  7467. U.MD.D.I.openApplication(str, obj, info);
  7468. }
  7469. }
  7470. break;
  7471. case "mindNetwork": //好友打开
  7472. aTool = 7;
  7473. _iframe = $$("iframe", {
  7474. "webkitallowfullscreen": "",
  7475. "mozallowfullscreen": "",
  7476. "allowfullscreen": "",
  7477. "frameborder": "no",
  7478. "border": "0",
  7479. "scrolling ": "no",
  7480. "style": {
  7481. "cssText": "border:0; width:100%; height:100%;"
  7482. },
  7483. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7484. })
  7485. _box.appendChild(_iframe);
  7486. _box.appendChild(_jie);
  7487. _formdiv = new U.UF.UI.form(
  7488. "思维网格",
  7489. _box, {
  7490. "id": "mindNetwork" + cid + stage + task + tool,
  7491. "style": {
  7492. "width": "90%",
  7493. "height": "90%",
  7494. "overflow": 'hidden'
  7495. },
  7496. "onresize": function () { }
  7497. }, {
  7498. closecallback: function () { }
  7499. }, {
  7500. "style": {
  7501. "height": "36px"
  7502. }
  7503. }).form; //创建窗体
  7504. _taskbar = {
  7505. "id": str + _formdiv.id,
  7506. "style": {
  7507. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7508. },
  7509. "name": "思维网格",
  7510. "forms": _formdiv,
  7511. "click": function () {
  7512. U.MD.D.I.openApplication(str, obj, info);
  7513. }
  7514. }
  7515. break;
  7516. case "courseDesign":
  7517. _iframe = $$("iframe", {
  7518. "webkitallowfullscreen": "",
  7519. "mozallowfullscreen": "",
  7520. "allowfullscreen": "",
  7521. "frameborder": "no",
  7522. "border": "0",
  7523. "scrolling ": "no",
  7524. "style": {
  7525. "cssText": "border:0; width:100%; height:100%;"
  7526. },
  7527. "src": "/course-design-vue"
  7528. })
  7529. _box.appendChild(_iframe);
  7530. _box.appendChild(_jie);
  7531. _formdiv = new U.UF.UI.form(
  7532. "项目设计",
  7533. _box, {
  7534. "id": "courseDesign" + cid + stage + task + tool,
  7535. "style": {
  7536. "width": "90%",
  7537. "height": "90%",
  7538. "overflow": 'hidden'
  7539. },
  7540. "onresize": function () { }
  7541. }, {
  7542. closecallback: function () { }
  7543. }, {
  7544. "style": {
  7545. "height": "36px"
  7546. }
  7547. }).form; //创建窗体
  7548. _taskbar = {
  7549. "id": str + _formdiv.id,
  7550. "style": {
  7551. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7552. },
  7553. "name": "项目设计",
  7554. "forms": _formdiv,
  7555. "click": function () {
  7556. U.MD.D.I.openApplication(str, obj, info);
  7557. }
  7558. }
  7559. break;
  7560. }
  7561. const script1 = document.createElement("script");
  7562. script1.type = "text/javascript";
  7563. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7564. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7565. const script2 = document.createElement("script");
  7566. script2.type = "text/javascript";
  7567. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7568. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7569. const script3 = document.createElement("script");
  7570. script3.type = "text/javascript";
  7571. script3.charset = "UTF-8";
  7572. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7573. const script4 = document.createElement("script");
  7574. script4.type = "text/javascript";
  7575. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7576. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7577. if (_iframe) {
  7578. if (str == 'doc') {
  7579. _iframe = _formdiv.querySelector('iframe')
  7580. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7581. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7582. _iframe.contentWindow.document.body.appendChild(script1);
  7583. _iframe.contentWindow.document.body.appendChild(script2);
  7584. // _iframe.contentWindow.document.body.appendChild(script3);
  7585. _iframe.contentWindow.document.body.appendChild(script4);
  7586. })
  7587. if (onloadListener) {
  7588. _iframe.contentDocument.location.reload()
  7589. } else {
  7590. _iframe.contentDocument.location.reload()
  7591. }
  7592. } else if (str == 'courseDesign') {
  7593. U.UF.DL.iframeLoad(_iframe, function () {
  7594. // _iframe.contentWindow.U.MD.O.W.load();
  7595. // _iframe.contentWindow.document.body.appendChild(script1);
  7596. _iframe.contentWindow.document.body.appendChild(script2);
  7597. _iframe.contentWindow.document.body.appendChild(script4);
  7598. })
  7599. } else if (str == 'mind') {
  7600. _iframe = _formdiv.querySelector('iframe')
  7601. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7602. //
  7603. _iframe.contentWindow.document.body.appendChild(script1);
  7604. _iframe.contentWindow.document.body.appendChild(script2);
  7605. _iframe.contentWindow.document.body.appendChild(script4);
  7606. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7607. })
  7608. if (onloadListener) {
  7609. _iframe.contentDocument.location.reload()
  7610. } else {
  7611. _iframe.contentDocument.location.reload()
  7612. }
  7613. } else if (str == 'whiteboard') {
  7614. _iframe = _formdiv.querySelector('iframe')
  7615. let onloadListener = _iframe.onload = () => {
  7616. _iframe.contentWindow.document.body.appendChild(script1);
  7617. _iframe.contentWindow.document.body.appendChild(script2);
  7618. _iframe.contentWindow.document.body.appendChild(script4);
  7619. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7620. };
  7621. // if (onloadListener) {
  7622. // try {
  7623. // _iframe.src += "?cocorobo="+new Date().getTime()
  7624. // _iframe.contentWindow.document.location.reload()
  7625. // } catch (error) {
  7626. // }
  7627. // } else {
  7628. // _iframe.contentDocument.location.reload()
  7629. // }
  7630. } else {
  7631. _iframe.onload = () => {
  7632. _iframe.contentWindow.document.body.appendChild(script1);
  7633. _iframe.contentWindow.document.body.appendChild(script2);
  7634. // _iframe.contentWindow.document.body.appendChild(script3);
  7635. _iframe.contentWindow.document.body.appendChild(script4);
  7636. };
  7637. }
  7638. _jie.onclick = async () => {
  7639. let text = ''
  7640. if (aTool == 1) {
  7641. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7642. } else if (aTool == 6) {
  7643. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7644. } else if (aTool == 3) {
  7645. text = await U.MD.D.I.getEditorContent(_iframe);
  7646. }
  7647. _loading.style.display = 'flex'
  7648. console.log(_loading);
  7649. var _ajs = _iframe.contentWindow.document.createElement("script");
  7650. _ajs.type = "text/javascript";
  7651. _ajs.innerHTML =
  7652. // 'console.log(' + _loading + ');\n' +
  7653. 'var _js = document.createElement("script");\n' +
  7654. '_js.type="text/javascript";\n' +
  7655. '_js.charset="UTF-8";\n' +
  7656. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7657. "_js.onload = function(){\n" +
  7658. ' var a = document.getElementsByTagName("img")\n' +
  7659. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7660. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7661. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7662. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7663. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7664. "beforeUpload_shishi(file," +
  7665. "'" +
  7666. _userid +
  7667. "'" +
  7668. ", " +
  7669. "'" +
  7670. _cid +
  7671. "'" +
  7672. ", " +
  7673. "'" +
  7674. _stage +
  7675. "'" +
  7676. ", " +
  7677. "'" +
  7678. _task +
  7679. "'" +
  7680. ", " +
  7681. "'" +
  7682. _tool +
  7683. "'" +
  7684. ", " +
  7685. "'" +
  7686. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7687. "'" +
  7688. ", " +
  7689. "'" +
  7690. aTool +
  7691. "'" +
  7692. ", " +
  7693. "`" +
  7694. text +
  7695. "`" +
  7696. ")\n" +
  7697. " });\n" +
  7698. "}\n" +
  7699. "document.head.appendChild(_js);\n";
  7700. _iframe.contentWindow.document.head.appendChild(_ajs);
  7701. }
  7702. }
  7703. //U.MD.D.I.openClick(str);
  7704. //如果有任务栏信息
  7705. // if (_taskbar) {
  7706. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7707. // }
  7708. }
  7709. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7710. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7711. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7712. _userinfo = US.userInfo, //登录用户信息
  7713. _userid = US.userInfo.userid //登录用户id
  7714. let _iframe;
  7715. let _cid = cid,
  7716. _stage = stage,
  7717. _task = task,
  7718. _tool = tool;
  7719. var _jie = $$("div", {
  7720. "style": {
  7721. "position": "absolute",
  7722. "bottom": "50px",
  7723. "right": "50px",
  7724. "zIndex": "9999",
  7725. "backgroundColor": "#2268bc",
  7726. "color": "#fff",
  7727. "padding": "12px 20px",
  7728. "cursor": "pointer",
  7729. "borderRadius": "4px",
  7730. },
  7731. "innerHTML": "提交作业"
  7732. })
  7733. let aTool = ''
  7734. let _loading = document.createElement('div')
  7735. _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;"
  7736. // _loading.id = "";
  7737. let _lchild = document.createElement('div')
  7738. let _limg = document.createElement('img')
  7739. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7740. _limg.style = "width: 26px;margin-right: 10px;"
  7741. _lchild.appendChild(_limg)
  7742. let _lspan = document.createElement('span')
  7743. _lspan.innerHTML = "上传中..."
  7744. _lchild.appendChild(_lspan)
  7745. _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%);"
  7746. _loading.appendChild(_lchild)
  7747. let _box = $$('div', {
  7748. "style": {
  7749. "position": "relative",
  7750. "width": "100%",
  7751. "height": "100%",
  7752. },
  7753. })
  7754. _box.appendChild(_loading)
  7755. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7756. switch (str) {
  7757. case "whiteboard":
  7758. aTool = 1;
  7759. _iframe = $$("iframe", {
  7760. "frameborder": "no",
  7761. "border": "0",
  7762. "scrolling ": "no",
  7763. "style": {
  7764. "cssText": "border:0;width:100%;height:100%"
  7765. },
  7766. "src": "https://beta.iwb.cocorobo.cn/"
  7767. })
  7768. _box.appendChild(_iframe);
  7769. _box.appendChild(_jie);
  7770. _formdiv = new U.UF.UI.form(
  7771. "电子白板",
  7772. _box, {
  7773. "id": "whiteboard" + cid + stage + task + tool,
  7774. "style": {
  7775. "width": "90%",
  7776. "height": "90%",
  7777. "overflow": 'hidden'
  7778. },
  7779. "onresize": function () { }
  7780. }, {
  7781. closecallback: function () { }
  7782. }, {
  7783. "style": {
  7784. "height": "36px"
  7785. }
  7786. }).form; //创建窗体
  7787. _taskbar = {
  7788. "id": str + _formdiv.id,
  7789. "style": {
  7790. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7791. },
  7792. "name": "电子白板",
  7793. "forms": _formdiv,
  7794. "click": function () {
  7795. U.MD.D.I.openApplication(str, obj, info);
  7796. }
  7797. }
  7798. break;
  7799. case "mind":
  7800. aTool = 3;
  7801. _iframe = $$("iframe", {
  7802. "frameborder": "no",
  7803. "border": "0",
  7804. "scrolling ": "no",
  7805. "style": {
  7806. "cssText": "border:0;width:100%;height:100%"
  7807. },
  7808. "src": "/kityminder-editor/dist/index.html"
  7809. })
  7810. _box.appendChild(_iframe);
  7811. _box.appendChild(_jie);
  7812. _formdiv = new U.UF.UI.form(
  7813. "思维导图",
  7814. _box, { //"/jsmind/example/demo.html"
  7815. "id": "mind" + cid + stage + task + tool,
  7816. "style": {
  7817. "width": "90%",
  7818. "height": "90%",
  7819. "overflow": 'hidden'
  7820. },
  7821. "onresize": function () { }
  7822. }, {
  7823. closecallback: function () { }
  7824. }, {
  7825. "style": {
  7826. "height": "36px"
  7827. }
  7828. }).form; //创建窗体
  7829. _taskbar = {
  7830. "id": str + _formdiv.id,
  7831. "style": {
  7832. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7833. },
  7834. "name": "思维导图",
  7835. "forms": _formdiv,
  7836. "click": function () {
  7837. U.MD.D.I.openApplication(str, obj, info);
  7838. }
  7839. }
  7840. break;
  7841. case "MindMap":
  7842. aTool = 3;
  7843. _iframe = $$("iframe", {
  7844. "frameborder": "no",
  7845. "border": "0",
  7846. "scrolling ": "no",
  7847. "style": {
  7848. "cssText": "border:0;width:100%;height:100%"
  7849. },
  7850. "src": "//cloud.cocorobo.cn/mind/"
  7851. })
  7852. _box.appendChild(_iframe);
  7853. _box.appendChild(_jie);
  7854. _formdiv = new U.UF.UI.form(
  7855. "思维导图",
  7856. _box, { //"/jsmind/example/demo.html"
  7857. "id": "mind" + cid + stage + task + tool,
  7858. "style": {
  7859. "width": "90%",
  7860. "height": "90%",
  7861. "overflow": 'hidden'
  7862. },
  7863. "onresize": function () { }
  7864. }, {
  7865. closecallback: function () { }
  7866. }, {
  7867. "style": {
  7868. "height": "36px"
  7869. }
  7870. }).form; //创建窗体
  7871. _taskbar = {
  7872. "id": str + _formdiv.id,
  7873. "style": {
  7874. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7875. },
  7876. "name": "思维导图",
  7877. "forms": _formdiv,
  7878. "click": function () {
  7879. U.MD.D.I.openApplication(str, obj, info);
  7880. }
  7881. }
  7882. break;
  7883. case "doc":
  7884. aTool = 6;
  7885. _iframe = $$("iframe", {
  7886. "frameborder": "no",
  7887. "border": "0",
  7888. "scrolling ": "no",
  7889. "style": {
  7890. "cssText": "border:0;width:100%;height:100%"
  7891. },
  7892. "src": "/Office/Word/WordEditArea.htm"
  7893. })
  7894. _box.appendChild(_iframe);
  7895. _box.appendChild(_jie);
  7896. _formdiv = new U.UF.UI.form(
  7897. "协同文档",
  7898. _box, {
  7899. "id": "doc" + cid + stage + task + tool,
  7900. "style": {
  7901. "width": "90%",
  7902. "height": "90%",
  7903. "overflow": 'hidden'
  7904. },
  7905. "onresize": function () { }
  7906. }, {
  7907. closecallback: function () { }
  7908. }, {
  7909. "style": {
  7910. "height": "36px"
  7911. }
  7912. }).form; //创建窗体
  7913. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7914. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7915. })
  7916. _taskbar = {
  7917. "id": str + _formdiv.id,
  7918. "style": {
  7919. "backgroundImage": "url(/img/icon/doc.png)"
  7920. },
  7921. "name": "协同文档",
  7922. "forms": _formdiv,
  7923. "click": function () {
  7924. U.MD.D.I.openApplication(str, obj, info);
  7925. }
  7926. }
  7927. break;
  7928. case "mindNetwork": //好友打开
  7929. aTool = 7;
  7930. _iframe = $$("iframe", {
  7931. "webkitallowfullscreen": "",
  7932. "mozallowfullscreen": "",
  7933. "allowfullscreen": "",
  7934. "frameborder": "no",
  7935. "border": "0",
  7936. "scrolling ": "no",
  7937. "style": {
  7938. "cssText": "border:0; width:100%; height:100%;"
  7939. },
  7940. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7941. })
  7942. _box.appendChild(_iframe);
  7943. _box.appendChild(_jie);
  7944. _formdiv = new U.UF.UI.form(
  7945. "思维网格",
  7946. _box, {
  7947. "id": "mindNetwork" + cid + stage + task + tool,
  7948. "style": {
  7949. "width": "90%",
  7950. "height": "90%",
  7951. "overflow": 'hidden'
  7952. },
  7953. "onresize": function () { }
  7954. }, {
  7955. closecallback: function () { }
  7956. }, {
  7957. "style": {
  7958. "height": "36px"
  7959. }
  7960. }).form; //创建窗体
  7961. _taskbar = {
  7962. "id": str + _formdiv.id,
  7963. "style": {
  7964. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7965. },
  7966. "name": "思维网格",
  7967. "forms": _formdiv,
  7968. "click": function () {
  7969. U.MD.D.I.openApplication(str, obj, info);
  7970. }
  7971. }
  7972. break;
  7973. case "courseDesign":
  7974. _iframe = $$("iframe", {
  7975. "webkitallowfullscreen": "",
  7976. "mozallowfullscreen": "",
  7977. "allowfullscreen": "",
  7978. "frameborder": "no",
  7979. "border": "0",
  7980. "scrolling ": "no",
  7981. "style": {
  7982. "cssText": "border:0; width:100%; height:100%;"
  7983. },
  7984. "src": "/course-design-vue"
  7985. })
  7986. _box.appendChild(_iframe);
  7987. _box.appendChild(_jie);
  7988. _formdiv = new U.UF.UI.form(
  7989. "项目设计",
  7990. _box, {
  7991. "id": "courseDesign" + cid + stage + task + tool,
  7992. "style": {
  7993. "width": "90%",
  7994. "height": "90%",
  7995. "overflow": 'hidden'
  7996. },
  7997. "onresize": function () { }
  7998. }, {
  7999. closecallback: function () { }
  8000. }, {
  8001. "style": {
  8002. "height": "36px"
  8003. }
  8004. }).form; //创建窗体
  8005. _taskbar = {
  8006. "id": str + _formdiv.id,
  8007. "style": {
  8008. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8009. },
  8010. "name": "项目设计",
  8011. "forms": _formdiv,
  8012. "click": function () {
  8013. U.MD.D.I.openApplication(str, obj, info);
  8014. }
  8015. }
  8016. break;
  8017. }
  8018. const script1 = document.createElement("script");
  8019. script1.type = "text/javascript";
  8020. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8021. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8022. const script2 = document.createElement("script");
  8023. script2.type = "text/javascript";
  8024. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8025. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8026. const script3 = document.createElement("script");
  8027. script3.type = "text/javascript";
  8028. script3.charset = "UTF-8";
  8029. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8030. const script4 = document.createElement("script");
  8031. script4.type = "text/javascript";
  8032. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8033. script4.src = window.origin + "/js/Common/jietu2E.js";
  8034. if (_iframe) {
  8035. if (str == 'doc') {
  8036. _iframe = _formdiv.querySelector('iframe')
  8037. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8038. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8039. _iframe.contentWindow.document.body.appendChild(script1);
  8040. _iframe.contentWindow.document.body.appendChild(script2);
  8041. // _iframe.contentWindow.document.body.appendChild(script3);
  8042. _iframe.contentWindow.document.body.appendChild(script4);
  8043. })
  8044. if (onloadListener) {
  8045. _iframe.contentDocument.location.reload()
  8046. } else {
  8047. _iframe.contentDocument.location.reload()
  8048. }
  8049. } else if (str == 'courseDesign') {
  8050. U.UF.DL.iframeLoad(_iframe, function () {
  8051. // _iframe.contentWindow.U.MD.O.W.load();
  8052. // _iframe.contentWindow.document.body.appendChild(script1);
  8053. _iframe.contentWindow.document.body.appendChild(script2);
  8054. _iframe.contentWindow.document.body.appendChild(script4);
  8055. })
  8056. } else if (str == 'mind') {
  8057. _iframe = _formdiv.querySelector('iframe')
  8058. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8059. //
  8060. _iframe.contentWindow.document.body.appendChild(script1);
  8061. _iframe.contentWindow.document.body.appendChild(script2);
  8062. _iframe.contentWindow.document.body.appendChild(script4);
  8063. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8064. })
  8065. if (onloadListener) {
  8066. _iframe.contentDocument.location.reload()
  8067. } else {
  8068. _iframe.contentDocument.location.reload()
  8069. }
  8070. } else if (str == 'whiteboard') {
  8071. _iframe = _formdiv.querySelector('iframe')
  8072. let onloadListener = _iframe.onload = () => {
  8073. _iframe.contentWindow.document.body.appendChild(script1);
  8074. _iframe.contentWindow.document.body.appendChild(script2);
  8075. _iframe.contentWindow.document.body.appendChild(script4);
  8076. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8077. };
  8078. // if (onloadListener) {
  8079. // try {
  8080. // _iframe.src += "?cocorobo="+new Date().getTime()
  8081. // _iframe.contentWindow.document.location.reload()
  8082. // } catch (error) {
  8083. // }
  8084. // } else {
  8085. // _iframe.contentDocument.location.reload()
  8086. // }
  8087. } else {
  8088. _iframe.onload = () => {
  8089. _iframe.contentWindow.document.body.appendChild(script1);
  8090. _iframe.contentWindow.document.body.appendChild(script2);
  8091. // _iframe.contentWindow.document.body.appendChild(script3);
  8092. _iframe.contentWindow.document.body.appendChild(script4);
  8093. };
  8094. }
  8095. _jie.onclick = async () => {
  8096. let text = ''
  8097. if (aTool == 1) {
  8098. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8099. } else if (aTool == 6) {
  8100. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8101. } else if (aTool == 3) {
  8102. text = await U.MD.D.I.getEditorContent(_iframe);
  8103. }
  8104. _loading.style.display = 'flex'
  8105. console.log(_loading);
  8106. var _ajs = _iframe.contentWindow.document.createElement("script");
  8107. _ajs.type = "text/javascript";
  8108. _ajs.innerHTML =
  8109. // 'console.log(' + _loading + ');\n' +
  8110. 'var _js = document.createElement("script");\n' +
  8111. '_js.type="text/javascript";\n' +
  8112. '_js.charset="UTF-8";\n' +
  8113. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8114. "_js.onload = function(){\n" +
  8115. ' var a = document.getElementsByTagName("img")\n' +
  8116. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8117. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8118. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8119. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8120. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8121. "beforeUpload_shishi(file," +
  8122. "'" +
  8123. _userid +
  8124. "'" +
  8125. ", " +
  8126. "'" +
  8127. _cid +
  8128. "'" +
  8129. ", " +
  8130. "'" +
  8131. _stage +
  8132. "'" +
  8133. ", " +
  8134. "'" +
  8135. _task +
  8136. "'" +
  8137. ", " +
  8138. "'" +
  8139. _tool +
  8140. "'" +
  8141. ", " +
  8142. "'" +
  8143. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8144. "'" +
  8145. ", " +
  8146. "'" +
  8147. aTool +
  8148. "'" +
  8149. ", " +
  8150. "`" +
  8151. text +
  8152. "`" +
  8153. ")\n" +
  8154. " });\n" +
  8155. "}\n" +
  8156. "document.head.appendChild(_js);\n";
  8157. _iframe.contentWindow.document.head.appendChild(_ajs);
  8158. }
  8159. }
  8160. //U.MD.D.I.openClick(str);
  8161. //如果有任务栏信息
  8162. // if (_taskbar) {
  8163. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8164. // }
  8165. }
  8166. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8167. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8168. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8169. _userid = student.userid, //登录用户id
  8170. _username = student.student //用户名字
  8171. let _iframe;
  8172. let _cid = cid,
  8173. _stage = stage,
  8174. _task = task,
  8175. _tool = tool;
  8176. var _jie = $$("div", {
  8177. "style": {
  8178. "position": "absolute",
  8179. "bottom": "50px",
  8180. "right": "50px",
  8181. "zIndex": "9999",
  8182. "backgroundColor": "#2268bc",
  8183. "color": "#fff",
  8184. "padding": "12px 20px",
  8185. "cursor": "pointer",
  8186. "borderRadius": "4px",
  8187. },
  8188. "innerHTML": "提交作业"
  8189. })
  8190. let aTool = ''
  8191. let _loading = document.createElement('div')
  8192. _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;"
  8193. // _loading.id = "";
  8194. let _lchild = document.createElement('div')
  8195. let _limg = document.createElement('img')
  8196. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8197. _limg.style = "width: 26px;margin-right: 10px;"
  8198. _lchild.appendChild(_limg)
  8199. let _lspan = document.createElement('span')
  8200. _lspan.innerHTML = "上传中..."
  8201. _lchild.appendChild(_lspan)
  8202. _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%);"
  8203. _loading.appendChild(_lchild)
  8204. var _box = $$('div', {
  8205. "style": {
  8206. "position": "relative",
  8207. "width": "100%",
  8208. "height": "100%",
  8209. },
  8210. })
  8211. _box.appendChild(_loading)
  8212. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8213. switch (str) {
  8214. case "whiteboard":
  8215. aTool = 1;
  8216. _iframe = $$("iframe", {
  8217. "frameborder": "no",
  8218. "border": "0",
  8219. "scrolling ": "no",
  8220. "style": {
  8221. "cssText": "border:0;width:100%;height:100%"
  8222. },
  8223. "src": "https://beta.iwb.cocorobo.cn/"
  8224. })
  8225. _box.appendChild(_iframe);
  8226. _box.appendChild(_jie);
  8227. _formdiv = new U.UF.UI.form(
  8228. "电子白板-" + _username,
  8229. _box, {
  8230. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8231. "style": {
  8232. "width": "90%",
  8233. "height": "90%",
  8234. "overflow": 'hidden'
  8235. },
  8236. "onresize": function () { }
  8237. }, {
  8238. closecallback: function () { }
  8239. }, {
  8240. "style": {
  8241. "height": "36px"
  8242. }
  8243. }).form; //创建窗体
  8244. _taskbar = {
  8245. "id": str + _formdiv.id,
  8246. "style": {
  8247. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8248. },
  8249. "name": "电子白板",
  8250. "forms": _formdiv,
  8251. "click": function () {
  8252. U.MD.D.I.openApplication(str, obj, info);
  8253. }
  8254. }
  8255. break;
  8256. case "mind":
  8257. aTool = 3;
  8258. _iframe = $$("iframe", {
  8259. "frameborder": "no",
  8260. "border": "0",
  8261. "scrolling ": "no",
  8262. "style": {
  8263. "cssText": "border:0;width:100%;height:100%"
  8264. },
  8265. "src": "/kityminder-editor/dist/index.html"
  8266. })
  8267. _box.appendChild(_iframe);
  8268. _box.appendChild(_jie);
  8269. _formdiv = new U.UF.UI.form(
  8270. "思维导图-" + _username,
  8271. _box, { //"/jsmind/example/demo.html"
  8272. "id": "mind" + cid + stage + task + tool + _userid,
  8273. "style": {
  8274. "width": "90%",
  8275. "height": "90%",
  8276. "overflow": 'hidden'
  8277. },
  8278. "onresize": function () { }
  8279. }, {
  8280. closecallback: function () { }
  8281. }, {
  8282. "style": {
  8283. "height": "36px"
  8284. }
  8285. }).form; //创建窗体
  8286. _taskbar = {
  8287. "id": str + _formdiv.id,
  8288. "style": {
  8289. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8290. },
  8291. "name": "思维导图",
  8292. "forms": _formdiv,
  8293. "click": function () {
  8294. U.MD.D.I.openApplication(str, obj, info);
  8295. }
  8296. }
  8297. break;
  8298. case "MindMap":
  8299. aTool = 3;
  8300. _iframe = $$("iframe", {
  8301. "frameborder": "no",
  8302. "border": "0",
  8303. "scrolling ": "no",
  8304. "style": {
  8305. "cssText": "border:0;width:100%;height:100%"
  8306. },
  8307. "src": "//cloud.cocorobo.cn/mind/"
  8308. })
  8309. _box.appendChild(_iframe);
  8310. _box.appendChild(_jie);
  8311. _formdiv = new U.UF.UI.form(
  8312. "思维导图-" + _username,
  8313. _box, { //"/jsmind/example/demo.html"
  8314. "id": "mind" + cid + stage + task + tool + _userid,
  8315. "style": {
  8316. "width": "90%",
  8317. "height": "90%",
  8318. "overflow": 'hidden'
  8319. },
  8320. "onresize": function () { }
  8321. }, {
  8322. closecallback: function () { }
  8323. }, {
  8324. "style": {
  8325. "height": "36px"
  8326. }
  8327. }).form; //创建窗体
  8328. _taskbar = {
  8329. "id": str + _formdiv.id,
  8330. "style": {
  8331. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8332. },
  8333. "name": "思维导图",
  8334. "forms": _formdiv,
  8335. "click": function () {
  8336. U.MD.D.I.openApplication(str, obj, info);
  8337. }
  8338. }
  8339. break;
  8340. case "doc":
  8341. aTool = 6;
  8342. _iframe = $$("iframe", {
  8343. "frameborder": "no",
  8344. "border": "0",
  8345. "scrolling ": "no",
  8346. "style": {
  8347. "cssText": "border:0;width:100%;height:100%"
  8348. },
  8349. "src": "/Office/Word/WordEditArea.htm"
  8350. })
  8351. _box.appendChild(_iframe);
  8352. _box.appendChild(_jie);
  8353. _formdiv = new U.UF.UI.form(
  8354. "协同文档-" + _username,
  8355. _box, {
  8356. "id": "doc" + cid + stage + task + tool + _userid,
  8357. "style": {
  8358. "width": "90%",
  8359. "height": "90%",
  8360. "overflow": 'hidden'
  8361. },
  8362. "onresize": function () { }
  8363. }, {
  8364. closecallback: function () { }
  8365. }, {
  8366. "style": {
  8367. "height": "36px"
  8368. }
  8369. }).form; //创建窗体
  8370. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8371. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8372. })
  8373. _taskbar = {
  8374. "id": str + _formdiv.id,
  8375. "style": {
  8376. "backgroundImage": "url(/img/icon/doc.png)"
  8377. },
  8378. "name": "协同文档",
  8379. "forms": _formdiv,
  8380. "click": function () {
  8381. U.MD.D.I.openApplication(str, obj, info);
  8382. }
  8383. }
  8384. break;
  8385. case "mindNetwork": //好友打开
  8386. aTool = 7;
  8387. _iframe = $$("iframe", {
  8388. "webkitallowfullscreen": "",
  8389. "mozallowfullscreen": "",
  8390. "allowfullscreen": "",
  8391. "frameborder": "no",
  8392. "border": "0",
  8393. "scrolling ": "no",
  8394. "style": {
  8395. "cssText": "border:0; width:100%; height:100%;"
  8396. },
  8397. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8398. })
  8399. _box.appendChild(_iframe);
  8400. _box.appendChild(_jie);
  8401. _formdiv = new U.UF.UI.form(
  8402. "思维网格-" + _username,
  8403. _box, {
  8404. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8405. "style": {
  8406. "width": "90%",
  8407. "height": "90%",
  8408. "overflow": 'hidden'
  8409. },
  8410. "onresize": function () { }
  8411. }, {
  8412. closecallback: function () { }
  8413. }, {
  8414. "style": {
  8415. "height": "36px"
  8416. }
  8417. }).form; //创建窗体
  8418. _taskbar = {
  8419. "id": str + _formdiv.id,
  8420. "style": {
  8421. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8422. },
  8423. "name": "思维网格",
  8424. "forms": _formdiv,
  8425. "click": function () {
  8426. U.MD.D.I.openApplication(str, obj, info);
  8427. }
  8428. }
  8429. break;
  8430. case "courseDesign":
  8431. _iframe = $$("iframe", {
  8432. "webkitallowfullscreen": "",
  8433. "mozallowfullscreen": "",
  8434. "allowfullscreen": "",
  8435. "frameborder": "no",
  8436. "border": "0",
  8437. "scrolling ": "no",
  8438. "style": {
  8439. "cssText": "border:0; width:100%; height:100%;"
  8440. },
  8441. "src": "/course-design-vue"
  8442. })
  8443. _box.appendChild(_iframe);
  8444. _box.appendChild(_jie);
  8445. _formdiv = new U.UF.UI.form(
  8446. "项目设计-" + _username,
  8447. _box, {
  8448. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8449. "style": {
  8450. "width": "90%",
  8451. "height": "90%",
  8452. "overflow": 'hidden'
  8453. },
  8454. "onresize": function () { }
  8455. }, {
  8456. closecallback: function () { }
  8457. }, {
  8458. "style": {
  8459. "height": "36px"
  8460. }
  8461. }).form; //创建窗体
  8462. _taskbar = {
  8463. "id": str + _formdiv.id,
  8464. "style": {
  8465. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8466. },
  8467. "name": "项目设计",
  8468. "forms": _formdiv,
  8469. "click": function () {
  8470. U.MD.D.I.openApplication(str, obj, info);
  8471. }
  8472. }
  8473. break;
  8474. }
  8475. const script1 = document.createElement("script");
  8476. script1.type = "text/javascript";
  8477. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8478. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8479. const script2 = document.createElement("script");
  8480. script2.type = "text/javascript";
  8481. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8482. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8483. const script3 = document.createElement("script");
  8484. script3.type = "text/javascript";
  8485. script3.charset = "UTF-8";
  8486. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8487. const script4 = document.createElement("script");
  8488. script4.type = "text/javascript";
  8489. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8490. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8491. if (_iframe) {
  8492. if (str == 'doc') {
  8493. _iframe = _formdiv.querySelector('iframe')
  8494. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8495. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8496. _iframe.contentWindow.document.body.appendChild(script1);
  8497. _iframe.contentWindow.document.body.appendChild(script2);
  8498. // _iframe.contentWindow.document.body.appendChild(script3);
  8499. _iframe.contentWindow.document.body.appendChild(script4);
  8500. })
  8501. if (onloadListener) {
  8502. _iframe.contentDocument.location.reload()
  8503. } else {
  8504. _iframe.contentDocument.location.reload()
  8505. }
  8506. } else if (str == 'courseDesign') {
  8507. U.UF.DL.iframeLoad(_iframe, function () {
  8508. // _iframe.contentWindow.U.MD.O.W.load();
  8509. // _iframe.contentWindow.document.body.appendChild(script1);
  8510. _iframe.contentWindow.document.body.appendChild(script2);
  8511. _iframe.contentWindow.document.body.appendChild(script4);
  8512. })
  8513. } else if (str == 'mind') {
  8514. _iframe = _formdiv.querySelector('iframe')
  8515. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8516. //
  8517. _iframe.contentWindow.document.body.appendChild(script1);
  8518. _iframe.contentWindow.document.body.appendChild(script2);
  8519. _iframe.contentWindow.document.body.appendChild(script4);
  8520. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8521. })
  8522. if (onloadListener) {
  8523. _iframe.contentDocument.location.reload()
  8524. } else {
  8525. _iframe.contentDocument.location.reload()
  8526. }
  8527. } else if (str == 'whiteboard') {
  8528. _iframe = _formdiv.querySelector('iframe')
  8529. let onloadListener = _iframe.onload = () => {
  8530. _iframe.contentWindow.document.body.appendChild(script1);
  8531. _iframe.contentWindow.document.body.appendChild(script2);
  8532. _iframe.contentWindow.document.body.appendChild(script4);
  8533. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8534. };
  8535. // if (onloadListener) {
  8536. // try {
  8537. // _iframe.src += "?cocorobo="+new Date().getTime()
  8538. // _iframe.contentWindow.document.location.reload()
  8539. // } catch (error) {
  8540. // }
  8541. // } else {
  8542. // _iframe.contentDocument.location.reload()
  8543. // }
  8544. } else {
  8545. _iframe.onload = () => {
  8546. _iframe.contentWindow.document.body.appendChild(script1);
  8547. _iframe.contentWindow.document.body.appendChild(script2);
  8548. // _iframe.contentWindow.document.body.appendChild(script3);
  8549. _iframe.contentWindow.document.body.appendChild(script4);
  8550. };
  8551. }
  8552. _jie.onclick = async () => {
  8553. let text = ''
  8554. if (aTool == 1) {
  8555. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8556. } else if (aTool == 6) {
  8557. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8558. } else if (aTool == 3) {
  8559. text = await U.MD.D.I.getEditorContent(_iframe);
  8560. }
  8561. _loading.style.display = 'flex'
  8562. console.log(_loading);
  8563. var _ajs = _iframe.contentWindow.document.createElement("script");
  8564. _ajs.type = "text/javascript";
  8565. _ajs.innerHTML =
  8566. // 'console.log(' + _loading + ');\n' +
  8567. 'var _js = document.createElement("script");\n' +
  8568. '_js.type="text/javascript";\n' +
  8569. '_js.charset="UTF-8";\n' +
  8570. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8571. "_js.onload = function(){\n" +
  8572. ' var a = document.getElementsByTagName("img")\n' +
  8573. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8574. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8575. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8576. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8577. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8578. "beforeUpload_shishi(file," +
  8579. "'" +
  8580. _userid +
  8581. "'" +
  8582. ", " +
  8583. "'" +
  8584. _cid +
  8585. "'" +
  8586. ", " +
  8587. "'" +
  8588. _stage +
  8589. "'" +
  8590. ", " +
  8591. "'" +
  8592. _task +
  8593. "'" +
  8594. ", " +
  8595. "'" +
  8596. _tool +
  8597. "'" +
  8598. ", " +
  8599. "'" +
  8600. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8601. "'" +
  8602. ", " +
  8603. "'" +
  8604. aTool +
  8605. "'" +
  8606. ", " +
  8607. "`" +
  8608. text +
  8609. "`" +
  8610. ")\n" +
  8611. " });\n" +
  8612. "}\n" +
  8613. "document.head.appendChild(_js);\n";
  8614. _iframe.contentWindow.document.head.appendChild(_ajs);
  8615. }
  8616. }
  8617. }
  8618. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8619. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8620. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8621. _userid = student.userid, //登录用户id
  8622. _username = student.student //用户名字
  8623. let _iframe;
  8624. let _cid = cid,
  8625. _stage = stage,
  8626. _task = task,
  8627. _tool = tool;
  8628. var _jie = $$("div", {
  8629. "style": {
  8630. "position": "absolute",
  8631. "bottom": "50px",
  8632. "right": "50px",
  8633. "zIndex": "9999",
  8634. "backgroundColor": "#2268bc",
  8635. "color": "#fff",
  8636. "padding": "12px 20px",
  8637. "cursor": "pointer",
  8638. "borderRadius": "4px",
  8639. },
  8640. "innerHTML": "提交作业"
  8641. })
  8642. let aTool = ''
  8643. let _loading = document.createElement('div')
  8644. _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;"
  8645. // _loading.id = "";
  8646. let _lchild = document.createElement('div')
  8647. let _limg = document.createElement('img')
  8648. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8649. _limg.style = "width: 26px;margin-right: 10px;"
  8650. _lchild.appendChild(_limg)
  8651. let _lspan = document.createElement('span')
  8652. _lspan.innerHTML = "上传中..."
  8653. _lchild.appendChild(_lspan)
  8654. _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%);"
  8655. _loading.appendChild(_lchild)
  8656. var _box = $$('div', {
  8657. "style": {
  8658. "position": "relative",
  8659. "width": "100%",
  8660. "height": "100%",
  8661. },
  8662. })
  8663. _box.appendChild(_loading)
  8664. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8665. switch (str) {
  8666. case "whiteboard":
  8667. aTool = 1;
  8668. _iframe = $$("iframe", {
  8669. "frameborder": "no",
  8670. "border": "0",
  8671. "scrolling ": "no",
  8672. "style": {
  8673. "cssText": "border:0;width:100%;height:100%"
  8674. },
  8675. "src": "https://beta.iwb.cocorobo.cn/"
  8676. })
  8677. _box.appendChild(_iframe);
  8678. _box.appendChild(_jie);
  8679. _formdiv = new U.UF.UI.form(
  8680. "电子白板-" + _username,
  8681. _box, {
  8682. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8683. "style": {
  8684. "width": "90%",
  8685. "height": "90%",
  8686. "overflow": 'hidden'
  8687. },
  8688. "onresize": function () { }
  8689. }, {
  8690. closecallback: function () { }
  8691. }, {
  8692. "style": {
  8693. "height": "36px"
  8694. }
  8695. }).form; //创建窗体
  8696. _taskbar = {
  8697. "id": str + _formdiv.id,
  8698. "style": {
  8699. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8700. },
  8701. "name": "电子白板",
  8702. "forms": _formdiv,
  8703. "click": function () {
  8704. U.MD.D.I.openApplication(str, obj, info);
  8705. }
  8706. }
  8707. break;
  8708. case "mind":
  8709. aTool = 3;
  8710. _iframe = $$("iframe", {
  8711. "frameborder": "no",
  8712. "border": "0",
  8713. "scrolling ": "no",
  8714. "style": {
  8715. "cssText": "border:0;width:100%;height:100%"
  8716. },
  8717. "src": "/kityminder-editor/dist/index.html"
  8718. })
  8719. _box.appendChild(_iframe);
  8720. _box.appendChild(_jie);
  8721. _formdiv = new U.UF.UI.form(
  8722. "思维导图-" + _username,
  8723. _box, { //"/jsmind/example/demo.html"
  8724. "id": "mind" + cid + stage + task + tool + _userid,
  8725. "style": {
  8726. "width": "90%",
  8727. "height": "90%",
  8728. "overflow": 'hidden'
  8729. },
  8730. "onresize": function () { }
  8731. }, {
  8732. closecallback: function () { }
  8733. }, {
  8734. "style": {
  8735. "height": "36px"
  8736. }
  8737. }).form; //创建窗体
  8738. _taskbar = {
  8739. "id": str + _formdiv.id,
  8740. "style": {
  8741. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8742. },
  8743. "name": "思维导图",
  8744. "forms": _formdiv,
  8745. "click": function () {
  8746. U.MD.D.I.openApplication(str, obj, info);
  8747. }
  8748. }
  8749. break;
  8750. case "MindMap":
  8751. aTool = 3;
  8752. _iframe = $$("iframe", {
  8753. "frameborder": "no",
  8754. "border": "0",
  8755. "scrolling ": "no",
  8756. "style": {
  8757. "cssText": "border:0;width:100%;height:100%"
  8758. },
  8759. "src": "//cloud.cocorobo.cn/mind/"
  8760. })
  8761. _box.appendChild(_iframe);
  8762. _box.appendChild(_jie);
  8763. _formdiv = new U.UF.UI.form(
  8764. "思维导图-" + _username,
  8765. _box, { //"/jsmind/example/demo.html"
  8766. "id": "mind" + cid + stage + task + tool + _userid,
  8767. "style": {
  8768. "width": "90%",
  8769. "height": "90%",
  8770. "overflow": 'hidden'
  8771. },
  8772. "onresize": function () { }
  8773. }, {
  8774. closecallback: function () { }
  8775. }, {
  8776. "style": {
  8777. "height": "36px"
  8778. }
  8779. }).form; //创建窗体
  8780. _taskbar = {
  8781. "id": str + _formdiv.id,
  8782. "style": {
  8783. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8784. },
  8785. "name": "思维导图",
  8786. "forms": _formdiv,
  8787. "click": function () {
  8788. U.MD.D.I.openApplication(str, obj, info);
  8789. }
  8790. }
  8791. break;
  8792. case "doc":
  8793. aTool = 6;
  8794. _iframe = $$("iframe", {
  8795. "frameborder": "no",
  8796. "border": "0",
  8797. "scrolling ": "no",
  8798. "style": {
  8799. "cssText": "border:0;width:100%;height:100%"
  8800. },
  8801. "src": "/Office/Word/WordEditArea.htm"
  8802. })
  8803. _box.appendChild(_iframe);
  8804. _box.appendChild(_jie);
  8805. _formdiv = new U.UF.UI.form(
  8806. "协同文档-" + _username,
  8807. _box, {
  8808. "id": "doc" + cid + stage + task + tool + _userid,
  8809. "style": {
  8810. "width": "90%",
  8811. "height": "90%",
  8812. "overflow": 'hidden'
  8813. },
  8814. "onresize": function () { }
  8815. }, {
  8816. closecallback: function () { }
  8817. }, {
  8818. "style": {
  8819. "height": "36px"
  8820. }
  8821. }).form; //创建窗体
  8822. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8823. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8824. })
  8825. _taskbar = {
  8826. "id": str + _formdiv.id,
  8827. "style": {
  8828. "backgroundImage": "url(/img/icon/doc.png)"
  8829. },
  8830. "name": "协同文档",
  8831. "forms": _formdiv,
  8832. "click": function () {
  8833. U.MD.D.I.openApplication(str, obj, info);
  8834. }
  8835. }
  8836. break;
  8837. case "mindNetwork": //好友打开
  8838. aTool = 7;
  8839. _iframe = $$("iframe", {
  8840. "webkitallowfullscreen": "",
  8841. "mozallowfullscreen": "",
  8842. "allowfullscreen": "",
  8843. "frameborder": "no",
  8844. "border": "0",
  8845. "scrolling ": "no",
  8846. "style": {
  8847. "cssText": "border:0; width:100%; height:100%;"
  8848. },
  8849. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8850. })
  8851. _box.appendChild(_iframe);
  8852. _box.appendChild(_jie);
  8853. _formdiv = new U.UF.UI.form(
  8854. "思维网格-" + _username,
  8855. _box, {
  8856. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8857. "style": {
  8858. "width": "90%",
  8859. "height": "90%",
  8860. "overflow": 'hidden'
  8861. },
  8862. "onresize": function () { }
  8863. }, {
  8864. closecallback: function () { }
  8865. }, {
  8866. "style": {
  8867. "height": "36px"
  8868. }
  8869. }).form; //创建窗体
  8870. _taskbar = {
  8871. "id": str + _formdiv.id,
  8872. "style": {
  8873. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8874. },
  8875. "name": "思维网格",
  8876. "forms": _formdiv,
  8877. "click": function () {
  8878. U.MD.D.I.openApplication(str, obj, info);
  8879. }
  8880. }
  8881. break;
  8882. case "courseDesign":
  8883. _iframe = $$("iframe", {
  8884. "webkitallowfullscreen": "",
  8885. "mozallowfullscreen": "",
  8886. "allowfullscreen": "",
  8887. "frameborder": "no",
  8888. "border": "0",
  8889. "scrolling ": "no",
  8890. "style": {
  8891. "cssText": "border:0; width:100%; height:100%;"
  8892. },
  8893. "src": "/course-design-vue"
  8894. })
  8895. _box.appendChild(_iframe);
  8896. _box.appendChild(_jie);
  8897. _formdiv = new U.UF.UI.form(
  8898. "项目设计-" + _username,
  8899. _box, {
  8900. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8901. "style": {
  8902. "width": "90%",
  8903. "height": "90%",
  8904. "overflow": 'hidden'
  8905. },
  8906. "onresize": function () { }
  8907. }, {
  8908. closecallback: function () { }
  8909. }, {
  8910. "style": {
  8911. "height": "36px"
  8912. }
  8913. }).form; //创建窗体
  8914. _taskbar = {
  8915. "id": str + _formdiv.id,
  8916. "style": {
  8917. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8918. },
  8919. "name": "项目设计",
  8920. "forms": _formdiv,
  8921. "click": function () {
  8922. U.MD.D.I.openApplication(str, obj, info);
  8923. }
  8924. }
  8925. break;
  8926. }
  8927. const script1 = document.createElement("script");
  8928. script1.type = "text/javascript";
  8929. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8930. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8931. const script2 = document.createElement("script");
  8932. script2.type = "text/javascript";
  8933. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8934. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8935. const script3 = document.createElement("script");
  8936. script3.type = "text/javascript";
  8937. script3.charset = "UTF-8";
  8938. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8939. const script4 = document.createElement("script");
  8940. script4.type = "text/javascript";
  8941. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8942. script4.src = window.origin + "/js/Common/jietu2E.js";
  8943. if (_iframe) {
  8944. if (str == 'doc') {
  8945. _iframe = _formdiv.querySelector('iframe')
  8946. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8947. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8948. _iframe.contentWindow.document.body.appendChild(script1);
  8949. _iframe.contentWindow.document.body.appendChild(script2);
  8950. // _iframe.contentWindow.document.body.appendChild(script3);
  8951. _iframe.contentWindow.document.body.appendChild(script4);
  8952. })
  8953. if (onloadListener) {
  8954. _iframe.contentDocument.location.reload()
  8955. } else {
  8956. _iframe.contentDocument.location.reload()
  8957. }
  8958. } else if (str == 'courseDesign') {
  8959. U.UF.DL.iframeLoad(_iframe, function () {
  8960. // _iframe.contentWindow.U.MD.O.W.load();
  8961. // _iframe.contentWindow.document.body.appendChild(script1);
  8962. _iframe.contentWindow.document.body.appendChild(script2);
  8963. _iframe.contentWindow.document.body.appendChild(script4);
  8964. })
  8965. } else if (str == 'mind') {
  8966. _iframe = _formdiv.querySelector('iframe')
  8967. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8968. //
  8969. _iframe.contentWindow.document.body.appendChild(script1);
  8970. _iframe.contentWindow.document.body.appendChild(script2);
  8971. _iframe.contentWindow.document.body.appendChild(script4);
  8972. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8973. })
  8974. if (onloadListener) {
  8975. _iframe.contentDocument.location.reload()
  8976. } else {
  8977. _iframe.contentDocument.location.reload()
  8978. }
  8979. } else if (str == 'whiteboard') {
  8980. _iframe = _formdiv.querySelector('iframe')
  8981. let onloadListener = _iframe.onload = () => {
  8982. _iframe.contentWindow.document.body.appendChild(script1);
  8983. _iframe.contentWindow.document.body.appendChild(script2);
  8984. _iframe.contentWindow.document.body.appendChild(script4);
  8985. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8986. };
  8987. // if (onloadListener) {
  8988. // try {
  8989. // _iframe.src += "?cocorobo="+new Date().getTime()
  8990. // _iframe.contentWindow.document.location.reload()
  8991. // } catch (error) {
  8992. // }
  8993. // } else {
  8994. // _iframe.contentDocument.location.reload()
  8995. // }
  8996. } else {
  8997. _iframe.onload = () => {
  8998. _iframe.contentWindow.document.body.appendChild(script1);
  8999. _iframe.contentWindow.document.body.appendChild(script2);
  9000. // _iframe.contentWindow.document.body.appendChild(script3);
  9001. _iframe.contentWindow.document.body.appendChild(script4);
  9002. };
  9003. }
  9004. _jie.onclick = async () => {
  9005. let text = ''
  9006. if (aTool == 1) {
  9007. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9008. } else if (aTool == 6) {
  9009. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9010. } else if (aTool == 3) {
  9011. text = await U.MD.D.I.getEditorContent(_iframe);
  9012. }
  9013. _loading.style.display = 'flex'
  9014. console.log(_loading);
  9015. var _ajs = _iframe.contentWindow.document.createElement("script");
  9016. _ajs.type = "text/javascript";
  9017. _ajs.innerHTML =
  9018. // 'console.log(' + _loading + ');\n' +
  9019. 'var _js = document.createElement("script");\n' +
  9020. '_js.type="text/javascript";\n' +
  9021. '_js.charset="UTF-8";\n' +
  9022. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9023. "_js.onload = function(){\n" +
  9024. ' var a = document.getElementsByTagName("img")\n' +
  9025. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9026. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9027. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9028. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9029. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9030. "beforeUpload_shishi(file," +
  9031. "'" +
  9032. _userid +
  9033. "'" +
  9034. ", " +
  9035. "'" +
  9036. _cid +
  9037. "'" +
  9038. ", " +
  9039. "'" +
  9040. _stage +
  9041. "'" +
  9042. ", " +
  9043. "'" +
  9044. _task +
  9045. "'" +
  9046. ", " +
  9047. "'" +
  9048. _tool +
  9049. "'" +
  9050. ", " +
  9051. "'" +
  9052. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9053. "'" +
  9054. ", " +
  9055. "'" +
  9056. aTool +
  9057. "'" +
  9058. ", " +
  9059. "`" +
  9060. text +
  9061. "`" +
  9062. ")\n" +
  9063. " });\n" +
  9064. "}\n" +
  9065. "document.head.appendChild(_js);\n";
  9066. _iframe.contentWindow.document.head.appendChild(_ajs);
  9067. }
  9068. }
  9069. }
  9070. U.MD.D.I.getEditorContent = function (iframe) {
  9071. return new Promise((resolve, reject) => {
  9072. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9073. console.log(content);
  9074. resolve(content)
  9075. });
  9076. });
  9077. }
  9078. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9079. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9080. // if (res.value[0].length > 0) {
  9081. // // resolve(res.value[0][0].text);
  9082. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9083. // $(fileInput).val('');
  9084. // });
  9085. // }
  9086. // }, [], { "type": "GET", "withCredentials": true });
  9087. var xmlhttp;
  9088. var Mac, Sn, DeviceId
  9089. if (window.XMLHttpRequest) {
  9090. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9091. xmlhttp = new XMLHttpRequest();
  9092. } else {
  9093. // IE6, IE5 浏览器执行代码
  9094. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9095. }
  9096. xmlhttp.onreadystatechange = function () {
  9097. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9098. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9099. // resolve(res.value[0][0].text);
  9100. if (type == '2') {
  9101. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9102. } else if (type == '3') {
  9103. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9104. }
  9105. } else {
  9106. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9107. }
  9108. }
  9109. }
  9110. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9111. xmlhttp.send();
  9112. }
  9113. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9114. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9115. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9116. _userinfo = US.userInfo, //登录用户信息
  9117. _userid = US.userInfo.userid //登录用户id
  9118. let _iframe;
  9119. let _cid = cid,
  9120. _stage = stage,
  9121. _task = task,
  9122. _tool = tool;
  9123. var _jie = $$("div", {
  9124. "style": {
  9125. "position": "absolute",
  9126. "bottom": "50px",
  9127. "right": "50px",
  9128. "zIndex": "9999",
  9129. "backgroundColor": "#2268bc",
  9130. "color": "#fff",
  9131. "padding": "12px 20px",
  9132. "cursor": "pointer",
  9133. "borderRadius": "4px",
  9134. },
  9135. "innerHTML": "确认并提交"
  9136. })
  9137. let aTool = ''
  9138. let _loading = document.createElement('div')
  9139. _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;"
  9140. // _loading.id = "";
  9141. let _lchild = document.createElement('div')
  9142. let _limg = document.createElement('img')
  9143. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9144. _limg.style = "width: 26px;margin-right: 10px;"
  9145. _lchild.appendChild(_limg)
  9146. let _lspan = document.createElement('span')
  9147. _lspan.innerHTML = "上传中..."
  9148. _lchild.appendChild(_lspan)
  9149. _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%);"
  9150. _loading.appendChild(_lchild)
  9151. var _box = $$('div', {
  9152. "style": {
  9153. "position": "relative",
  9154. "width": "100%",
  9155. "height": "100%",
  9156. },
  9157. })
  9158. _box.appendChild(_loading)
  9159. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9160. switch (str) {
  9161. case "whiteboard":
  9162. aTool = 1;
  9163. _iframe = $$("iframe", {
  9164. "frameborder": "no",
  9165. "border": "0",
  9166. "scrolling ": "no",
  9167. "style": {
  9168. "cssText": "border:0;width:100%;height:100%"
  9169. },
  9170. "src": "https://beta.iwb.cocorobo.cn/"
  9171. })
  9172. _box.appendChild(_iframe);
  9173. _box.appendChild(_jie);
  9174. _formdiv = new U.UF.UI.form(
  9175. "电子白板",
  9176. _box, {
  9177. "id": "whiteboards" + cid + stage + task + tool,
  9178. "style": {
  9179. "width": "90%",
  9180. "height": "90%",
  9181. "overflow": 'hidden'
  9182. },
  9183. "onresize": function () { }
  9184. }, {
  9185. closecallback: function () { }
  9186. }, {
  9187. "style": {
  9188. "height": "36px"
  9189. }
  9190. }).form; //创建窗体
  9191. _taskbar = {
  9192. "id": str + _formdiv.id,
  9193. "style": {
  9194. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9195. },
  9196. "name": "电子白板",
  9197. "forms": _formdiv,
  9198. "click": function () {
  9199. U.MD.D.I.openApplication(str, obj, info);
  9200. }
  9201. }
  9202. break;
  9203. case "mind":
  9204. aTool = 3;
  9205. _iframe = $$("iframe", {
  9206. "frameborder": "no",
  9207. "border": "0",
  9208. "scrolling ": "no",
  9209. "style": {
  9210. "cssText": "border:0;width:100%;height:100%"
  9211. },
  9212. "src": "/kityminder-editor/dist/index.html"
  9213. });
  9214. _box.appendChild(_iframe);
  9215. _box.appendChild(_jie);
  9216. _formdiv = new U.UF.UI.form(
  9217. "思维导图",
  9218. _box, { //"/jsmind/example/demo.html"
  9219. "id": "minds" + cid + stage + task + tool,
  9220. "style": {
  9221. "width": "90%",
  9222. "height": "90%",
  9223. "overflow": 'hidden'
  9224. },
  9225. "onresize": function () { }
  9226. }, {
  9227. closecallback: function () { }
  9228. }, {
  9229. "style": {
  9230. "height": "36px"
  9231. }
  9232. }).form; //创建窗体
  9233. _taskbar = {
  9234. "id": str + _formdiv.id,
  9235. "style": {
  9236. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9237. },
  9238. "name": "思维导图",
  9239. "forms": _formdiv,
  9240. "click": function () {
  9241. U.MD.D.I.openApplication(str, obj, info);
  9242. }
  9243. }
  9244. break;
  9245. case "doc":
  9246. aTool = 6;
  9247. _iframe = $$("iframe", {
  9248. "frameborder": "no",
  9249. "border": "0",
  9250. "scrolling ": "no",
  9251. "style": {
  9252. "cssText": "border:0;width:100%;height:100%"
  9253. },
  9254. "src": "/Office/Word/WordEditArea.htm"
  9255. })
  9256. _box.appendChild(_iframe);
  9257. _box.appendChild(_jie);
  9258. _formdiv = new U.UF.UI.form(
  9259. "协同文档",
  9260. _box, {
  9261. "id": "docs" + cid + stage + task + tool,
  9262. "style": {
  9263. "width": "90%",
  9264. "height": "90%",
  9265. "overflow": 'hidden'
  9266. },
  9267. "onresize": function () { }
  9268. }, {
  9269. closecallback: function () { }
  9270. }, {
  9271. "style": {
  9272. "height": "36px"
  9273. }
  9274. }).form; //创建窗体
  9275. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9276. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9277. })
  9278. _taskbar = {
  9279. "id": str + _formdiv.id,
  9280. "style": {
  9281. "backgroundImage": "url(/img/icon/doc.png)"
  9282. },
  9283. "name": "协同文档",
  9284. "forms": _formdiv,
  9285. "click": function () {
  9286. U.MD.D.I.openApplication(str, obj, info);
  9287. }
  9288. }
  9289. break;
  9290. }
  9291. const script1 = document.createElement("script");
  9292. script1.type = "text/javascript";
  9293. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9294. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9295. const script2 = document.createElement("script");
  9296. script2.type = "text/javascript";
  9297. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9298. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9299. const script3 = document.createElement("script");
  9300. script3.type = "text/javascript";
  9301. script3.charset = "UTF-8";
  9302. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9303. const script4 = document.createElement("script");
  9304. script4.type = "text/javascript";
  9305. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9306. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9307. if (_iframe) {
  9308. if (str == 'doc') {
  9309. _iframe = _formdiv.querySelector('iframe')
  9310. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9311. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9312. _iframe.contentWindow.document.body.appendChild(script1);
  9313. _iframe.contentWindow.document.body.appendChild(script2);
  9314. // _iframe.contentWindow.document.body.appendChild(script3);
  9315. _iframe.contentWindow.document.body.appendChild(script4);
  9316. })
  9317. if (onloadListener) {
  9318. _iframe.contentDocument.location.reload()
  9319. } else {
  9320. _iframe.contentDocument.location.reload()
  9321. }
  9322. } else if (str == 'mind') {
  9323. _iframe = _formdiv.querySelector('iframe')
  9324. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9325. _iframe.contentWindow.document.body.appendChild(script1);
  9326. _iframe.contentWindow.document.body.appendChild(script2);
  9327. _iframe.contentWindow.document.body.appendChild(script4);
  9328. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9329. })
  9330. if (onloadListener) {
  9331. _iframe.contentDocument.location.reload()
  9332. } else {
  9333. _iframe.contentDocument.location.reload()
  9334. }
  9335. } else {
  9336. _iframe.onload = () => {
  9337. _iframe.contentWindow.document.body.appendChild(script1);
  9338. _iframe.contentWindow.document.body.appendChild(script2);
  9339. // _iframe.contentWindow.document.body.appendChild(script3);
  9340. _iframe.contentWindow.document.body.appendChild(script4);
  9341. };
  9342. }
  9343. _jie.onclick = async () => {
  9344. let text = ''
  9345. if (aTool == 6) {
  9346. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9347. } else if (aTool == 3) {
  9348. text = await U.MD.D.I.getEditorContent(_iframe);
  9349. }
  9350. _loading.style.display = 'flex'
  9351. console.log(_loading);
  9352. var _ajs = _iframe.contentWindow.document.createElement("script");
  9353. _ajs.type = "text/javascript";
  9354. _ajs.innerHTML =
  9355. // 'console.log(' + _loading + ');\n' +
  9356. 'var _js = document.createElement("script");\n' +
  9357. '_js.type="text/javascript";\n' +
  9358. '_js.charset="UTF-8";\n' +
  9359. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9360. "_js.onload = function(){\n" +
  9361. ' var a = document.getElementsByTagName("img")\n' +
  9362. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9363. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9364. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9365. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9366. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9367. "beforeUpload_shishi(file," +
  9368. "'" +
  9369. _userid +
  9370. "'" +
  9371. ", " +
  9372. "'" +
  9373. _cid +
  9374. "'" +
  9375. ", " +
  9376. "'" +
  9377. _stage +
  9378. "'" +
  9379. ", " +
  9380. "'" +
  9381. _task +
  9382. "'" +
  9383. ", " +
  9384. "'" +
  9385. _tool +
  9386. "'" +
  9387. ", " +
  9388. "'" +
  9389. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9390. "'" +
  9391. ", " +
  9392. "'" +
  9393. aTool +
  9394. "'" +
  9395. ", " +
  9396. "`" +
  9397. text +
  9398. "`" +
  9399. ")\n" +
  9400. " });\n" +
  9401. "}\n" +
  9402. "document.head.appendChild(_js);\n";
  9403. _iframe.contentWindow.document.head.appendChild(_ajs);
  9404. }
  9405. }
  9406. //U.MD.D.I.openClick(str);
  9407. //如果有任务栏信息
  9408. // if (_taskbar) {
  9409. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9410. // }
  9411. }
  9412. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9413. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9414. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9415. _userinfo = US.userInfo, //登录用户信息
  9416. _userid = US.userInfo.userid //登录用户id
  9417. let _iframe;
  9418. let _cid = cid,
  9419. _stage = stage,
  9420. _task = task,
  9421. _tool = tool;
  9422. var _jie = $$("div", {
  9423. "style": {
  9424. "position": "absolute",
  9425. "bottom": "50px",
  9426. "right": "50px",
  9427. "zIndex": "9999",
  9428. "backgroundColor": "#2268bc",
  9429. "color": "#fff",
  9430. "padding": "12px 20px",
  9431. "cursor": "pointer",
  9432. "borderRadius": "4px",
  9433. },
  9434. "innerHTML": "确认并提交"
  9435. })
  9436. let aTool = ''
  9437. let _loading = document.createElement('div')
  9438. _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;"
  9439. // _loading.id = "";
  9440. let _lchild = document.createElement('div')
  9441. let _limg = document.createElement('img')
  9442. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9443. _limg.style = "width: 26px;margin-right: 10px;"
  9444. _lchild.appendChild(_limg)
  9445. let _lspan = document.createElement('span')
  9446. _lspan.innerHTML = "上传中..."
  9447. _lchild.appendChild(_lspan)
  9448. _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%);"
  9449. _loading.appendChild(_lchild)
  9450. var _box = $$('div', {
  9451. "style": {
  9452. "position": "relative",
  9453. "width": "100%",
  9454. "height": "100%",
  9455. },
  9456. })
  9457. _box.appendChild(_loading)
  9458. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9459. switch (str) {
  9460. case "whiteboard":
  9461. aTool = 1;
  9462. _iframe = $$("iframe", {
  9463. "frameborder": "no",
  9464. "border": "0",
  9465. "scrolling ": "no",
  9466. "style": {
  9467. "cssText": "border:0;width:100%;height:100%"
  9468. },
  9469. "src": "https://beta.iwb.cocorobo.cn/"
  9470. })
  9471. _box.appendChild(_iframe);
  9472. _box.appendChild(_jie);
  9473. _formdiv = new U.UF.UI.form(
  9474. "电子白板",
  9475. _box, {
  9476. "id": "whiteboards" + cid + stage + task + tool,
  9477. "style": {
  9478. "width": "90%",
  9479. "height": "90%",
  9480. "overflow": 'hidden'
  9481. },
  9482. "onresize": function () { }
  9483. }, {
  9484. closecallback: function () { }
  9485. }, {
  9486. "style": {
  9487. "height": "36px"
  9488. }
  9489. }).form; //创建窗体
  9490. _taskbar = {
  9491. "id": str + _formdiv.id,
  9492. "style": {
  9493. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9494. },
  9495. "name": "电子白板",
  9496. "forms": _formdiv,
  9497. "click": function () {
  9498. U.MD.D.I.openApplication(str, obj, info);
  9499. }
  9500. }
  9501. break;
  9502. case "mind":
  9503. aTool = 3;
  9504. _iframe = $$("iframe", {
  9505. "frameborder": "no",
  9506. "border": "0",
  9507. "scrolling ": "no",
  9508. "style": {
  9509. "cssText": "border:0;width:100%;height:100%"
  9510. },
  9511. "src": "/kityminder-editor/dist/index.html"
  9512. });
  9513. _box.appendChild(_iframe);
  9514. _box.appendChild(_jie);
  9515. _formdiv = new U.UF.UI.form(
  9516. "思维导图",
  9517. _box, { //"/jsmind/example/demo.html"
  9518. "id": "minds" + cid + stage + task + tool,
  9519. "style": {
  9520. "width": "90%",
  9521. "height": "90%",
  9522. "overflow": 'hidden'
  9523. },
  9524. "onresize": function () { }
  9525. }, {
  9526. closecallback: function () { }
  9527. }, {
  9528. "style": {
  9529. "height": "36px"
  9530. }
  9531. }).form; //创建窗体
  9532. _taskbar = {
  9533. "id": str + _formdiv.id,
  9534. "style": {
  9535. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9536. },
  9537. "name": "思维导图",
  9538. "forms": _formdiv,
  9539. "click": function () {
  9540. U.MD.D.I.openApplication(str, obj, info);
  9541. }
  9542. }
  9543. break;
  9544. case "doc":
  9545. aTool = 6;
  9546. _iframe = $$("iframe", {
  9547. "frameborder": "no",
  9548. "border": "0",
  9549. "scrolling ": "no",
  9550. "style": {
  9551. "cssText": "border:0;width:100%;height:100%"
  9552. },
  9553. "src": "/Office/Word/WordEditArea.htm"
  9554. })
  9555. _box.appendChild(_iframe);
  9556. _box.appendChild(_jie);
  9557. _formdiv = new U.UF.UI.form(
  9558. "协同文档",
  9559. _box, {
  9560. "id": "docs" + cid + stage + task + tool,
  9561. "style": {
  9562. "width": "90%",
  9563. "height": "90%",
  9564. "overflow": 'hidden'
  9565. },
  9566. "onresize": function () { }
  9567. }, {
  9568. closecallback: function () { }
  9569. }, {
  9570. "style": {
  9571. "height": "36px"
  9572. }
  9573. }).form; //创建窗体
  9574. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9575. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9576. })
  9577. _taskbar = {
  9578. "id": str + _formdiv.id,
  9579. "style": {
  9580. "backgroundImage": "url(/img/icon/doc.png)"
  9581. },
  9582. "name": "协同文档",
  9583. "forms": _formdiv,
  9584. "click": function () {
  9585. U.MD.D.I.openApplication(str, obj, info);
  9586. }
  9587. }
  9588. break;
  9589. }
  9590. const script1 = document.createElement("script");
  9591. script1.type = "text/javascript";
  9592. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9593. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9594. const script2 = document.createElement("script");
  9595. script2.type = "text/javascript";
  9596. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9597. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9598. const script3 = document.createElement("script");
  9599. script3.type = "text/javascript";
  9600. script3.charset = "UTF-8";
  9601. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9602. const script4 = document.createElement("script");
  9603. script4.type = "text/javascript";
  9604. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9605. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9606. if (_iframe) {
  9607. if (str == 'doc') {
  9608. _iframe = _formdiv.querySelector('iframe')
  9609. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9610. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9611. _iframe.contentWindow.document.body.appendChild(script1);
  9612. _iframe.contentWindow.document.body.appendChild(script2);
  9613. // _iframe.contentWindow.document.body.appendChild(script3);
  9614. _iframe.contentWindow.document.body.appendChild(script4);
  9615. })
  9616. if (onloadListener) {
  9617. _iframe.contentDocument.location.reload()
  9618. } else {
  9619. _iframe.contentDocument.location.reload()
  9620. }
  9621. } else if (str == 'mind') {
  9622. _iframe = _formdiv.querySelector('iframe')
  9623. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9624. _iframe.contentWindow.document.body.appendChild(script1);
  9625. _iframe.contentWindow.document.body.appendChild(script2);
  9626. _iframe.contentWindow.document.body.appendChild(script4);
  9627. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9628. })
  9629. if (onloadListener) {
  9630. _iframe.contentDocument.location.reload()
  9631. } else {
  9632. _iframe.contentDocument.location.reload()
  9633. }
  9634. } else {
  9635. _iframe.onload = () => {
  9636. _iframe.contentWindow.document.body.appendChild(script1);
  9637. _iframe.contentWindow.document.body.appendChild(script2);
  9638. // _iframe.contentWindow.document.body.appendChild(script3);
  9639. _iframe.contentWindow.document.body.appendChild(script4);
  9640. };
  9641. }
  9642. _jie.onclick = async () => {
  9643. let text = ''
  9644. if (aTool == 6) {
  9645. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9646. } else if (aTool == 3) {
  9647. text = await U.MD.D.I.getEditorContent(_iframe);
  9648. }
  9649. _loading.style.display = 'flex'
  9650. console.log(_loading);
  9651. var _ajs = _iframe.contentWindow.document.createElement("script");
  9652. _ajs.type = "text/javascript";
  9653. _ajs.innerHTML =
  9654. // 'console.log(' + _loading + ');\n' +
  9655. 'var _js = document.createElement("script");\n' +
  9656. '_js.type="text/javascript";\n' +
  9657. '_js.charset="UTF-8";\n' +
  9658. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9659. "_js.onload = function(){\n" +
  9660. ' var a = document.getElementsByTagName("img")\n' +
  9661. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9662. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9663. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9664. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9665. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9666. "beforeUpload_shishi(file," +
  9667. "'" +
  9668. _userid +
  9669. "'" +
  9670. ", " +
  9671. "'" +
  9672. _cid +
  9673. "'" +
  9674. ", " +
  9675. "'" +
  9676. _stage +
  9677. "'" +
  9678. ", " +
  9679. "'" +
  9680. _task +
  9681. "'" +
  9682. ", " +
  9683. "'" +
  9684. _tool +
  9685. "'" +
  9686. ", " +
  9687. "'" +
  9688. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9689. "'" +
  9690. ", " +
  9691. "'" +
  9692. aTool +
  9693. "'" +
  9694. ", " +
  9695. "`" +
  9696. text +
  9697. "`" +
  9698. ")\n" +
  9699. " });\n" +
  9700. "}\n" +
  9701. "document.head.appendChild(_js);\n";
  9702. _iframe.contentWindow.document.head.appendChild(_ajs);
  9703. }
  9704. }
  9705. //U.MD.D.I.openClick(str);
  9706. //如果有任务栏信息
  9707. // if (_taskbar) {
  9708. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9709. // }
  9710. }
  9711. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9712. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9713. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9714. _userinfo = US.userInfo, //登录用户信息
  9715. _userid = US.userInfo.userid //登录用户id
  9716. let _iframe;
  9717. let _cid = cid,
  9718. _stage = stage,
  9719. _task = task,
  9720. _tool = tool;
  9721. var _jie = $$("div", {
  9722. "style": {
  9723. "position": "absolute",
  9724. "bottom": "50px",
  9725. "right": "50px",
  9726. "zIndex": "9999",
  9727. "backgroundColor": "#2268bc",
  9728. "color": "#fff",
  9729. "padding": "12px 20px",
  9730. "cursor": "pointer",
  9731. "borderRadius": "4px",
  9732. },
  9733. "innerHTML": "上传模板"
  9734. })
  9735. let aTool = ''
  9736. let _loading = document.createElement('div')
  9737. _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;"
  9738. // _loading.id = "";
  9739. let _lchild = document.createElement('div')
  9740. let _limg = document.createElement('img')
  9741. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9742. _limg.style = "width: 26px;margin-right: 10px;"
  9743. _lchild.appendChild(_limg)
  9744. let _lspan = document.createElement('span')
  9745. _lspan.innerHTML = "上传中..."
  9746. _lchild.appendChild(_lspan)
  9747. _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%);"
  9748. _loading.appendChild(_lchild)
  9749. var _box = $$('div', {
  9750. "style": {
  9751. "position": "relative",
  9752. "width": "100%",
  9753. "height": "100%",
  9754. },
  9755. })
  9756. _box.appendChild(_loading)
  9757. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9758. switch (str) {
  9759. case "whiteboard":
  9760. aTool = 1;
  9761. _iframe = $$("iframe", {
  9762. "frameborder": "no",
  9763. "border": "0",
  9764. "scrolling ": "no",
  9765. "style": {
  9766. "cssText": "border:0;width:100%;height:100%"
  9767. },
  9768. "src": "https://beta.iwb.cocorobo.cn/"
  9769. })
  9770. _box.appendChild(_iframe);
  9771. _box.appendChild(_jie);
  9772. _formdiv = new U.UF.UI.form(
  9773. "电子白板",
  9774. _box, {
  9775. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9776. "style": {
  9777. "width": "90%",
  9778. "height": "90%",
  9779. "overflow": 'hidden'
  9780. },
  9781. "onresize": function () { }
  9782. }, {
  9783. closecallback: function () { }
  9784. }, {
  9785. "style": {
  9786. "height": "36px"
  9787. }
  9788. }).form; //创建窗体
  9789. _taskbar = {
  9790. "id": str + _formdiv.id,
  9791. "style": {
  9792. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9793. },
  9794. "name": "电子白板",
  9795. "forms": _formdiv,
  9796. "click": function () {
  9797. U.MD.D.I.openApplication(str, obj, info);
  9798. }
  9799. }
  9800. break;
  9801. case "mind":
  9802. aTool = 3;
  9803. _iframe = $$("iframe", {
  9804. "frameborder": "no",
  9805. "border": "0",
  9806. "scrolling ": "no",
  9807. "style": {
  9808. "cssText": "border:0;width:100%;height:100%"
  9809. },
  9810. "src": "/kityminder-editor/dist/index.html"
  9811. });
  9812. _box.appendChild(_iframe);
  9813. _box.appendChild(_jie);
  9814. _formdiv = new U.UF.UI.form(
  9815. "思维导图",
  9816. _box, { //"/jsmind/example/demo.html"
  9817. "id": "minds_Yu" + cid + stage + task + tool,
  9818. "style": {
  9819. "width": "90%",
  9820. "height": "90%",
  9821. "overflow": 'hidden'
  9822. },
  9823. "onresize": function () { }
  9824. }, {
  9825. closecallback: function () { }
  9826. }, {
  9827. "style": {
  9828. "height": "36px"
  9829. }
  9830. }).form; //创建窗体
  9831. _taskbar = {
  9832. "id": str + _formdiv.id,
  9833. "style": {
  9834. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9835. },
  9836. "name": "思维导图",
  9837. "forms": _formdiv,
  9838. "click": function () {
  9839. U.MD.D.I.openApplication(str, obj, info);
  9840. }
  9841. }
  9842. break;
  9843. case "doc":
  9844. aTool = 6;
  9845. _iframe = $$("iframe", {
  9846. "frameborder": "no",
  9847. "border": "0",
  9848. "scrolling ": "no",
  9849. "style": {
  9850. "cssText": "border:0;width:100%;height:100%"
  9851. },
  9852. "src": "/Office/Word/WordEditArea.htm"
  9853. })
  9854. _box.appendChild(_iframe);
  9855. _box.appendChild(_jie);
  9856. _formdiv = new U.UF.UI.form(
  9857. "协同文档",
  9858. _box, {
  9859. "id": "docs_Yu" + cid + stage + task + tool,
  9860. "style": {
  9861. "width": "90%",
  9862. "height": "90%",
  9863. "overflow": 'hidden'
  9864. },
  9865. "onresize": function () { }
  9866. }, {
  9867. closecallback: function () { }
  9868. }, {
  9869. "style": {
  9870. "height": "36px"
  9871. }
  9872. }).form; //创建窗体
  9873. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9874. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9875. })
  9876. _taskbar = {
  9877. "id": str + _formdiv.id,
  9878. "style": {
  9879. "backgroundImage": "url(/img/icon/doc.png)"
  9880. },
  9881. "name": "协同文档",
  9882. "forms": _formdiv,
  9883. "click": function () {
  9884. U.MD.D.I.openApplication(str, obj, info);
  9885. }
  9886. }
  9887. break;
  9888. case "CocoPi":
  9889. aTool = 57;
  9890. _iframe = $$("iframe", {
  9891. "allowpaymentrequest": "allowpaymentrequest",
  9892. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9893. "webkitallowfullscreen": "",
  9894. "mozallowfullscreen": "",
  9895. "frameborder": "no",
  9896. "border": "0",
  9897. "scrolling ": "no",
  9898. "style": {
  9899. "cssText": "border:0;width:100%;height:100%"
  9900. },
  9901. "src": "https://pi.cocorobo.cn/"
  9902. })
  9903. _box.appendChild(_iframe);
  9904. _box.appendChild(_jie);
  9905. _formdiv = new U.UF.UI.form(
  9906. "CocoPi",
  9907. _box, {
  9908. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9909. "style": {
  9910. "width": "90%",
  9911. "height": "90%",
  9912. "overflow": 'hidden'
  9913. },
  9914. "onresize": function () { }
  9915. }, {
  9916. closecallback: function () { }
  9917. }, {
  9918. "style": {
  9919. "height": "36px"
  9920. }
  9921. }).form; //创建窗体
  9922. _taskbar = {
  9923. "id": str + _formdiv.id,
  9924. "style": {
  9925. "backgroundImage": "url(/img/icon/cocopi.png)"
  9926. },
  9927. "name": "CocoPi",
  9928. "forms": _formdiv,
  9929. "click": function () {
  9930. U.MD.D.I.openApplication(str, obj, info);
  9931. }
  9932. }
  9933. break;
  9934. }
  9935. if (_iframe) {
  9936. if (str == 'doc') {
  9937. _iframe = _formdiv.querySelector('iframe')
  9938. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9939. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9940. })
  9941. if (onloadListener) {
  9942. _iframe.contentDocument.location.reload()
  9943. } else {
  9944. _iframe.contentDocument.location.reload()
  9945. }
  9946. } else if (str == 'mind') {
  9947. _iframe = _formdiv.querySelector('iframe')
  9948. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9949. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9950. })
  9951. if (onloadListener) {
  9952. _iframe.contentDocument.location.reload()
  9953. } else {
  9954. _iframe.contentDocument.location.reload()
  9955. }
  9956. } else if (str == 'whiteboard') {
  9957. _iframe = _formdiv.querySelector('iframe')
  9958. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9959. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9960. })
  9961. // if (onloadListener) {
  9962. // try {
  9963. // _iframe.src += "?cocorobo="+new Date().getTime()
  9964. // _iframe.contentWindow.document.location.reload()
  9965. // } catch (error) {
  9966. // }
  9967. // } else {
  9968. // _iframe.contentDocument.location.reload()
  9969. // }
  9970. } else if (str == 'CocoPi') {
  9971. _iframe = _formdiv.querySelector('iframe')
  9972. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9973. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9974. })
  9975. if (onloadListener) {
  9976. _iframe.contentDocument.location.reload()
  9977. } else {
  9978. _iframe.contentDocument.location.reload()
  9979. }
  9980. } else {
  9981. _iframe.onload = () => { };
  9982. }
  9983. _jie.onclick = async () => {
  9984. let text = ''
  9985. let type = '2'
  9986. if (aTool == 1) {
  9987. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9988. type = '3'
  9989. } else if (aTool == 6) {
  9990. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9991. type = '1'
  9992. } else if (aTool == 3) {
  9993. text = await U.MD.D.I.getEditorContent(_iframe);
  9994. type = '2'
  9995. } else if (aTool == 57) {
  9996. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9997. type = '4'
  9998. }
  9999. _loading.style.display = 'flex'
  10000. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10001. }
  10002. }
  10003. //U.MD.D.I.openClick(str);
  10004. //如果有任务栏信息
  10005. // if (_taskbar) {
  10006. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10007. // }
  10008. }
  10009. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10010. var xmlhttp;
  10011. var Mac, Sn, DeviceId
  10012. if (window.XMLHttpRequest) {
  10013. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10014. xmlhttp = new XMLHttpRequest();
  10015. } else {
  10016. // IE6, IE5 浏览器执行代码
  10017. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10018. }
  10019. xmlhttp.onreadystatechange = function () {
  10020. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10021. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10022. // resolve(res.value[0][0].text);
  10023. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10024. }
  10025. }
  10026. }
  10027. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10028. xmlhttp.send();
  10029. }
  10030. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10031. var xmlhttp;
  10032. var Mac, Sn, DeviceId
  10033. if (window.XMLHttpRequest) {
  10034. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10035. xmlhttp = new XMLHttpRequest();
  10036. } else {
  10037. // IE6, IE5 浏览器执行代码
  10038. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10039. }
  10040. xmlhttp.onreadystatechange = function () {
  10041. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10042. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10043. // resolve(res.value[0][0].text);
  10044. if (type == '2') {
  10045. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10046. } else if (type == '3') {
  10047. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10048. } else if (type == '4') {
  10049. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10050. }
  10051. } else {
  10052. if (type == '2') {
  10053. iframe.contentWindow.editor.minder.importData('json', '')
  10054. } else if (type == '3') {
  10055. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10056. } else if (type == '4') {
  10057. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10058. }
  10059. }
  10060. }
  10061. }
  10062. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10063. xmlhttp.send();
  10064. }
  10065. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10066. var xmlhttp;
  10067. var Mac, Sn, DeviceId
  10068. if (window.XMLHttpRequest) {
  10069. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10070. xmlhttp = new XMLHttpRequest();
  10071. } else {
  10072. // IE6, IE5 浏览器执行代码
  10073. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10074. }
  10075. xmlhttp.onreadystatechange = function () {
  10076. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10077. if (xmlhttp.response) {
  10078. // resolve(res.value[0][0].text);
  10079. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10080. // $(fileInput).val('');
  10081. // });
  10082. span.innerHTML = '上传成功'
  10083. setTimeout(() => {
  10084. loading.style.display = 'none'
  10085. }, 1000);
  10086. }
  10087. }
  10088. }
  10089. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10090. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10091. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10092. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10093. // 设置请求头,表示请求体的编码格式
  10094. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10095. // 设置请求体,使用url-encoded格式的数据
  10096. }
  10097. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10098. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10099. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10100. _userinfo = US.userInfo, //登录用户信息
  10101. _userid = US.userInfo.userid //登录用户id
  10102. let _iframe;
  10103. let _cid = cid,
  10104. _stage = stage,
  10105. _task = task,
  10106. _tool = tool;
  10107. var _jie = $$("div", {
  10108. "style": {
  10109. "position": "absolute",
  10110. "bottom": "50px",
  10111. "right": "50px",
  10112. "zIndex": "9999",
  10113. "backgroundColor": "#2268bc",
  10114. "color": "#fff",
  10115. "padding": "12px 20px",
  10116. "cursor": "pointer",
  10117. "borderRadius": "4px",
  10118. },
  10119. "innerHTML": "提交作业"
  10120. })
  10121. let aTool = ''
  10122. let _loading = document.createElement('div')
  10123. _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;"
  10124. // _loading.id = "";
  10125. let _lchild = document.createElement('div')
  10126. let _limg = document.createElement('img')
  10127. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10128. _limg.style = "width: 26px;margin-right: 10px;"
  10129. _lchild.appendChild(_limg)
  10130. let _lspan = document.createElement('span')
  10131. _lspan.innerHTML = "上传中..."
  10132. _lchild.appendChild(_lspan)
  10133. _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%);"
  10134. _loading.appendChild(_lchild)
  10135. var _box = $$('div', {
  10136. "style": {
  10137. "position": "relative",
  10138. "width": "100%",
  10139. "height": "100%",
  10140. },
  10141. })
  10142. _box.appendChild(_loading)
  10143. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10144. switch (str) {
  10145. case "CocoPi":
  10146. aTool = 57;
  10147. _iframe = $$("iframe", {
  10148. "allowpaymentrequest": "allowpaymentrequest",
  10149. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10150. "webkitallowfullscreen": "",
  10151. "mozallowfullscreen": "",
  10152. "frameborder": "no",
  10153. "border": "0",
  10154. "scrolling ": "no",
  10155. "style": {
  10156. "cssText": "border:0;width:100%;height:100%"
  10157. },
  10158. "src": "https://pi.cocorobo.cn/"
  10159. })
  10160. _box.appendChild(_iframe);
  10161. _box.appendChild(_jie);
  10162. _formdiv = new U.UF.UI.form(
  10163. "CocoPi",
  10164. _box, {
  10165. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10166. "style": {
  10167. "width": "90%",
  10168. "height": "90%",
  10169. "overflow": 'hidden'
  10170. },
  10171. "onresize": function () { }
  10172. }, {
  10173. closecallback: function () { }
  10174. }, {
  10175. "style": {
  10176. "height": "36px"
  10177. }
  10178. }).form; //创建窗体
  10179. _taskbar = {
  10180. "id": str + _formdiv.id,
  10181. "style": {
  10182. "backgroundImage": "url(/img/icon/cocopi.png)"
  10183. },
  10184. "name": "CocoPi",
  10185. "forms": _formdiv,
  10186. "click": function () {
  10187. U.MD.D.I.openApplication(str, obj, info);
  10188. }
  10189. }
  10190. break;
  10191. }
  10192. if (_iframe) {
  10193. if (str == 'CocoPi') {
  10194. _iframe = _formdiv.querySelector('iframe')
  10195. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10196. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10197. })
  10198. if (onloadListener) {
  10199. _iframe.contentDocument.location.reload()
  10200. } else {
  10201. _iframe.contentDocument.location.reload()
  10202. }
  10203. }
  10204. _jie.onclick = async () => {
  10205. let text = ''
  10206. if (aTool == 57) {
  10207. text = _iframe.contentWindow.getLoadXmlStr()
  10208. }
  10209. _loading.style.display = 'flex'
  10210. console.log(_loading);
  10211. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10212. _loading.style.display = 'none'
  10213. let _div = document.createElement('div')
  10214. _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;"
  10215. let _inner = document.createElement('div')
  10216. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10217. _inner.innerHTML = "上传成功"
  10218. _div.appendChild(_inner)
  10219. _iframe.contentWindow.window.document.body.appendChild(_div)
  10220. _div.onclick = () => {
  10221. _iframe.contentWindow.window.document.body.removeChild(_div)
  10222. }
  10223. setTimeout(() => {
  10224. _iframe.contentWindow.window.document.body.removeChild(_div)
  10225. }, 1000);
  10226. }, [], { "type": "POST", "withCredentials": true });
  10227. }
  10228. }
  10229. }
  10230. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10231. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10232. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10233. _userid = student.userid, //登录用户id
  10234. _username = student.student //用户名字
  10235. let _iframe;
  10236. let _cid = cid,
  10237. _stage = stage,
  10238. _task = task,
  10239. _tool = tool;
  10240. var _jie = $$("div", {
  10241. "style": {
  10242. "position": "absolute",
  10243. "bottom": "50px",
  10244. "right": "50px",
  10245. "zIndex": "9999",
  10246. "backgroundColor": "#2268bc",
  10247. "color": "#fff",
  10248. "padding": "12px 20px",
  10249. "cursor": "pointer",
  10250. "borderRadius": "4px",
  10251. },
  10252. "innerHTML": "提交作业"
  10253. })
  10254. let aTool = ''
  10255. let _loading = document.createElement('div')
  10256. _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;"
  10257. // _loading.id = "";
  10258. let _lchild = document.createElement('div')
  10259. let _limg = document.createElement('img')
  10260. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10261. _limg.style = "width: 26px;margin-right: 10px;"
  10262. _lchild.appendChild(_limg)
  10263. let _lspan = document.createElement('span')
  10264. _lspan.innerHTML = "上传中..."
  10265. _lchild.appendChild(_lspan)
  10266. _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%);"
  10267. _loading.appendChild(_lchild)
  10268. var _box = $$('div', {
  10269. "style": {
  10270. "position": "relative",
  10271. "width": "100%",
  10272. "height": "100%",
  10273. },
  10274. })
  10275. _box.appendChild(_loading)
  10276. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10277. switch (str) {
  10278. case "CocoPi":
  10279. aTool = 57;
  10280. _iframe = $$("iframe", {
  10281. "allowpaymentrequest": "allowpaymentrequest",
  10282. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10283. "webkitallowfullscreen": "",
  10284. "mozallowfullscreen": "",
  10285. "frameborder": "no",
  10286. "border": "0",
  10287. "scrolling ": "no",
  10288. "style": {
  10289. "cssText": "border:0;width:100%;height:100%"
  10290. },
  10291. "src": "https://pi.cocorobo.cn/"
  10292. })
  10293. _box.appendChild(_iframe);
  10294. _box.appendChild(_jie);
  10295. _formdiv = new U.UF.UI.form(
  10296. "CocoPi-" + _username,
  10297. _box, {
  10298. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10299. "style": {
  10300. "width": "90%",
  10301. "height": "90%",
  10302. "overflow": 'hidden'
  10303. },
  10304. "onresize": function () { }
  10305. }, {
  10306. closecallback: function () { }
  10307. }, {
  10308. "style": {
  10309. "height": "36px"
  10310. }
  10311. }).form; //创建窗体
  10312. _taskbar = {
  10313. "id": str + _formdiv.id,
  10314. "style": {
  10315. "backgroundImage": "url(/img/icon/cocopi.png)"
  10316. },
  10317. "name": "CocoPi",
  10318. "forms": _formdiv,
  10319. "click": function () {
  10320. U.MD.D.I.openApplication(str, obj, info);
  10321. }
  10322. }
  10323. break;
  10324. }
  10325. if (_iframe) {
  10326. if (str == 'CocoPi') {
  10327. _iframe = _formdiv.querySelector('iframe')
  10328. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10329. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10330. })
  10331. if (onloadListener) {
  10332. _iframe.contentDocument.location.reload()
  10333. } else {
  10334. _iframe.contentDocument.location.reload()
  10335. }
  10336. }
  10337. _jie.onclick = async () => {
  10338. let text = ''
  10339. if (aTool == 57) {
  10340. text = _iframe.contentWindow.getLoadXmlStr()
  10341. }
  10342. _loading.style.display = 'flex'
  10343. console.log(_loading);
  10344. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10345. _loading.style.display = 'none'
  10346. let _div = document.createElement('div')
  10347. _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;"
  10348. let _inner = document.createElement('div')
  10349. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10350. _inner.innerHTML = "上传成功"
  10351. _div.appendChild(_inner)
  10352. _iframe.contentWindow.window.document.body.appendChild(_div)
  10353. _div.onclick = () => {
  10354. _iframe.contentWindow.window.document.body.removeChild(_div)
  10355. }
  10356. setTimeout(() => {
  10357. _iframe.contentWindow.window.document.body.removeChild(_div)
  10358. }, 1000);
  10359. }, [], { "type": "POST", "withCredentials": true });
  10360. }
  10361. }
  10362. }
  10363. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10364. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10365. if (res.value[0].length > 0) {
  10366. if (atool == 57) {
  10367. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10368. }
  10369. } else {
  10370. if (atool == 57) {
  10371. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10372. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10373. }
  10374. }
  10375. }, [], { "type": "POST", "withCredentials": true });
  10376. }