DeskTop.js 679 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504StudentDeskIcon = [
  1609. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1610. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1611. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1612. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1613. ];
  1614. //SCNUET
  1615. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1616. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1617. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1618. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1619. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1620. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1621. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1622. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1625. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1626. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1627. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1628. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1629. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1632. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1633. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1634. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1635. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1636. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1637. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1638. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1639. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1640. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1641. ];
  1642. //SCNUET
  1643. U.MD.D.I.SCNUETAdminDeskIcon = [
  1644. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1645. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1649. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1650. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1651. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1652. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1653. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1655. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1656. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1657. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1658. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1659. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1661. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1662. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1665. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1666. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1667. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1668. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1669. ];
  1670. //SCNUET
  1671. U.MD.D.I.SCNUETStudentDeskIcon = [
  1672. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1673. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1676. ];
  1677. //x020201
  1678. U.MD.D.I.x020201TeacherDeskIcon = [
  1679. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1680. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1681. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1682. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1683. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1684. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1685. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1686. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1689. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1690. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1692. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1693. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1694. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1695. ];
  1696. //x020201
  1697. U.MD.D.I.x020201AdminDeskIcon = [
  1698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1702. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1703. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1706. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1707. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1708. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1709. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1710. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1713. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1714. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1715. ];
  1716. //020201
  1717. U.MD.D.I.x020201StudentDeskIcon = [
  1718. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1719. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. ];
  1723. //010611
  1724. U.MD.D.I.x010611TeacherDeskIcon = [
  1725. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1726. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1728. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1732. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1733. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1734. ];
  1735. //010611
  1736. U.MD.D.I.x010611StudentDeskIcon = [
  1737. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1741. ];
  1742. //tianyuan
  1743. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1750. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1753. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1754. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1755. ];
  1756. //010611
  1757. U.MD.D.I.tianyuanStudentDeskIcon = [
  1758. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1759. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1760. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1762. ];
  1763. //320101
  1764. U.MD.D.I.x320101TeacherDeskIcon = [
  1765. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1766. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1767. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1768. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1769. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1770. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1771. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1772. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1773. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1774. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1775. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1776. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1777. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1778. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1779. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1780. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1781. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1782. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1783. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1784. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1785. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1786. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1787. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1788. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1789. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1790. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1791. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1792. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1793. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1794. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1795. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1796. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1797. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1798. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1803. ];
  1804. //320101
  1805. U.MD.D.I.x320101StudentDeskIcon = [
  1806. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1808. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1809. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1810. ];
  1811. //szsy
  1812. U.MD.D.I.szsyTeacherDeskIcon = [
  1813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1819. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1820. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1821. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1822. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1823. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1826. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1827. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1828. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1829. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1830. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1831. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1832. ];
  1833. //szsy
  1834. U.MD.D.I.szsyStudentDeskIcon = [
  1835. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1836. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1839. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1840. ];
  1841. //#region 桌面初始化a
  1842. /**
  1843. * 初始化桌面的起始函数
  1844. *
  1845. */
  1846. U.MD.D.I.init = function () {
  1847. if ($("#U_MD_D_K")[0]) {
  1848. //初始化桌面图标
  1849. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1850. // var clickUrl = ':12588/requestIp.php';
  1851. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1852. // U.MD.D.I.Ip = data;
  1853. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1854. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1855. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1856. // })
  1857. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1858. // })
  1859. }
  1860. }
  1861. /**
  1862. * 模式切换
  1863. *
  1864. */
  1865. U.MD.D.I.ModeCheck = function (type) {
  1866. if (US.Config.type == type) {
  1867. return
  1868. }
  1869. US.Config.type = type
  1870. $('.U_PBL_Check .active')[0].className = ''
  1871. if (type == 1) {
  1872. $('.U_PBL_Check div')[0].className = 'active'
  1873. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1874. } else {
  1875. $('.U_PBL_Check div')[1].className = 'active'
  1876. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1877. }
  1878. //初始化桌面图标
  1879. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1880. if (type == 2) {
  1881. U.MD.D.I.openApplication("project")
  1882. }
  1883. }
  1884. /**
  1885. * 隐藏任务栏
  1886. *
  1887. * @param {element} 桌面元素
  1888. */
  1889. U.MD.D.I.hiddenTaskbar = function (el) {
  1890. //任务栏位置变小
  1891. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1892. //桌面的位置变大
  1893. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1894. }
  1895. /**
  1896. * 隐藏任务栏
  1897. *
  1898. * @param {element} 桌面元素
  1899. */
  1900. U.MD.D.I.hiddenTaskbarout = function (el) {
  1901. //任务栏位置变小
  1902. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1903. //任务栏位置变化
  1904. U.selectEl(el).css({ "bottom": "-60px" });
  1905. //桌面的位置变大
  1906. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1907. }
  1908. }
  1909. /**
  1910. * 初始化打印桌面图标
  1911. *
  1912. * @param {element} 桌面元素
  1913. */
  1914. U.MD.D.I.initDesktopIcons = function (el, type) {
  1915. var i, //用于循环
  1916. _content, //桌面图标元素
  1917. _iconcontent, //桌面图标元素
  1918. _frag = $$("frag"), //定义一个碎片元素
  1919. _type = US.userInfo.type,
  1920. _org = US.userInfo.org,
  1921. _oid = US.userInfo.organizeid,
  1922. _role = US.userInfo.role,
  1923. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1924. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1925. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1926. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1927. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1928. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1929. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1930. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1931. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1932. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1933. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1934. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1935. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1936. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1937. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1938. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1939. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1940. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1941. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1942. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1943. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1944. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1945. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1946. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1947. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1948. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1949. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1950. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1951. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1952. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1953. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1954. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1955. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1956. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1957. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1958. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1959. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1960. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1961. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1962. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1963. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1964. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1965. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1966. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1967. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1968. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1969. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1970. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1971. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1972. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1973. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1974. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1975. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1976. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1977. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1978. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1979. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1980. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1981. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1982. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1983. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1984. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1985. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1986. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1987. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1988. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1989. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1990. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1991. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1992. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1993. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1994. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1995. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1996. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1997. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1998. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1999. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2000. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2001. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2002. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2003. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2004. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2005. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2006. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2007. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2008. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2009. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2010. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2011. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2012. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2013. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2014. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2015. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2016. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2017. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2018. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2019. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2020. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2021. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2022. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2023. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2024. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2025. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2026. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2027. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2028. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2029. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2030. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2031. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2032. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2033. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2034. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2035. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2036. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2037. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2038. 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'];
  2039. 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','c8266c04-59e3-44de-bcf2-8f906e66e636'];
  2040. //清楚桌面图标
  2041. el.innerHTML = "";
  2042. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2043. _teacherDesktopIconInfo.push(
  2044. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2045. { "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)" } },
  2046. )
  2047. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2048. }
  2049. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2050. _teacherDesktopIconInfo.push(
  2051. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2052. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2053. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2055. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2056. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2057. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2059. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2060. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2061. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2062. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2063. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2064. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2065. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2066. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2067. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2068. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2069. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2070. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2071. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2072. )
  2073. }
  2074. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2075. _teacherDesktopIconInfo.push(
  2076. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2077. )
  2078. }
  2079. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2080. // _teacherDesktopIconInfo.push(
  2081. // )
  2082. // }
  2083. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2084. _teacherDesktopIconInfo.push(
  2085. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2086. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2087. )
  2088. }
  2089. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2090. _teacherDesktopIconInfo.push(
  2091. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2092. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2093. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2094. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2095. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2096. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2097. )
  2098. _studentDesktopIconInfo.push(
  2099. )
  2100. }
  2101. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2102. _teacherDesktopIconInfo.push(
  2103. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2104. )
  2105. _studentDesktopIconInfo.push(
  2106. )
  2107. }
  2108. //010606 组织
  2109. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2110. _teacherDesktopIconInfo.push(
  2111. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2112. )
  2113. _studentDesktopIconInfo.push(
  2114. )
  2115. }
  2116. //麒麟二中 和 民新小学
  2117. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2118. _teacherDesktopIconInfo.push(
  2119. )
  2120. }
  2121. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2122. _teacherDesktopIconInfo.push(
  2123. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2124. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2125. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2126. )
  2127. }
  2128. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2129. _hkTeacherDeskIconInfo.push(
  2130. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2131. )
  2132. }
  2133. //北师大附中(010601)
  2134. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2135. // _teacherDesktopIconInfo.push(
  2136. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2137. // )
  2138. // _studentDesktopIconInfo.push(
  2139. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2140. // )
  2141. // }
  2142. //樂善堂余近卿中學
  2143. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2144. _teacherDesktopIconInfo.push(
  2145. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2146. )
  2147. }
  2148. // Education Artificial Intelligence
  2149. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2150. _teacherDesktopIconInfo.push(
  2151. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2152. )
  2153. }
  2154. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2155. _teacherDesktopIconInfo.push(
  2156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2157. )
  2158. }
  2159. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2160. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2161. _teacherDesktopIconInfo.push(
  2162. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2163. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2164. )
  2165. }
  2166. //麒麟二中
  2167. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2168. _studentDesktopIconInfo.push(
  2169. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2170. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2171. )
  2172. }
  2173. //万科双语
  2174. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2175. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2176. if (el.Name == '项目管理') {
  2177. el.Name = 'PBL项目'
  2178. }
  2179. return el
  2180. })
  2181. _studentDesktopIconInfo3.push(
  2182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2183. )
  2184. }
  2185. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2186. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2187. return el.Name != '魔盒识字' && el.Name != '24点'
  2188. })
  2189. }
  2190. 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) {
  2191. _studentDesktopIconInfo.push(
  2192. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2193. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2194. )
  2195. }
  2196. //循环创建桌面图标
  2197. if (type == 1) {
  2198. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2199. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2200. _content = $$("div", {
  2201. className: "U_MD_D_KO",
  2202. "onmousedown": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_studentDesktopIconInfo[i]]),
  2206. "onclick": U.UF.C.closure(function (obj) {
  2207. //防止拖动图标即打开了桌面应用
  2208. U.MD.D.click(this, obj);
  2209. }, [_studentDesktopIconInfo[i]])
  2210. }, _frag); //
  2211. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2212. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2213. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2214. }
  2215. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2216. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2217. _content = $$("div", {
  2218. className: "U_MD_D_KO",
  2219. "onmousedown": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2223. "onclick": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_hkZJLSStudentDeskIconInfo[i]])
  2227. }, _frag); //
  2228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2231. } //
  2232. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2233. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2234. _content = $$("div", {
  2235. className: "U_MD_D_KO",
  2236. "onmousedown": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_ytyStudentDeskIconInfo[i]]),
  2240. "onclick": U.UF.C.closure(function (obj) {
  2241. //防止拖动图标即打开了桌面应用
  2242. U.MD.D.click(this, obj);
  2243. }, [_ytyStudentDeskIconInfo[i]])
  2244. }, _frag); //
  2245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2248. } //
  2249. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2250. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2251. _content = $$("div", {
  2252. className: "U_MD_D_KO",
  2253. "onmousedown": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_jccssylStudentDeskIconInfo[i]]),
  2257. "onclick": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_jccssylStudentDeskIconInfo[i]])
  2261. }, _frag); //
  2262. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2263. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2264. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2265. }
  2266. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2267. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2268. _content = $$("div", {
  2269. className: "U_MD_D_KO",
  2270. "onmousedown": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_scnuaiStudentDeskIconInfo[i]]),
  2274. "onclick": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_scnuaiStudentDeskIconInfo[i]])
  2278. }, _frag); //
  2279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2282. }
  2283. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2284. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2285. _content = $$("div", {
  2286. className: "U_MD_D_KO",
  2287. "onmousedown": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_caleStudentDeskIconInfo[i]]),
  2291. "onclick": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_caleStudentDeskIconInfo[i]])
  2295. }, _frag); //
  2296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2299. }
  2300. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2301. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2302. _content = $$("div", {
  2303. className: "U_MD_D_KO",
  2304. "onmousedown": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_thuioeStudentDeskIconInfo[i]]),
  2308. "onclick": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_thuioeStudentDeskIconInfo[i]])
  2312. }, _frag); //
  2313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2316. }
  2317. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2318. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2319. _content = $$("div", {
  2320. className: "U_MD_D_KO",
  2321. "onmousedown": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_tpcStudentDeskIconInfo[i]]),
  2325. "onclick": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_tpcStudentDeskIconInfo[i]])
  2329. }, _frag); //
  2330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2333. } //
  2334. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2335. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2336. _content = $$("div", {
  2337. className: "U_MD_D_KO",
  2338. "onmousedown": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_chjyjStudentDeskIconInfo[i]]),
  2342. "onclick": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_chjyjStudentDeskIconInfo[i]])
  2346. }, _frag); //
  2347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2350. }
  2351. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2352. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2353. _content = $$("div", {
  2354. className: "U_MD_D_KO",
  2355. "onmousedown": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_szjkyStudentDeskIconInfo[i]]),
  2359. "onclick": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_szjkyStudentDeskIconInfo[i]])
  2363. }, _frag); //
  2364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2367. }
  2368. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2369. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2370. _content = $$("div", {
  2371. className: "U_MD_D_KO",
  2372. "onmousedown": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_x020201StudentDeskIconInfo[i]]),
  2376. "onclick": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_x020201StudentDeskIconInfo[i]])
  2380. }, _frag); //
  2381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2384. }
  2385. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2386. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2387. _content = $$("div", {
  2388. className: "U_MD_D_KO",
  2389. "onmousedown": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_SCNUETStudentDeskIconInfo[i]]),
  2393. "onclick": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_SCNUETStudentDeskIconInfo[i]])
  2397. }, _frag); //
  2398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2401. }
  2402. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2403. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2404. _content = $$("div", {
  2405. className: "U_MD_D_KO",
  2406. "onmousedown": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_dseiStudentDeskIconInfo[i]]),
  2410. "onclick": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_dseiStudentDeskIconInfo[i]])
  2414. }, _frag); //
  2415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2418. }
  2419. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2420. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2421. _content = $$("div", {
  2422. className: "U_MD_D_KO",
  2423. "onmousedown": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2427. "onclick": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2431. }, _frag); //
  2432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2435. }
  2436. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2437. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2438. _content = $$("div", {
  2439. className: "U_MD_D_KO",
  2440. "onmousedown": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_nsfxStudentDeskIconInfo[i]]),
  2444. "onclick": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_nsfxStudentDeskIconInfo[i]])
  2448. }, _frag); //
  2449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2452. }
  2453. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2454. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2455. _content = $$("div", {
  2456. className: "U_MD_D_KO",
  2457. "onmousedown": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_stiaStudentDeskIconInfo[i]]),
  2461. "onclick": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_stiaStudentDeskIconInfo[i]])
  2465. }, _frag); //
  2466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2469. }
  2470. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2471. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2472. _content = $$("div", {
  2473. className: "U_MD_D_KO",
  2474. "onmousedown": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_szdjgStudentDeskIconInfo[i]]),
  2478. "onclick": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_szdjgStudentDeskIconInfo[i]])
  2482. }, _frag); //
  2483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2486. }
  2487. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2488. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2489. _content = $$("div", {
  2490. className: "U_MD_D_KO",
  2491. "onmousedown": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_x010607StudentDeskIconInfo[i]]),
  2495. "onclick": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_x010607StudentDeskIconInfo[i]])
  2499. }, _frag); //
  2500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2503. }
  2504. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2505. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2506. _content = $$("div", {
  2507. className: "U_MD_D_KO",
  2508. "onmousedown": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_xhlyStudentDeskIconInfo[i]]),
  2512. "onclick": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_xhlyStudentDeskIconInfo[i]])
  2516. }, _frag); //
  2517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2520. }
  2521. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2522. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2523. _content = $$("div", {
  2524. className: "U_MD_D_KO",
  2525. "onmousedown": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2529. "onclick": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2533. }, _frag); //
  2534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2537. }
  2538. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2539. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2540. _content = $$("div", {
  2541. className: "U_MD_D_KO",
  2542. "onmousedown": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_x010503StudentDeskIconInfo[i]]),
  2546. "onclick": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_x010503StudentDeskIconInfo[i]])
  2550. }, _frag); //
  2551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2554. }
  2555. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2556. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2557. _content = $$("div", {
  2558. className: "U_MD_D_KO",
  2559. "onmousedown": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_x010504StudentDeskIconInfo[i]]),
  2563. "onclick": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_x010504StudentDeskIconInfo[i]])
  2567. }, _frag); //
  2568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2571. }
  2572. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2573. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2574. _content = $$("div", {
  2575. className: "U_MD_D_KO",
  2576. "onmousedown": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_x010204StudentDeskIconInfo[i]]),
  2580. "onclick": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_x010204StudentDeskIconInfo[i]])
  2584. }, _frag); //
  2585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2588. }
  2589. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2590. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2591. _content = $$("div", {
  2592. className: "U_MD_D_KO",
  2593. "onmousedown": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_x320101StudentDeskIconInfo[i]]),
  2597. "onclick": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_x320101StudentDeskIconInfo[i]])
  2601. }, _frag); //
  2602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2605. }
  2606. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2607. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2608. _content = $$("div", {
  2609. className: "U_MD_D_KO",
  2610. "onmousedown": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_trailStudentDeskIconInfo[i]]),
  2614. "onclick": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_trailStudentDeskIconInfo[i]])
  2618. }, _frag); //
  2619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2622. }
  2623. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2624. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2625. _content = $$("div", {
  2626. className: "U_MD_D_KO",
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2639. }
  2640. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2641. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2642. _content = $$("div", {
  2643. className: "U_MD_D_KO",
  2644. "onmousedown": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_szsyStudentDeskIconInfo[i]]),
  2648. "onclick": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_szsyStudentDeskIconInfo[i]])
  2652. }, _frag); //
  2653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2656. }
  2657. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2658. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2659. _content = $$("div", {
  2660. className: "U_MD_D_KO",
  2661. "onmousedown": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_x010608StudentDeskIconInfo[i]]),
  2665. "onclick": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_x010608StudentDeskIconInfo[i]])
  2669. }, _frag); //
  2670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2673. }
  2674. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2675. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2676. _content = $$("div", {
  2677. className: "U_MD_D_KO",
  2678. "onmousedown": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_x010611StudentDeskIconInfo[i]]),
  2682. "onclick": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_x010611StudentDeskIconInfo[i]])
  2686. }, _frag); //
  2687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2690. }
  2691. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2692. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2693. _content = $$("div", {
  2694. className: "U_MD_D_KO",
  2695. "onmousedown": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_tianyuantudentDeskIconInfo[i]]),
  2699. "onclick": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_tianyuantudentDeskIconInfo[i]])
  2703. }, _frag); //
  2704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2707. }
  2708. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2709. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2710. _content = $$("div", {
  2711. className: "U_MD_D_KO",
  2712. "onmousedown": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_siesStudentDeskIconInfo[i]]),
  2716. "onclick": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_siesStudentDeskIconInfo[i]])
  2720. }, _frag); //
  2721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2724. }
  2725. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2726. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_guzmsStudentDeskIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_guzmsStudentDeskIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2741. }
  2742. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2743. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2744. _content = $$("div", {
  2745. className: "U_MD_D_KO",
  2746. "onmousedown": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_hkStudentDeskIconInfo[i]]),
  2750. "onclick": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_hkStudentDeskIconInfo[i]])
  2754. }, _frag); //
  2755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2758. }
  2759. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2760. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2761. _content = $$("div", {
  2762. className: "U_MD_D_KO",
  2763. "onmousedown": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_hkaceStudentDeskIconInfo[i]]),
  2767. "onclick": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_hkaceStudentDeskIconInfo[i]])
  2771. }, _frag); //
  2772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2775. }
  2776. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2777. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2778. _content = $$("div", {
  2779. className: "U_MD_D_KO",
  2780. "onmousedown": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2784. "onclick": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_BSDNSstudentDesktopIconInfo[i]])
  2788. }, _frag); //
  2789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2792. }
  2793. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2794. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2795. _content = $$("div", {
  2796. className: "U_MD_D_KO",
  2797. "onmousedown": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_cocobizStudentDeskIconInfo[i]]),
  2801. "onclick": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_cocobizStudentDeskIconInfo[i]])
  2805. }, _frag); //
  2806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2809. }
  2810. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2811. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2812. _content = $$("div", {
  2813. className: "U_MD_D_KO",
  2814. "onmousedown": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2818. "onclick": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_xxzjkyStudentDeskIconInfo[i]])
  2822. }, _frag); //
  2823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2826. }
  2827. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2828. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_studentDesktopIconInfo[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_studentDesktopIconInfo[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2843. }
  2844. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2845. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_tcStudentDeskIconInfo[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_tcStudentDeskIconInfo[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2860. }
  2861. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2862. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2863. _content = $$("div", {
  2864. className: "U_MD_D_KO",
  2865. "onmousedown": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_szscStudentDeskIconInfo[i]]),
  2869. "onclick": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_szscStudentDeskIconInfo[i]])
  2873. }, _frag); //
  2874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2877. }
  2878. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2879. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2880. _content = $$("div", {
  2881. className: "U_MD_D_KO",
  2882. "onmousedown": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_studentDesktopIconInfo3[i]]),
  2886. "onclick": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_studentDesktopIconInfo3[i]])
  2890. }, _frag); //
  2891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2894. }
  2895. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2896. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2897. _content = $$("div", {
  2898. className: "U_MD_D_KO",
  2899. "onmousedown": U.UF.C.closure(function (obj) {
  2900. //防止拖动图标即打开了桌面应用
  2901. U.MD.D.click(this, obj);
  2902. }, [_studentDesktopIconInfo2[i]]),
  2903. "onclick": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_studentDesktopIconInfo2[i]])
  2907. }, _frag); //
  2908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2911. }
  2912. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2913. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2914. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2915. continue
  2916. }
  2917. _content = $$("div", {
  2918. className: "U_MD_D_KO",
  2919. "onmousedown": U.UF.C.closure(function (obj) {
  2920. //防止拖动图标即打开了桌面应用
  2921. U.MD.D.click(this, obj);
  2922. }, [_wanketeacherDesktopIconInfo[i]]),
  2923. "onclick": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_wanketeacherDesktopIconInfo[i]])
  2927. }, _frag); //
  2928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2931. }
  2932. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2933. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_wankeAdminDesktopIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_wankeAdminDesktopIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2950. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2951. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2952. continue
  2953. }
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_scnuaiTeacherDeskIconInfo[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2968. }
  2969. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2970. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2971. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2972. continue
  2973. }
  2974. _content = $$("div", {
  2975. className: "U_MD_D_KO",
  2976. "onmousedown": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2980. "onclick": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_BSDNSteacherDesktopIconInfo[i]])
  2984. }, _frag); //
  2985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2988. }
  2989. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2990. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_scnuaiAdminDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_scnuaiAdminDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3005. }
  3006. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3007. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3008. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3009. continue
  3010. }
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_jccssylTeacherDeskIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_jccssylTeacherDeskIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3027. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3028. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3029. continue
  3030. }
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_caleTeacherDeskIconInfo[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_caleTeacherDeskIconInfo[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3045. }
  3046. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3047. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_tpcOrganizerDeskIconInfo[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_tpcOrganizerDeskIconInfo[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3062. }
  3063. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3064. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3065. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3066. continue
  3067. }
  3068. _content = $$("div", {
  3069. className: "U_MD_D_KO",
  3070. "onmousedown": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_tpcTeacherDeskIconInfo[i]]),
  3074. "onclick": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_tpcTeacherDeskIconInfo[i]])
  3078. }, _frag); //
  3079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3082. }
  3083. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3084. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3085. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3086. continue
  3087. }
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_teacherDesktopIconInfo2[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_teacherDesktopIconInfo2[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3102. }
  3103. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3104. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3105. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3106. continue
  3107. }
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_thuioeTeacherDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_thuioeTeacherDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3124. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3125. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3126. continue
  3127. }
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_lotechTeacherDeskIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_lotechTeacherDeskIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3142. }//
  3143. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3144. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3145. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3146. continue
  3147. }
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3164. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3165. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3166. continue
  3167. }
  3168. _content = $$("div", {
  3169. className: "U_MD_D_KO",
  3170. "onmousedown": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_siesTeacherDeskIconInfo[i]]),
  3174. "onclick": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_siesTeacherDeskIconInfo[i]])
  3178. }, _frag); //
  3179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3182. }
  3183. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3184. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3185. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3186. continue
  3187. }
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_guzmsTeacherDeskIconInfo[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_guzmsTeacherDeskIconInfo[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3202. }
  3203. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3204. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3205. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_longhuaTeacherDeskIconInfo[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_longhuaTeacherDeskIconInfo[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3222. }
  3223. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3224. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3225. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3226. continue
  3227. }
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_ytyTeacherDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_ytyTeacherDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3244. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_yunhaiTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. } //_hkStudentDeskIconInfo
  3263. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3264. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3265. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3284. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_hkTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_hkTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3304. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3305. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3306. continue
  3307. }
  3308. _content = $$("div", {
  3309. className: "U_MD_D_KO",
  3310. "onmousedown": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_hkaceTeacherDeskIconInfo[i]]),
  3314. "onclick": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_hkaceTeacherDeskIconInfo[i]])
  3318. }, _frag); //
  3319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3322. }
  3323. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3324. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3325. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3326. continue
  3327. }
  3328. _content = $$("div", {
  3329. className: "U_MD_D_KO",
  3330. "onmousedown": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_cocobizTeacherDeskIconInfo[i]]),
  3334. "onclick": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_cocobizTeacherDeskIconInfo[i]])
  3338. }, _frag); //
  3339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3342. }
  3343. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3344. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3345. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3346. continue
  3347. }
  3348. _content = $$("div", {
  3349. className: "U_MD_D_KO",
  3350. "onmousedown": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3354. "onclick": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3358. }, _frag); //
  3359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3362. }
  3363. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3364. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3365. _content = $$("div", {
  3366. className: "U_MD_D_KO",
  3367. "onmousedown": U.UF.C.closure(function (obj) {
  3368. //防止拖动图标即打开了桌面应用
  3369. U.MD.D.click(this, obj);
  3370. }, [_gdjgAdminDeskIconInfo[i]]),
  3371. "onclick": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_gdjgAdminDeskIconInfo[i]])
  3375. }, _frag); //
  3376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3379. }
  3380. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3381. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3382. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3383. continue
  3384. }
  3385. _content = $$("div", {
  3386. className: "U_MD_D_KO",
  3387. "onmousedown": U.UF.C.closure(function (obj) {
  3388. //防止拖动图标即打开了桌面应用
  3389. U.MD.D.click(this, obj);
  3390. }, [_gdjgTeacherDeskIconInfo[i]]),
  3391. "onclick": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_gdjgTeacherDeskIconInfo[i]])
  3395. }, _frag); //
  3396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3399. }
  3400. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3401. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3402. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3403. continue
  3404. }
  3405. _content = $$("div", {
  3406. className: "U_MD_D_KO",
  3407. "onmousedown": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_szherTeacherDeskIconInfo[i]]),
  3411. "onclick": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_szherTeacherDeskIconInfo[i]])
  3415. }, _frag); //
  3416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3419. }
  3420. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3421. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3422. _content = $$("div", {
  3423. className: "U_MD_D_KO",
  3424. "onmousedown": U.UF.C.closure(function (obj) {
  3425. //防止拖动图标即打开了桌面应用
  3426. U.MD.D.click(this, obj);
  3427. }, [_heyuannAdminDeskIconInfo[i]]),
  3428. "onclick": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_heyuannAdminDeskIconInfo[i]])
  3432. }, _frag); //
  3433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3436. }
  3437. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3438. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3439. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3440. continue
  3441. }
  3442. _content = $$("div", {
  3443. className: "U_MD_D_KO",
  3444. "onmousedown": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_heyuanTeacherDeskIconInfo[i]]),
  3448. "onclick": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_heyuanTeacherDeskIconInfo[i]])
  3452. }, _frag); //
  3453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3456. } //
  3457. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3458. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3459. _content = $$("div", {
  3460. className: "U_MD_D_KO",
  3461. "onmousedown": U.UF.C.closure(function (obj) {
  3462. //防止拖动图标即打开了桌面应用
  3463. U.MD.D.click(this, obj);
  3464. }, [_dseiAdminDeskIconInfo[i]]),
  3465. "onclick": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_dseiAdminDeskIconInfo[i]])
  3469. }, _frag); //
  3470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3473. }
  3474. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3475. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3476. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3477. continue
  3478. }
  3479. _content = $$("div", {
  3480. className: "U_MD_D_KO",
  3481. "onmousedown": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_dseiTeacherDeskIconInfo[i]]),
  3485. "onclick": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_dseiTeacherDeskIconInfo[i]])
  3489. }, _frag); //
  3490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3493. } //
  3494. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3495. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3496. _content = $$("div", {
  3497. className: "U_MD_D_KO",
  3498. "onmousedown": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_chjyjAdminDeskIconInfo[i]]),
  3502. "onclick": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_chjyjAdminDeskIconInfo[i]])
  3506. }, _frag); //
  3507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3510. }//
  3511. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3512. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3513. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3514. continue
  3515. }
  3516. _content = $$("div", {
  3517. className: "U_MD_D_KO",
  3518. "onmousedown": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_chjyjTeacherDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_chjyjTeacherDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3530. }
  3531. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3532. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_szjkyAdminDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_szjkyAdminDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3547. }//
  3548. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3549. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_szjkyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_szjkyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3569. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3570. _content = $$("div", {
  3571. className: "U_MD_D_KO",
  3572. "onmousedown": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_x020201AdminDeskIconInfo[i]]),
  3576. "onclick": U.UF.C.closure(function (obj) {
  3577. //防止拖动图标即打开了桌面应用
  3578. U.MD.D.click(this, obj);
  3579. }, [_x020201AdminDeskIconInfo[i]])
  3580. }, _frag); //
  3581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3584. }//
  3585. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3586. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3587. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3588. continue
  3589. }
  3590. _content = $$("div", {
  3591. className: "U_MD_D_KO",
  3592. "onmousedown": U.UF.C.closure(function (obj) {
  3593. //防止拖动图标即打开了桌面应用
  3594. U.MD.D.click(this, obj);
  3595. }, [_x020201TeacherDeskIconInfo[i]]),
  3596. "onclick": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_x020201TeacherDeskIconInfo[i]])
  3600. }, _frag); //
  3601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3604. }
  3605. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3606. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3607. _content = $$("div", {
  3608. className: "U_MD_D_KO",
  3609. "onmousedown": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_SCNUETAdminDeskIconInfo[i]]),
  3613. "onclick": U.UF.C.closure(function (obj) {
  3614. //防止拖动图标即打开了桌面应用
  3615. U.MD.D.click(this, obj);
  3616. }, [_SCNUETAdminDeskIconInfo[i]])
  3617. }, _frag); //
  3618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3621. }//
  3622. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3623. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3624. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3625. continue
  3626. }
  3627. _content = $$("div", {
  3628. className: "U_MD_D_KO",
  3629. "onmousedown": U.UF.C.closure(function (obj) {
  3630. //防止拖动图标即打开了桌面应用
  3631. U.MD.D.click(this, obj);
  3632. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3633. "onclick": U.UF.C.closure(function (obj) {
  3634. //防止拖动图标即打开了桌面应用
  3635. U.MD.D.click(this, obj);
  3636. }, [_SCNUETTeacherDeskIconInfo[i]])
  3637. }, _frag); //
  3638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3641. }
  3642. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3643. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3644. _content = $$("div", {
  3645. className: "U_MD_D_KO",
  3646. "onmousedown": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_futianAdminDeskIconInfo[i]]),
  3650. "onclick": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_futianAdminDeskIconInfo[i]])
  3654. }, _frag); //
  3655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3658. }
  3659. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3660. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3661. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3662. continue
  3663. }
  3664. _content = $$("div", {
  3665. className: "U_MD_D_KO",
  3666. "onmousedown": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_futianTeacherDeskIconInfo[i]]),
  3670. "onclick": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_futianTeacherDeskIconInfo[i]])
  3674. }, _frag); //
  3675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3678. }
  3679. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3680. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3681. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3682. continue
  3683. }
  3684. _content = $$("div", {
  3685. className: "U_MD_D_KO",
  3686. "onmousedown": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_MingdeTeacherDeskIcon[i]]),
  3690. "onclick": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_MingdeTeacherDeskIcon[i]])
  3694. }, _frag); //
  3695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3698. }
  3699. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3700. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3701. _content = $$("div", {
  3702. className: "U_MD_D_KO",
  3703. "onmousedown": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_lhsAdminDesktopIconInfo[i]]),
  3707. "onclick": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_lhsAdminDesktopIconInfo[i]])
  3711. }, _frag); //
  3712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3715. }
  3716. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3717. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3718. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3719. continue
  3720. }
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_lhsteacherDesktopIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_lhsteacherDesktopIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3735. }
  3736. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3737. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3738. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_zhoujiateacherDesktopIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3757. for (i = 0; i < _hanDeskIcon.length; i++) {
  3758. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3759. continue
  3760. }
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_hanDeskIcon[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_hanDeskIcon[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3775. }
  3776. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3777. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3778. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_orgStemDeskIcon[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_orgStemDeskIcon[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3797. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3798. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3799. continue
  3800. }
  3801. _content = $$("div", {
  3802. className: "U_MD_D_KO",
  3803. "onmousedown": U.UF.C.closure(function (obj) {
  3804. //防止拖动图标即打开了桌面应用
  3805. U.MD.D.click(this, obj);
  3806. }, [_szulsDeskIcon[i]]),
  3807. "onclick": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_szulsDeskIcon[i]])
  3811. }, _frag); //
  3812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3815. }
  3816. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3817. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3818. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3819. continue
  3820. }
  3821. _content = $$("div", {
  3822. className: "U_MD_D_KO",
  3823. "onmousedown": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_orgDesktopIconInfo[i]]),
  3827. "onclick": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_orgDesktopIconInfo[i]])
  3831. }, _frag); //
  3832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3835. }
  3836. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3837. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3838. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3839. continue
  3840. }
  3841. _content = $$("div", {
  3842. className: "U_MD_D_KO",
  3843. "onmousedown": U.UF.C.closure(function (obj) {
  3844. //防止拖动图标即打开了桌面应用
  3845. U.MD.D.click(this, obj);
  3846. }, [_schoolDesktopIconInfo[i]]),
  3847. "onclick": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_schoolDesktopIconInfo[i]])
  3851. }, _frag); //
  3852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3855. }
  3856. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3857. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3858. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3859. continue
  3860. }
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_GMteacherDesktopIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_GMteacherDesktopIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3875. }
  3876. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3877. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3878. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_SONGteacherDesktopIconInfo[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_SONGteacherDesktopIconInfo[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3895. }
  3896. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3897. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3898. _content = $$("div", {
  3899. className: "U_MD_D_KO",
  3900. "onmousedown": U.UF.C.closure(function (obj) {
  3901. //防止拖动图标即打开了桌面应用
  3902. U.MD.D.click(this, obj);
  3903. }, [_GMstudentDesktopIconInfo[i]]),
  3904. "onclick": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_GMstudentDesktopIconInfo[i]])
  3908. }, _frag); //
  3909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3912. }
  3913. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3914. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3915. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3916. continue
  3917. }
  3918. _content = $$("div", {
  3919. className: "U_MD_D_KO",
  3920. "onmousedown": U.UF.C.closure(function (obj) {
  3921. //防止拖动图标即打开了桌面应用
  3922. U.MD.D.click(this, obj);
  3923. }, [_tcTeacherDeskIconInfo[i]]),
  3924. "onclick": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_tcTeacherDeskIconInfo[i]])
  3928. }, _frag); //
  3929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3932. }
  3933. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3934. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3935. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3936. continue
  3937. }
  3938. _content = $$("div", {
  3939. className: "U_MD_D_KO",
  3940. "onmousedown": U.UF.C.closure(function (obj) {
  3941. //防止拖动图标即打开了桌面应用
  3942. U.MD.D.click(this, obj);
  3943. }, [_tcOrganizerDeskIconInfo[i]]),
  3944. "onclick": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_tcOrganizerDeskIconInfo[i]])
  3948. }, _frag); //
  3949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3952. }
  3953. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3954. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3955. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3956. continue
  3957. }
  3958. _content = $$("div", {
  3959. className: "U_MD_D_KO",
  3960. "onmousedown": U.UF.C.closure(function (obj) {
  3961. //防止拖动图标即打开了桌面应用
  3962. U.MD.D.click(this, obj);
  3963. }, [_szscTeacherDeskIconInfo[i]]),
  3964. "onclick": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_szscTeacherDeskIconInfo[i]])
  3968. }, _frag); //
  3969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3972. }
  3973. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3974. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3975. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3976. continue
  3977. }
  3978. _content = $$("div", {
  3979. className: "U_MD_D_KO",
  3980. "onmousedown": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_szscOrganizerDeskIconInfo[i]]),
  3984. "onclick": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_szscOrganizerDeskIconInfo[i]])
  3988. }, _frag); //
  3989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3992. }
  3993. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3994. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3995. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3996. continue
  3997. }
  3998. _content = $$("div", {
  3999. className: "U_MD_D_KO",
  4000. "onmousedown": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_nsfxTeacherDeskIconInfo[i]]),
  4004. "onclick": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_nsfxTeacherDeskIconInfo[i]])
  4008. }, _frag); //
  4009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4012. }
  4013. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4014. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4015. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4016. continue
  4017. }
  4018. _content = $$("div", {
  4019. className: "U_MD_D_KO",
  4020. "onmousedown": U.UF.C.closure(function (obj) {
  4021. //防止拖动图标即打开了桌面应用
  4022. U.MD.D.click(this, obj);
  4023. }, [_stiaTeacherDeskIconInfo[i]]),
  4024. "onclick": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_stiaTeacherDeskIconInfo[i]])
  4028. }, _frag); //
  4029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4032. }
  4033. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4034. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4035. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4036. continue
  4037. }
  4038. _content = $$("div", {
  4039. className: "U_MD_D_KO",
  4040. "onmousedown": U.UF.C.closure(function (obj) {
  4041. //防止拖动图标即打开了桌面应用
  4042. U.MD.D.click(this, obj);
  4043. }, [_szdjgTeacherDeskIconInfo[i]]),
  4044. "onclick": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_szdjgTeacherDeskIconInfo[i]])
  4048. }, _frag); //
  4049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4052. }
  4053. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4054. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4055. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4056. continue
  4057. }
  4058. _content = $$("div", {
  4059. className: "U_MD_D_KO",
  4060. "onmousedown": U.UF.C.closure(function (obj) {
  4061. //防止拖动图标即打开了桌面应用
  4062. U.MD.D.click(this, obj);
  4063. }, [_x010607TeacherDeskIconInfo[i]]),
  4064. "onclick": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_x010607TeacherDeskIconInfo[i]])
  4068. }, _frag); //
  4069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4072. }
  4073. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4074. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4075. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4076. continue
  4077. }
  4078. _content = $$("div", {
  4079. className: "U_MD_D_KO",
  4080. "onmousedown": U.UF.C.closure(function (obj) {
  4081. //防止拖动图标即打开了桌面应用
  4082. U.MD.D.click(this, obj);
  4083. }, [_xhlyTeacherDeskIconInfo[i]]),
  4084. "onclick": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_xhlyTeacherDeskIconInfo[i]])
  4088. }, _frag); //
  4089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4092. }
  4093. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4094. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4095. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4096. continue
  4097. }
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4114. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_x010503TeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_x010503TeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4134. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4135. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_x010504TeacherDeskIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_x010504TeacherDeskIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4154. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4155. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4156. continue
  4157. }
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_x010204TeacherDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_x010204TeacherDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4172. }
  4173. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4174. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4175. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_x320101TeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_x320101TeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4194. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4195. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4196. continue
  4197. }
  4198. _content = $$("div", {
  4199. className: "U_MD_D_KO",
  4200. "onmousedown": U.UF.C.closure(function (obj) {
  4201. //防止拖动图标即打开了桌面应用
  4202. U.MD.D.click(this, obj);
  4203. }, [_trailTeacherDeskIconInfo[i]]),
  4204. "onclick": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_trailTeacherDeskIconInfo[i]])
  4208. }, _frag); //
  4209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4212. }
  4213. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4214. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4215. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4216. continue
  4217. }
  4218. _content = $$("div", {
  4219. className: "U_MD_D_KO",
  4220. "onmousedown": U.UF.C.closure(function (obj) {
  4221. //防止拖动图标即打开了桌面应用
  4222. U.MD.D.click(this, obj);
  4223. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4224. "onclick": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4228. }, _frag); //
  4229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4232. }
  4233. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4234. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4235. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4236. continue
  4237. }
  4238. _content = $$("div", {
  4239. className: "U_MD_D_KO",
  4240. "onmousedown": U.UF.C.closure(function (obj) {
  4241. //防止拖动图标即打开了桌面应用
  4242. U.MD.D.click(this, obj);
  4243. }, [_szsyTeacherDeskIconInfo[i]]),
  4244. "onclick": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szsyTeacherDeskIconInfo[i]])
  4248. }, _frag); //
  4249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4252. }
  4253. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4254. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4255. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4256. continue
  4257. }
  4258. _content = $$("div", {
  4259. className: "U_MD_D_KO",
  4260. "onmousedown": U.UF.C.closure(function (obj) {
  4261. //防止拖动图标即打开了桌面应用
  4262. U.MD.D.click(this, obj);
  4263. }, [_x010608TeacherDeskIconInfo[i]]),
  4264. "onclick": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_x010608TeacherDeskIconInfo[i]])
  4268. }, _frag); //
  4269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4272. }
  4273. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4274. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4275. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4276. continue
  4277. }
  4278. _content = $$("div", {
  4279. className: "U_MD_D_KO",
  4280. "onmousedown": U.UF.C.closure(function (obj) {
  4281. //防止拖动图标即打开了桌面应用
  4282. U.MD.D.click(this, obj);
  4283. }, [_x010611TeacherDeskIconInfo[i]]),
  4284. "onclick": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_x010611TeacherDeskIconInfo[i]])
  4288. }, _frag); //
  4289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4292. }
  4293. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4294. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4295. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4296. continue
  4297. }
  4298. _content = $$("div", {
  4299. className: "U_MD_D_KO",
  4300. "onmousedown": U.UF.C.closure(function (obj) {
  4301. //防止拖动图标即打开了桌面应用
  4302. U.MD.D.click(this, obj);
  4303. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4304. "onclick": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_tianyuanTeacherDeskIconInfo[i]])
  4308. }, _frag); //
  4309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4312. }
  4313. } else {
  4314. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4315. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4316. continue
  4317. }
  4318. _content = $$("div", {
  4319. className: "U_MD_D_KO",
  4320. "onmousedown": U.UF.C.closure(function (obj) {
  4321. //防止拖动图标即打开了桌面应用
  4322. U.MD.D.click(this, obj);
  4323. }, [_teacherDesktopIconInfo[i]]),
  4324. "onclick": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_teacherDesktopIconInfo[i]])
  4328. }, _frag); //
  4329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4332. }
  4333. }
  4334. } else {
  4335. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4336. _content = $$("div", {
  4337. className: "U_MD_D_KO",
  4338. style: { 'width': '124px', 'height': '145px' },
  4339. "onmousedown": U.UF.C.closure(function (obj) {
  4340. //防止拖动图标即打开了桌面应用
  4341. U.MD.D.click(this, obj);
  4342. }, [_easyDesktopIconInfo[i]]),
  4343. "onclick": U.UF.C.closure(function (obj) {
  4344. //防止拖动图标即打开了桌面应用
  4345. U.MD.D.click(this, obj);
  4346. }, [_easyDesktopIconInfo[i]])
  4347. }, _frag); //
  4348. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4351. }
  4352. }
  4353. if (type == 1) {
  4354. //加载好后给图标定位
  4355. U.MD.D.iconPostion($(_frag).Child());
  4356. } else {
  4357. //加载好后给图标定位
  4358. U.MD.D.iconPostion2($(_frag).Child());
  4359. }
  4360. //把图标加载到页面
  4361. el.appendChild(_frag);
  4362. }
  4363. /**
  4364. * 显示任务栏
  4365. *
  4366. * @param {element} 桌面元素
  4367. */
  4368. U.MD.D.I.displayTaskbar = function (el) {
  4369. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4370. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4371. //任务栏位置变化
  4372. U.selectEl(el).css({ "bottom": "0px" });
  4373. //桌面位置变话
  4374. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4375. }
  4376. }
  4377. //#region 桌面图标拖动逻辑
  4378. /**
  4379. * 桌面排列图标
  4380. *
  4381. * @param {element} 桌面元素
  4382. * @param {object} 上下相距的距离
  4383. * @param {object} 左右相距的距离
  4384. * @return {object} 命名空间
  4385. */
  4386. U.MD.D.iconPostion = function (childs, top, left) {
  4387. var i; //用于循环处理
  4388. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4389. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4390. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4391. for (i = 0; i < childs.length; i++) {
  4392. //如果竖排top超过了范围处理
  4393. if (top + 95 > US.height - 10) {
  4394. //left超过了页面范围处理,则向上重叠打印处理
  4395. if ((left + 180) > US.width) {
  4396. top -= 110;
  4397. left -= 90;
  4398. }
  4399. //没有超过范围,那么left+90添加到下一个竖排打印
  4400. else {
  4401. left += 90;
  4402. top = 15;
  4403. };
  4404. }
  4405. //给图标的位置赋值
  4406. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4407. if (i < childs.length - 1) {
  4408. //页面图标每次向下加95
  4409. top += 95;
  4410. }
  4411. }
  4412. //返回最后调用的图标的位置
  4413. return [top, left];
  4414. }
  4415. /**
  4416. * 桌面排列图标
  4417. *
  4418. * @param {element} 桌面元素
  4419. * @param {object} 上下相距的距离
  4420. * @param {object} 左右相距的距离
  4421. * @return {object} 命名空间
  4422. */
  4423. U.MD.D.iconPostion2 = function (childs, top, left) {
  4424. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4425. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4426. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4427. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4428. for (i = 0; i < childs.length; i++) {
  4429. //如果竖排top超过了范围处理
  4430. if (left + 150 > US.width - 10) {
  4431. //left超过了页面范围处理,则向上重叠打印处理
  4432. if ((top + 180) > US.Height) {
  4433. top -= 150;
  4434. left -= 150;
  4435. }
  4436. //没有超过范围,那么left+90添加到下一个竖排打印
  4437. else {
  4438. top += 150;
  4439. left = ol;
  4440. };
  4441. }
  4442. //给图标的位置赋值
  4443. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4444. if (i < childs.length - 1) {
  4445. //页面图标每次向下加95
  4446. left += 150;
  4447. }
  4448. }
  4449. //返回最后调用的图标的位置
  4450. return [top, left];
  4451. }
  4452. /**
  4453. * 桌面点击事件逻辑
  4454. *
  4455. * @param {element} 桌面元素
  4456. * @param {object} 上下相距的距离
  4457. * @param {object} 左右相距的距离
  4458. * @return {object} 命名空间
  4459. */
  4460. U.MD.D.click = function (el, obj) {
  4461. var _buttonnumber = event.button; //点击的按钮的事件值
  4462. var _userinfo = US.userInfo;
  4463. U.UF.EV.stopBubble(); //阻止向上冒泡
  4464. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4465. if (_buttonnumber < 2) {
  4466. //如果是click事件的处理
  4467. if (event.type == "click") {
  4468. //如果元素在mousemove事件中没有移动则出发click事件
  4469. if (!U.MD.D.I.IsDrag) {
  4470. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4471. U.alert("请先登录您的账号!");
  4472. setTimeout(() => {
  4473. U.MD.U.L.login();
  4474. }, 2000);
  4475. } else {
  4476. //打开应用处理
  4477. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4478. }
  4479. }
  4480. }
  4481. //如果是mouse事件的处理
  4482. else {
  4483. if (US.Config.type == '1') {
  4484. //拖动处理,添加拖动和拖动结束事件
  4485. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4486. }
  4487. }
  4488. U.MD.D.I.IsDrag = false;
  4489. }
  4490. }
  4491. /**
  4492. * 拖动的处理
  4493. *
  4494. */
  4495. U.MD.D.iconMove = function () {
  4496. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4497. U.MD.D.I.IsDrag = true;
  4498. }
  4499. /**
  4500. * 拖动结束后,这里是定位处理,以网状的形式定位
  4501. *
  4502. * @param {element} 拖动的元素
  4503. * @return {object} 命名空间
  4504. */
  4505. U.MD.D.iconUp = function (el) {
  4506. var _top = 15,
  4507. _left = 20,
  4508. _margin,
  4509. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4510. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4511. if (_positioninfo["OT"] > 15) {
  4512. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4513. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4514. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4515. }
  4516. if (_positioninfo["OL"] > 20) {
  4517. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4518. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4519. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4520. }
  4521. //while循环判断么一个重叠的元素
  4522. do {
  4523. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4524. _top = _positioninfo[0] + 95; //得到定位后的top
  4525. _left = _positioninfo[1]; //得到定位后的left
  4526. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4527. }
  4528. /**
  4529. * 判断拖动后图标是否重叠
  4530. *
  4531. * @param {element} 拖动的元素
  4532. * @param {element} 桌面所有的元素
  4533. * @param {array} 拖动元素的位置
  4534. ----------[0] 上 top
  4535. ----------[1] 左 left
  4536. * @return {object} 命名空间
  4537. */
  4538. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4539. //循环所有的图标
  4540. for (var i = 0; i < childs.length; i++) {
  4541. //判断有没有和该图标诶子重叠的元素
  4542. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4543. return childs[i]; //如果有返回
  4544. }
  4545. }
  4546. }
  4547. //#endregion
  4548. //#endregion
  4549. //#region 桌面应用
  4550. /**
  4551. * 打开应用
  4552. *
  4553. * @param {string} 类型
  4554. -----------------Disk 网盘系统
  4555. -----------------PDisk 学习系统网盘
  4556. -----------------Poto 图片
  4557. -----------------Video 视频
  4558. -----------------Music 音乐
  4559. -----------------Word word
  4560. -----------------Excel excel
  4561. -----------------Txt 记事本
  4562. -----------------PB 学习系统
  4563. -----------------Blog 朋友圈系统
  4564. -----------------FTP ftp系统
  4565. -----------------Group 好友群
  4566. -----------------SY 首页系统
  4567. -----------------Set 个人设置
  4568. -----------------XSet 系统设置
  4569. -----------------App 我们所有的app
  4570. -----------------BC c.1473.cn 平台
  4571. -----------------CWeb d.1473.cn 变成平台
  4572. -----------------其他的外联系统 我们统一用iframe打开
  4573. * @param {array} 类型
  4574. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4575. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4576. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4577. 如果第一个参数为其他,则无第二个参数
  4578. * @returns {array}
  4579. */
  4580. window.addEventListener('message', function (e) { // 监听 message 事件
  4581. // alert(e.data.type);
  4582. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4583. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4584. //3是展示全部阶段 2学生 1老师 4专家
  4585. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4586. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4587. //3是展示全部阶段 2学生 1老师 4专家
  4588. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4589. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4590. //3是展示全部阶段 2学生 1老师 4专家
  4591. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4592. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4593. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4594. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4595. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4596. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4597. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4598. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4599. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4600. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4601. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4602. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4603. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4604. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4605. //3是展示全部阶段 2学生 1老师 4专家
  4606. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4607. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4608. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4609. U.MD.D.I.selectUser();
  4610. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4611. var _formel = document.getElementById("study");
  4612. U.UF.F.windowZooming(_formel);
  4613. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4614. var _formel = document.getElementById("studyDetail");
  4615. U.UF.F.windowZooming(_formel);
  4616. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4617. var _formel = document.getElementById("studyDetail");
  4618. U.UF.F.windowZooming(_formel);
  4619. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4620. var _formel = document.getElementById("studentStudy");
  4621. U.UF.F.windowZooming(_formel);
  4622. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4623. // var _formel = document.getElementById("study");
  4624. //如果最大化了,那么就把他缩小
  4625. // if (_formel.ismaximize) {
  4626. // return;
  4627. // }
  4628. // U.UF.F.windowZooming(_formel);
  4629. // U.UF.F.topWindow(_formel);
  4630. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4631. // var _formel = document.getElementById("studyDetail");
  4632. //如果最大化了,那么就把他缩小
  4633. // if (_formel.ismaximize) {
  4634. // return;
  4635. // }
  4636. // U.UF.F.windowZooming(_formel);
  4637. // U.UF.F.topWindow(_formel);
  4638. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4639. // var _formel = document.getElementById("studentStudy");
  4640. // if (_formel.ismaximize) {
  4641. // return;
  4642. // }
  4643. // U.UF.F.windowZooming(_formel);
  4644. // U.UF.F.topWindow(_formel);
  4645. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4646. var _formel = document.getElementById("study");
  4647. // if (_formel.ismaximize) {
  4648. // return;
  4649. // }
  4650. // U.UF.F.windowZooming(_formel);
  4651. U.UF.F.topWindow(_formel);
  4652. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4653. var _formel = document.getElementById("studentIndex");
  4654. U.UF.F.windowZooming(_formel);
  4655. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4656. var _formel = document.getElementById("studyDetailS");
  4657. U.UF.F.windowZooming(_formel);
  4658. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4659. var _formel = document.getElementById("studioIndex");
  4660. U.UF.F.windowZooming(_formel);
  4661. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4662. var _formel = document.getElementById("studyDetailStudio");
  4663. U.UF.F.windowZooming(_formel);
  4664. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4665. var _formel = document.getElementById("studyDetailStudio");
  4666. U.UF.F.windowZooming(_formel);
  4667. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4668. var _formel = document.getElementById("studyDetailNT");
  4669. U.UF.F.windowZooming(_formel);
  4670. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4671. var _formel = document.getElementById("studyDetailS");
  4672. U.UF.F.windowZooming(_formel);
  4673. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4674. var _formel = document.getElementById("studyDetailS");
  4675. U.UF.F.topWindow(_formel);
  4676. } else if (e.data.tools && e.data.tools == "1") {
  4677. // U.MD.D.I.openApplication("whiteboard")
  4678. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "2") {
  4680. U.MD.D.I.openApplication("note")
  4681. } else if (e.data.tools && e.data.tools == "3") {
  4682. // U.MD.D.I.openApplication("mind")
  4683. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4684. } else if (e.data.tools && e.data.tools == "4") {
  4685. U.MD.D.I.openApplication("investigation")
  4686. } else if (e.data.tools && e.data.tools == "6") {
  4687. // U.MD.D.I.openApplication("doc")
  4688. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4689. } else if (e.data.tools && e.data.tools == "7") {
  4690. // U.MD.D.I.openApplication("mindNetwork")
  4691. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4692. } else if (e.data.tools && e.data.tools == "8") {
  4693. U.MD.D.I.openApplication("library")
  4694. } else if (e.data.tools && e.data.tools == "17") {
  4695. U.MD.D.I.openApplication("stuLibrary")
  4696. } else if (e.data.tools && e.data.tools == "18") {
  4697. U.MD.D.I.openApplication("train")
  4698. } else if (e.data.tools && e.data.tools == "21") {
  4699. U.MD.D.I.openApplication("program")
  4700. } else if (e.data.tools && e.data.tools == "22") {
  4701. U.MD.D.I.openApplication("AIprogram2")
  4702. } else if (e.data.tools && e.data.tools == "23") {
  4703. U.MD.D.I.openApplication("Pythonprogram")
  4704. } else if (e.data.tools && e.data.tools == "24") {
  4705. U.MD.D.I.openApplication("AIprogram")
  4706. } else if (e.data.tools && e.data.tools == "25") {
  4707. U.MD.D.I.openApplication("sys")
  4708. } else if (e.data.tools && e.data.tools == "26") {
  4709. // U.MD.D.I.openApplication("courseDesign")
  4710. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4711. } else if (e.data.tools && e.data.tools == "31") {
  4712. U.MD.D.I.openApplication("netWorkPanel")
  4713. } else if (e.data.tools && e.data.tools == "32") {
  4714. U.MD.D.I.openApplication("codeEdit")
  4715. } else if (e.data.tools && e.data.tools == "57") {
  4716. U.MD.D.I.openApplication("CocoPi")
  4717. } else if (e.data.tools && e.data.tools == "63") {
  4718. U.MD.D.I.openApplication("Wood")
  4719. } else if (e.data.tools && e.data.tools == "58") {
  4720. U.MD.D.I.openApplication("car")
  4721. } else if (e.data.tools && e.data.tools == "59") {
  4722. U.MD.D.I.openApplication("lineSearch")
  4723. } else if (e.data.tools && e.data.tools == "60") {
  4724. U.MD.D.I.openApplication("deepLearning")
  4725. } else if (e.data.tools && e.data.tools == "61") {
  4726. U.MD.D.I.openApplication("allHistory")
  4727. } else if (e.data.tools && e.data.tools == "28") {
  4728. U.MD.D.I.openApplication("translation")
  4729. } else if (e.data.tools && e.data.tools == "37") {
  4730. U.MD.D.I.openApplication("mohe")
  4731. } else if (e.data.tools && e.data.tools == "38") {
  4732. U.MD.D.I.openApplication("24game")
  4733. } else if (e.data.tools && e.data.tools == "39") {
  4734. U.MD.D.I.openApplication("GeoGebra")
  4735. } else if (e.data.tools && e.data.tools == "43") {
  4736. U.MD.D.I.openApplication("studentEvaluate")
  4737. } else if (e.data.tools && e.data.tools == "44") {
  4738. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4739. } else if (e.data.tools && e.data.tools == "46") {
  4740. U.MD.D.I.openApplication("project")
  4741. } else if (e.data.tools && e.data.tools == "71") {
  4742. U.MD.D.I.openApplication("aigptCourse")
  4743. } else if (e.data.tools && e.data.tools == "1s") {
  4744. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4745. } else if (e.data.tools && e.data.tools == "3s") {
  4746. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4747. } else if (e.data.tools && e.data.tools == "6s") {
  4748. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4749. } else if (e.data.tools && e.data.tools == "1studio") {
  4750. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4751. } else if (e.data.tools && e.data.tools == "3studio") {
  4752. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4753. } else if (e.data.tools && e.data.tools == "6studio") {
  4754. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4755. } else if (e.data.tools && e.data.tools == "3y") {
  4756. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4757. } else if (e.data.tools && e.data.tools == "1y") {
  4758. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4759. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4760. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4761. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4762. U.MD.D.I.openApplication("AIAnalyse")
  4763. } else if (e.data.tools && e.data.tools == "1teacher") {
  4764. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4765. } else if (e.data.tools && e.data.tools == "3teacher") {
  4766. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4767. } else if (e.data.tools && e.data.tools == "7teacher") {
  4768. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4769. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4770. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4771. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4772. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4773. } else if (e.data.tools && e.data.tools == "1E") {
  4774. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4775. } else if (e.data.tools && e.data.tools == "3E") {
  4776. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4777. } else if (e.data.tools && e.data.tools == "57y") {
  4778. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4779. } else if (e.data.tools && e.data.tools == "57u") {
  4780. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4781. } else if (e.data.tools && e.data.tools == "57teacher") {
  4782. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4783. } else if (e.data.tools && e.data.tools == "64") {
  4784. U.MD.D.I.openApplication("AIChat")
  4785. } else if (e.data.tools && e.data.tools == "66") {
  4786. U.MD.D.I.openApplication("formulaEdi")
  4787. } else if (e.data.tools && e.data.tools == "67") {
  4788. U.MD.D.I.openApplication("molStr")
  4789. } else if (e.data.tools && e.data.tools == "68") {
  4790. U.MD.D.I.openApplication("timeAxis")
  4791. } else if (e.data.tools && e.data.tools == "openCourse") {
  4792. let _data = {
  4793. typea: e.data.typea || '',
  4794. typeb: e.data.typeb || '',
  4795. typed: e.data.typed || '',
  4796. }
  4797. U.MD.D.I.openInApplication("index", _data)
  4798. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4799. let _data = {
  4800. classid: e.data.classid || '',
  4801. }
  4802. U.MD.D.I.openInApplication("dataClass", _data)
  4803. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4804. let _data = {
  4805. cid: e.data.cid || '',
  4806. gid: e.data.gid || '',
  4807. }
  4808. U.MD.D.I.openInApplication("opencCscl", _data)
  4809. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4810. U.MD.D.I.openApplication("dataBoardTest")
  4811. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4812. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4813. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4814. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4815. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4816. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4817. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4818. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4819. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4820. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4821. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4822. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4823. }else if (e.data.tools && e.data.tools == "loginSz") {
  4824. U.MD.D.I.openInApplication("loginSz")
  4825. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4826. if($('#classroom_observation_board')[0]){
  4827. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4828. }
  4829. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4830. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4831. if($('#classroom_observation_ob_comment')[0]){
  4832. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4833. }
  4834. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4835. }else if (e.data.tools && e.data.tools == "logout"){
  4836. U.MD.U.LO.logoutSystem()
  4837. }else if (e.data.tools && e.data.tools == "getLogin"){
  4838. let _iframe = $('#UI_Login')[0];
  4839. if (_iframe) {
  4840. var userInfo = US.userInfo;
  4841. var type = 2
  4842. if(userInfo && userInfo.userid){
  4843. type = 1
  4844. }
  4845. _contentWindow = _iframe.contentWindow;
  4846. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4847. }
  4848. }
  4849. });
  4850. U.MD.D.I.selectUser = function () {
  4851. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4852. if (res.value[0].length > 0) {
  4853. US.userInfo = res.value[0][0];
  4854. $(".userName")[0].innerHTML = US.userInfo.username;
  4855. }
  4856. }, [], { "type": "GET", "withCredentials": true });
  4857. }
  4858. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4859. var _userinfo = US.userInfo, //登录用户信息
  4860. _userid = US.userInfo.userid, //登录用户id
  4861. _oid = _userinfo.organizeid,
  4862. _type = US.userInfo.type,
  4863. _org = US.userInfo.org,
  4864. _role = US.userInfo.role,
  4865. _classId = US.userInfo.classid;
  4866. if (_type == 4) {
  4867. tType = 4
  4868. }
  4869. switch (str) {
  4870. case "studyDetailNT": //无终端模式
  4871. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4872. setTimeout(() => {
  4873. U.MD.U.L.login();
  4874. }, 2000);
  4875. } else {
  4876. _formdiv = new U.UF.UI.form(
  4877. "课程详情",
  4878. $$("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 }), {
  4879. "id": "studyDetailNT",
  4880. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. _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); } }
  4886. break;
  4887. }
  4888. case "studyDetail":
  4889. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4890. setTimeout(() => {
  4891. U.MD.U.L.login();
  4892. }, 2000);
  4893. } else {
  4894. _formdiv = new U.UF.UI.form(
  4895. "课程详情",
  4896. $$("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 }), {
  4897. "id": "studyDetail",
  4898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4899. "onresize": function () { }
  4900. }, {
  4901. closecallback: function () { }
  4902. }, { "style": { "height": "36px" } }).form; //创建窗体
  4903. _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); } }
  4904. break;
  4905. }
  4906. case "studyDetailTrain":
  4907. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4908. setTimeout(() => {
  4909. U.MD.U.L.login();
  4910. }, 2000);
  4911. } else {
  4912. _formdiv = new U.UF.UI.form(
  4913. "培训详情",
  4914. $$("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 }), {
  4915. "id": "studyDetailTrain",
  4916. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4917. "onresize": function () { }
  4918. }, {
  4919. closecallback: function () { }
  4920. }, { "style": { "height": "36px" } }).form; //创建窗体
  4921. _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); } }
  4922. break;
  4923. }
  4924. case "studyDetailS":
  4925. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4926. setTimeout(() => {
  4927. U.MD.U.L.login();
  4928. }, 2000);
  4929. } else {
  4930. _formdiv = new U.UF.UI.form(
  4931. "项目详情",
  4932. $$("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 }), {
  4933. "id": "studyDetailS",
  4934. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4935. "onresize": function () { }
  4936. }, {
  4937. closecallback: function () { }
  4938. }, { "style": { "height": "36px" } }).form; //创建窗体
  4939. _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); } }
  4940. break;
  4941. }
  4942. case "studyDetailStudio":
  4943. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4944. setTimeout(() => {
  4945. U.MD.U.L.login();
  4946. }, 2000);
  4947. } else {
  4948. _formdiv = new U.UF.UI.form(
  4949. "工作详情",
  4950. $$("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 }), {
  4951. "id": "studyDetailStudio",
  4952. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _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); } }
  4958. break;
  4959. }
  4960. case "studyDetailS5":
  4961. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4962. setTimeout(() => {
  4963. U.MD.U.L.login();
  4964. }, 2000);
  4965. } else {
  4966. _formdiv = new U.UF.UI.form(
  4967. "项目详情",
  4968. $$("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 }), {
  4969. "id": "studyDetailS",
  4970. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. closecallback: function () { }
  4974. }, { "style": { "height": "36px" } }).form; //创建窗体
  4975. _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); } }
  4976. break;
  4977. }
  4978. case "studyDetailGM":
  4979. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4980. setTimeout(() => {
  4981. U.MD.U.L.login();
  4982. }, 2000);
  4983. } else {
  4984. _formdiv = new U.UF.UI.form(
  4985. "课程详情",
  4986. $$("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 }), {
  4987. "id": "studyDetail",
  4988. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _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); } }
  4994. break;
  4995. }
  4996. case "hanUrl":
  4997. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4998. setTimeout(() => {
  4999. U.MD.U.L.login();
  5000. }, 2000);
  5001. } else {
  5002. _formdiv = new U.UF.UI.form(
  5003. "汉字宫",
  5004. $$("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" }), {
  5005. "id": "hanUrl",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. _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); } }
  5012. break;
  5013. }
  5014. case "index":
  5015. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5016. setTimeout(() => {
  5017. U.MD.U.L.login();
  5018. }, 2000);
  5019. } else {
  5020. _formdiv = new U.UF.UI.form(
  5021. "课程中心",
  5022. $$("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 }), {
  5023. "id": "study",
  5024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () { }
  5028. }, { "style": { "height": "36px" } }).form; //创建窗体
  5029. _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); } }
  5030. break;
  5031. }
  5032. case "dataClass":
  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/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5041. "id": "dataClass",
  5042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. _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); } }
  5048. break;
  5049. }
  5050. case "opencCscl":
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. setTimeout(() => {
  5053. U.MD.U.L.login();
  5054. }, 2000);
  5055. } else {
  5056. _formdiv = new U.UF.UI.form(
  5057. "协同建构",
  5058. $$("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 }), {
  5059. "id": "futureClass",
  5060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5061. "onresize": function () { }
  5062. }, {
  5063. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5064. }, { "style": { "height": "36px" } }).form; //创建窗体
  5065. _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); } }
  5066. break;
  5067. }
  5068. case "openCourseUpdate":
  5069. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5070. setTimeout(() => {
  5071. U.MD.U.L.login();
  5072. }, 2000);
  5073. } else {
  5074. _formdiv = new U.UF.UI.form(
  5075. "课程管理",
  5076. $$("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 }), {
  5077. "id": "openCourseUpdate",
  5078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5079. "onresize": function () { }
  5080. }, {
  5081. closecallback: function () { }
  5082. }, { "style": { "height": "36px" } }).form; //创建窗体
  5083. break;
  5084. }
  5085. case "openNewCourseUpdate":
  5086. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5087. setTimeout(() => {
  5088. U.MD.U.L.login();
  5089. }, 2000);
  5090. } else {
  5091. _formdiv = new U.UF.UI.form(
  5092. "课程管理",
  5093. $$("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 }), {
  5094. "id": "openCourseUpdate",
  5095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5096. "onresize": function () { }
  5097. }, {
  5098. closecallback: function () { }
  5099. }, { "style": { "height": "36px" } }).form; //创建窗体
  5100. break;
  5101. }
  5102. case "openCourseEUpdate":
  5103. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5104. setTimeout(() => {
  5105. U.MD.U.L.login();
  5106. }, 2000);
  5107. } else {
  5108. _formdiv = new U.UF.UI.form(
  5109. "课程管理",
  5110. $$("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 }), {
  5111. "id": "openCourseUpdate",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. break;
  5118. }
  5119. case "openCourseAiUpdate":
  5120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5121. setTimeout(() => {
  5122. U.MD.U.L.login();
  5123. }, 2000);
  5124. } else {
  5125. _formdiv = new U.UF.UI.form(
  5126. "课程管理",
  5127. $$("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 }), {
  5128. "id": "openCourseUpdate",
  5129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //创建窗体
  5134. break;
  5135. }
  5136. case "openCourseAiUpdate2":
  5137. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5138. setTimeout(() => {
  5139. U.MD.U.L.login();
  5140. }, 2000);
  5141. } else {
  5142. _formdiv = new U.UF.UI.form(
  5143. "课程管理",
  5144. $$("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 }), {
  5145. "id": "openCourseUpdate",
  5146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. break;
  5152. }
  5153. case "openCourseNewUpdate":
  5154. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5155. setTimeout(() => {
  5156. U.MD.U.L.login();
  5157. }, 2000);
  5158. } else {
  5159. _formdiv = new U.UF.UI.form(
  5160. "课程管理",
  5161. $$("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 }), {
  5162. "id": "openCourseUpdate",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. break;
  5169. }
  5170. case "inviteLoginSz":
  5171. _formdiv = new U.UF.UI.form(
  5172. "随机码登录",
  5173. $$("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 }), {
  5174. "id": "loginSz",
  5175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. break;
  5181. case "loginSz":
  5182. _formdiv = new U.UF.UI.form(
  5183. "教师登录",
  5184. $$("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" }), {
  5185. "id": "loginSz",
  5186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5187. "onresize": function () { }
  5188. }, {
  5189. closecallback: function () { }
  5190. }, { "style": { "height": "36px" } }).form; //创建窗体
  5191. break;
  5192. case "teacher":
  5193. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5194. setTimeout(() => {
  5195. U.MD.U.L.login();
  5196. }, 2000);
  5197. } else {
  5198. _formdiv = new U.UF.UI.form(
  5199. "教师管理",
  5200. $$("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 }), {
  5201. "id": "teacher",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //创建窗体
  5207. break;
  5208. }
  5209. case "dataBoardSZArea":
  5210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5211. setTimeout(() => {
  5212. U.MD.U.L.login();
  5213. }, 2000);
  5214. } else {
  5215. _formdiv = new U.UF.UI.form(
  5216. "综合数据看板",
  5217. $$("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 }), {
  5218. "id": "dataBoardSZArea",
  5219. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. break;
  5225. }
  5226. case "dataBoardSZCity":
  5227. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5228. setTimeout(() => {
  5229. U.MD.U.L.login();
  5230. }, 2000);
  5231. } else {
  5232. _formdiv = new U.UF.UI.form(
  5233. "综合数据看板",
  5234. $$("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 }), {
  5235. "id": "dataBoardSZCity",
  5236. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. break;
  5242. }
  5243. case "classroom_observation_board":
  5244. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5245. setTimeout(() => {
  5246. U.MD.U.L.login();
  5247. }, 2000);
  5248. } else {
  5249. _formdiv = new U.UF.UI.form(
  5250. "课堂观察",
  5251. $$("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 }), {
  5252. "id": "classroom_observation_board",
  5253. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. break;
  5259. }
  5260. case "classroom_observation_ob_comment":
  5261. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5262. setTimeout(() => {
  5263. U.MD.U.L.login();
  5264. }, 2000);
  5265. } else {
  5266. _formdiv = new U.UF.UI.form(
  5267. "课堂审核",
  5268. $$("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 }), {
  5269. "id": "classroom_observation_ob_comment",
  5270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. break;
  5276. }
  5277. }
  5278. }
  5279. U.MD.D.I.openApplication = function (str, obj, info) {
  5280. obj = obj || {};
  5281. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5282. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5283. _userinfo = US.userInfo, //登录用户信息
  5284. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5285. _oid = obj.organizeid || _userinfo.organizeid,
  5286. _type = US.userInfo.type,
  5287. _org = US.userInfo.org,
  5288. _role = US.userInfo.role,
  5289. _classId = US.userInfo.classid,
  5290. _TscreenType = 1
  5291. _screenType = 2,
  5292. _SscreenType = 3;
  5293. let iframeBool = true
  5294. if(U.UF.UI.form.allForm[str]){
  5295. iframeBool = false
  5296. }
  5297. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5298. return;
  5299. }
  5300. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5301. switch (str) {
  5302. case "studnetProject": //好友打开
  5303. _formdiv = new U.UF.UI.form(
  5304. "我的项目",
  5305. $$("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 }), {
  5306. "id": "studnetProject",
  5307. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //创建窗体
  5312. _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); } }
  5313. break;
  5314. case "studentEvaluate": //好友打开
  5315. _formdiv = new U.UF.UI.form(
  5316. "我的评价",
  5317. $$("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 }), {
  5318. "id": "studentEvaluate",
  5319. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5320. "onresize": function () { }
  5321. }, {
  5322. closecallback: function () { }
  5323. }, { "style": { "height": "36px" } }).form; //创建窗体
  5324. _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); } }
  5325. break;
  5326. case "my":
  5327. _formdiv = new U.UF.UI.form(
  5328. "我的资料",
  5329. $$("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 }), {
  5330. "id": "my",
  5331. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //创建窗体
  5336. _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); } }
  5337. break;
  5338. case "program":
  5339. _formdiv = new U.UF.UI.form(
  5340. "编程平台",
  5341. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5342. "id": "program",
  5343. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5344. "onresize": function () { }
  5345. }, {
  5346. closecallback: function () { }
  5347. }, { "style": { "height": "36px" } }).form; //创建窗体
  5348. _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); } }
  5349. break;
  5350. case "library":
  5351. _formdiv = new U.UF.UI.form(
  5352. "素材库",
  5353. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5354. "id": "library",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //创建窗体
  5360. _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); } }
  5361. break;
  5362. case "whiteboard":
  5363. _formdiv = new U.UF.UI.form(
  5364. "电子白板",
  5365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5366. "id": "whiteboard",
  5367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5368. "onresize": function () { }
  5369. }, {
  5370. closecallback: function () { }
  5371. }, { "style": { "height": "36px" } }).form; //创建窗体
  5372. _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); } }
  5373. break;
  5374. case "investigation":
  5375. _formdiv = new U.UF.UI.form(
  5376. "问卷调查",
  5377. $$("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 }), {
  5378. "id": "investigation",
  5379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5380. "onresize": function () { }
  5381. }, {
  5382. closecallback: function () { }
  5383. }, { "style": { "height": "36px" } }).form; //创建窗体
  5384. _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); } }
  5385. break;
  5386. case "note":
  5387. _formdiv = new U.UF.UI.form(
  5388. "便签分类",
  5389. $$("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 }), {
  5390. "id": "note",
  5391. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //创建窗体
  5396. _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); } }
  5397. break;
  5398. // case "score":
  5399. // _formdiv = new U.UF.UI.form(
  5400. // "量规评分",
  5401. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5402. // "id": "score",
  5403. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5404. // "onresize": function() {}
  5405. // }, {
  5406. // closecallback: function() {}
  5407. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5408. // _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); } }
  5409. // break;
  5410. case "mind":
  5411. _formdiv = new U.UF.UI.form(
  5412. "思维导图",
  5413. $$("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"
  5414. "id": "mind",
  5415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5416. "onresize": function () { }
  5417. }, {
  5418. closecallback: function () { }
  5419. }, { "style": { "height": "36px" } }).form; //创建窗体
  5420. _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); } }
  5421. break;
  5422. case "doc":
  5423. // U.MD.D.I.isRoom();
  5424. _formdiv = new U.UF.UI.form(
  5425. "协同文档",
  5426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5427. "id": "doc",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5434. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5435. // })
  5436. _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); } }
  5437. break;
  5438. case "studentStudy":
  5439. _formdiv = new U.UF.UI.form(
  5440. "课程中心",
  5441. $$("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
  5442. "id": "studentStudy",
  5443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //创建窗体
  5448. _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); } }
  5449. break;
  5450. case "train": //好友打开
  5451. _formdiv = new U.UF.UI.form(
  5452. "训练平台",
  5453. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5454. "id": "train",
  5455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //创建窗体
  5460. _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); } }
  5461. break;
  5462. case "mindNetwork": //好友打开
  5463. _formdiv = new U.UF.UI.form(
  5464. "思维网格",
  5465. $$("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 }), {
  5466. "id": "mindNetwork",
  5467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5468. "onresize": function () { }
  5469. }, {
  5470. closecallback: function () { }
  5471. }, { "style": { "height": "36px" } }).form; //创建窗体
  5472. _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); } }
  5473. break;
  5474. case "studentClassRoom": //好友打开
  5475. _formdiv = new U.UF.UI.form(
  5476. "实时课堂",
  5477. $$("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 }), {
  5478. "id": "studentClassRoom",
  5479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5480. "onresize": function () { }
  5481. }, {
  5482. closecallback: function () { }
  5483. }, { "style": { "height": "36px" } }).form; //创建窗体
  5484. _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); } }
  5485. setTimeout(() => {
  5486. U.UF.F.windowZooming(_formdiv)
  5487. }, 0);
  5488. break;
  5489. }
  5490. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5491. switch (str) {
  5492. case "studnetProject": //好友打开
  5493. _formdiv = new U.UF.UI.form(
  5494. "我的项目",
  5495. $$("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 }), {
  5496. "id": "studnetProject",
  5497. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, { "style": { "height": "36px" } }).form; //创建窗体
  5502. _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); } }
  5503. break;
  5504. case "studentEvaluate": //好友打开
  5505. _formdiv = new U.UF.UI.form(
  5506. "我的评价",
  5507. $$("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 }), {
  5508. "id": "studentEvaluate",
  5509. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //创建窗体
  5514. _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); } }
  5515. break;
  5516. case "my":
  5517. _formdiv = new U.UF.UI.form(
  5518. "我的资料",
  5519. $$("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 }), {
  5520. "id": "my",
  5521. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. _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); } }
  5527. break;
  5528. case "program":
  5529. _formdiv = new U.UF.UI.form(
  5530. "编程平台",
  5531. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5532. "id": "program",
  5533. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. _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); } }
  5539. break;
  5540. case "library":
  5541. _formdiv = new U.UF.UI.form(
  5542. "素材库",
  5543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5544. "id": "library",
  5545. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5546. "onresize": function () { }
  5547. }, {
  5548. closecallback: function () { }
  5549. }, { "style": { "height": "36px" } }).form; //创建窗体
  5550. _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); } }
  5551. break;
  5552. case "whiteboard":
  5553. _formdiv = new U.UF.UI.form(
  5554. "电子白板",
  5555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5556. "id": "whiteboard",
  5557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5558. "onresize": function () { }
  5559. }, {
  5560. closecallback: function () { }
  5561. }, { "style": { "height": "36px" } }).form; //创建窗体
  5562. _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); } }
  5563. break;
  5564. case "investigation":
  5565. _formdiv = new U.UF.UI.form(
  5566. "问卷调查",
  5567. $$("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 }), {
  5568. "id": "investigation",
  5569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5570. "onresize": function () { }
  5571. }, {
  5572. closecallback: function () { }
  5573. }, { "style": { "height": "36px" } }).form; //创建窗体
  5574. _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); } }
  5575. break;
  5576. case "note":
  5577. _formdiv = new U.UF.UI.form(
  5578. "便签分类",
  5579. $$("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 }), {
  5580. "id": "note",
  5581. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5582. "onresize": function () { }
  5583. }, {
  5584. closecallback: function () { }
  5585. }, { "style": { "height": "36px" } }).form; //创建窗体
  5586. _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); } }
  5587. break;
  5588. // case "score":
  5589. // _formdiv = new U.UF.UI.form(
  5590. // "量规评分",
  5591. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5592. // "id": "score",
  5593. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5594. // "onresize": function() {}
  5595. // }, {
  5596. // closecallback: function() {}
  5597. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5598. // _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); } }
  5599. // break;
  5600. case "mind":
  5601. _formdiv = new U.UF.UI.form(
  5602. "思维导图",
  5603. $$("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"
  5604. "id": "mind",
  5605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () { }
  5609. }, { "style": { "height": "36px" } }).form; //创建窗体
  5610. _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); } }
  5611. break;
  5612. case "doc":
  5613. // U.MD.D.I.isRoom();
  5614. _formdiv = new U.UF.UI.form(
  5615. "协同文档",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5617. "id": "doc",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5624. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5625. })
  5626. _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); } }
  5627. break;
  5628. case "train": //好友打开
  5629. _formdiv = new U.UF.UI.form(
  5630. "训练平台",
  5631. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5632. "id": "train",
  5633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5634. "onresize": function () { }
  5635. }, {
  5636. closecallback: function () { }
  5637. }, { "style": { "height": "36px" } }).form; //创建窗体
  5638. _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); } }
  5639. break;
  5640. case "studentStudy":
  5641. _formdiv = new U.UF.UI.form(
  5642. "课程中心",
  5643. $$("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
  5644. "id": "studentStudy",
  5645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5646. "onresize": function () { }
  5647. }, {
  5648. closecallback: function () { }
  5649. }, { "style": { "height": "36px" } }).form; //创建窗体
  5650. _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); } }
  5651. break;
  5652. case "mindNetwork": //好友打开
  5653. _formdiv = new U.UF.UI.form(
  5654. "思维网格",
  5655. $$("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 }), {
  5656. "id": "mindNetwork",
  5657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5658. "onresize": function () { }
  5659. }, {
  5660. closecallback: function () { }
  5661. }, { "style": { "height": "36px" } }).form; //创建窗体
  5662. _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); } }
  5663. break;
  5664. case "studentClassRoom": //好友打开
  5665. _formdiv = new U.UF.UI.form(
  5666. "实时课堂",
  5667. $$("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 }), {
  5668. "id": "studentClassRoom",
  5669. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, { "style": { "height": "36px" } }).form; //创建窗体
  5674. _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); } }
  5675. setTimeout(() => {
  5676. U.UF.F.windowZooming(_formdiv)
  5677. }, 0);
  5678. break;
  5679. }
  5680. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5681. //选择应用处理
  5682. switch (str) {
  5683. case "project": //好友打开
  5684. _formdiv = new U.UF.UI.form(
  5685. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5686. $$("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 }), {
  5687. "id": "project",
  5688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _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); } }
  5694. break;
  5695. case "student":
  5696. _formdiv = new U.UF.UI.form(
  5697. "学生管理",
  5698. $$("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 }), {
  5699. "id": "student",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. _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); } }
  5706. break;
  5707. case "evaluate":
  5708. _formdiv = new U.UF.UI.form(
  5709. "学生评价",
  5710. $$("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 }), {
  5711. "id": "evaluate",
  5712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. _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); } }
  5718. break;
  5719. case "sys":
  5720. _formdiv = new U.UF.UI.form(
  5721. "目标管理",
  5722. $$("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 }), {
  5723. "id": "sys",
  5724. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5725. "onresize": function () { }
  5726. }, {
  5727. closecallback: function () { }
  5728. }, { "style": { "height": "36px" } }).form; //创建窗体
  5729. _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); } }
  5730. break;
  5731. case "courseDesign":
  5732. _formdiv = new U.UF.UI.form(
  5733. "项目设计",
  5734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5735. "id": "courseDesign",
  5736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5737. "onresize": function () { }
  5738. }, {
  5739. closecallback: function () { }
  5740. }, { "style": { "height": "36px" } }).form; //创建窗体
  5741. _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); } }
  5742. break;
  5743. case "program":
  5744. _formdiv = new U.UF.UI.form(
  5745. "编程平台",
  5746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5747. "id": "program",
  5748. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, { "style": { "height": "36px" } }).form; //创建窗体
  5753. _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); } }
  5754. break;
  5755. case "class":
  5756. _formdiv = new U.UF.UI.form(
  5757. "班级管理",
  5758. $$("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 }), {
  5759. "id": "class",
  5760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5761. "onresize": function () { }
  5762. }, {
  5763. closecallback: function () { }
  5764. }, { "style": { "height": "36px" } }).form; //创建窗体
  5765. _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); } }
  5766. break;
  5767. case "Grade":
  5768. _formdiv = new U.UF.UI.form(
  5769. "年级管理",
  5770. $$("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 }), {
  5771. "id": "Grade",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //创建窗体
  5777. _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); } }
  5778. break;
  5779. case "teacherOffice":
  5780. _formdiv = new U.UF.UI.form(
  5781. "教研室",
  5782. $$("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 }), {
  5783. "id": "teacherOffice",
  5784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5785. "onresize": function () { }
  5786. }, {
  5787. closecallback: function () { }
  5788. }, { "style": { "height": "36px" } }).form; //创建窗体
  5789. _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); } }
  5790. break;
  5791. case "my":
  5792. _formdiv = new U.UF.UI.form(
  5793. "我的资料",
  5794. $$("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 }), {
  5795. "id": "my",
  5796. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5797. "onresize": function () { }
  5798. }, {
  5799. closecallback: function () { }
  5800. }, { "style": { "height": "36px" } }).form; //创建窗体
  5801. _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); } }
  5802. break;
  5803. case "notice":
  5804. _formdiv = new U.UF.UI.form(
  5805. "通知公告",
  5806. $$("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 }), {
  5807. "id": "notice",
  5808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5809. "onresize": function () { }
  5810. }, {
  5811. closecallback: function () { }
  5812. }, { "style": { "height": "36px" } }).form; //创建窗体
  5813. _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); } }
  5814. break;
  5815. case "library":
  5816. _formdiv = new U.UF.UI.form(
  5817. "素材库",
  5818. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5819. "id": "library",
  5820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5821. "onresize": function () { }
  5822. }, {
  5823. closecallback: function () { }
  5824. }, { "style": { "height": "36px" } }).form; //创建窗体
  5825. _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); } }
  5826. break;
  5827. case "whiteboard":
  5828. _formdiv = new U.UF.UI.form(
  5829. "电子白板",
  5830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5831. "id": "whiteboard",
  5832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, { "style": { "height": "36px" } }).form; //创建窗体
  5837. _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); } }
  5838. break;
  5839. case "investigation":
  5840. _formdiv = new U.UF.UI.form(
  5841. "问卷调查",
  5842. $$("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 }), {
  5843. "id": "investigation",
  5844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5845. "onresize": function () { }
  5846. }, {
  5847. closecallback: function () { }
  5848. }, { "style": { "height": "36px" } }).form; //创建窗体
  5849. _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); } }
  5850. break;
  5851. case "note":
  5852. _formdiv = new U.UF.UI.form(
  5853. "便签分类",
  5854. $$("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 }), {
  5855. "id": "note",
  5856. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5857. "onresize": function () { }
  5858. }, {
  5859. closecallback: function () { }
  5860. }, { "style": { "height": "36px" } }).form; //创建窗体
  5861. _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); } }
  5862. break;
  5863. // case "score":
  5864. // _formdiv = new U.UF.UI.form(
  5865. // "量规评分",
  5866. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5867. // "id": "score",
  5868. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5869. // "onresize": function() {}
  5870. // }, {
  5871. // closecallback: function() {}
  5872. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5873. // _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); } }
  5874. // break;
  5875. case "mind":
  5876. _formdiv = new U.UF.UI.form(
  5877. "思维导图",
  5878. $$("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"
  5879. "id": "mind",
  5880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5881. "onresize": function () { }
  5882. }, {
  5883. closecallback: function () { }
  5884. }, { "style": { "height": "36px" } }).form; //创建窗体
  5885. _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); } }
  5886. break;
  5887. case "doc":
  5888. // U.MD.D.I.isRoom();
  5889. _formdiv = new U.UF.UI.form(
  5890. "协同文档",
  5891. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5892. "id": "doc",
  5893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5894. "onresize": function () { }
  5895. }, {
  5896. closecallback: function () { }
  5897. }, { "style": { "height": "36px" } }).form; //创建窗体
  5898. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5899. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5900. })
  5901. _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); } }
  5902. break;
  5903. case "study":
  5904. _formdiv = new U.UF.UI.form(
  5905. "课程中心",
  5906. $$("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
  5907. "id": "study",
  5908. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. _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); } }
  5914. break;
  5915. case "mindNetwork": //好友打开
  5916. _formdiv = new U.UF.UI.form(
  5917. "思维网格",
  5918. $$("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 }), {
  5919. "id": "mindNetwork",
  5920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5921. "onresize": function () { }
  5922. }, {
  5923. closecallback: function () { }
  5924. }, { "style": { "height": "36px" } }).form; //创建窗体
  5925. _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); } }
  5926. break;
  5927. case "train": //好友打开
  5928. _formdiv = new U.UF.UI.form(
  5929. "训练平台",
  5930. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5931. "id": "mindNetwork",
  5932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5933. "onresize": function () { }
  5934. }, {
  5935. closecallback: function () { }
  5936. }, { "style": { "height": "36px" } }).form; //创建窗体
  5937. _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); } }
  5938. break;
  5939. case "teacherClassRoom": //好友打开
  5940. _formdiv = new U.UF.UI.form(
  5941. "实时课堂",
  5942. $$("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 }), {
  5943. "id": "teacherClassRoom",
  5944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5945. "onresize": function () { }
  5946. }, {
  5947. closecallback: function () { }
  5948. }, { "style": { "height": "36px" } }).form; //创建窗体
  5949. _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); } }
  5950. setTimeout(() => {
  5951. U.UF.F.windowZooming(_formdiv)
  5952. }, 0);
  5953. break;
  5954. }
  5955. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5956. switch (str) {
  5957. case "project": //好友打开
  5958. _formdiv = new U.UF.UI.form(
  5959. "课程管理",
  5960. $$("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 }), {
  5961. "id": "project",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _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); } }
  5968. break;
  5969. case "evaluate":
  5970. _formdiv = new U.UF.UI.form(
  5971. "学生评价",
  5972. $$("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 }), {
  5973. "id": "evaluate",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. _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); } }
  5980. break;
  5981. case "notice":
  5982. _formdiv = new U.UF.UI.form(
  5983. "通知公告",
  5984. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5985. "id": "notice",
  5986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. _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); } }
  5992. break;
  5993. case "stuLibrary":
  5994. _formdiv = new U.UF.UI.form(
  5995. "学习资料",
  5996. $$("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 }), {
  5997. "id": "stuLibrary",
  5998. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _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); } }
  6004. break;
  6005. case "program":
  6006. _formdiv = new U.UF.UI.form(
  6007. "编程平台",
  6008. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6009. "id": "program",
  6010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _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); } }
  6016. break;
  6017. case "whiteboard":
  6018. _formdiv = new U.UF.UI.form(
  6019. "电子白板",
  6020. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6021. "id": "whiteboard",
  6022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. _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); } }
  6028. break;
  6029. case "investigation":
  6030. _formdiv = new U.UF.UI.form(
  6031. "问卷调查",
  6032. $$("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 }), {
  6033. "id": "investigation",
  6034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _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); } }
  6040. break;
  6041. case "mind":
  6042. _formdiv = new U.UF.UI.form(
  6043. "思维导图",
  6044. $$("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"
  6045. "id": "mind",
  6046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6047. "onresize": function () { }
  6048. }, {
  6049. closecallback: function () { }
  6050. }, { "style": { "height": "36px" } }).form; //创建窗体
  6051. _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); } }
  6052. break;
  6053. case "doc":
  6054. // U.MD.D.I.isRoom();
  6055. _formdiv = new U.UF.UI.form(
  6056. "协同文档",
  6057. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6058. "id": "doc",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6065. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6066. })
  6067. _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); } }
  6068. break;
  6069. case "study":
  6070. _formdiv = new U.UF.UI.form(
  6071. "课程中心",
  6072. $$("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
  6073. "id": "study",
  6074. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, { "style": { "height": "36px" } }).form; //创建窗体
  6079. _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); } }
  6080. break;
  6081. case "mindNetwork": //好友打开
  6082. _formdiv = new U.UF.UI.form(
  6083. "思维网格",
  6084. $$("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 }), {
  6085. "id": "mindNetwork",
  6086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "train": //好友打开
  6094. _formdiv = new U.UF.UI.form(
  6095. "训练平台",
  6096. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6097. "id": "train",
  6098. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "sys":
  6106. _formdiv = new U.UF.UI.form(
  6107. "目标管理",
  6108. $$("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 }), {
  6109. "id": "sys",
  6110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break;
  6117. case "courseDesign":
  6118. _formdiv = new U.UF.UI.form(
  6119. "项目设计",
  6120. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6121. "id": "courseDesign",
  6122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. }
  6130. } else if (!_type) {
  6131. switch (str) {
  6132. case "my":
  6133. _formdiv = new U.UF.UI.form(
  6134. "我的资料",
  6135. $$("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 }), {
  6136. "id": "my",
  6137. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. }
  6145. }
  6146. switch (str) {
  6147. // AIprogram2 AI体验 aihub.cocorobo.cn
  6148. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6149. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6150. case "formulaEdi": //公式编辑
  6151. _formdiv = new U.UF.UI.form(
  6152. "公式编辑",
  6153. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6154. "id": "formulaEdi",
  6155. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //创建窗体
  6160. _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); } }
  6161. break;
  6162. case "molStr": //分子结构
  6163. _formdiv = new U.UF.UI.form(
  6164. "分子结构",
  6165. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6166. "id": "molStr",
  6167. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //创建窗体
  6172. _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); } }
  6173. break;
  6174. case "timeAxis": //时间轴
  6175. _formdiv = new U.UF.UI.form(
  6176. "时间轴",
  6177. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6178. "id": "timeAxis",
  6179. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //创建窗体
  6184. _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); } }
  6185. break;
  6186. case "AIprogram2": //AI体验
  6187. _formdiv = new U.UF.UI.form(
  6188. "AI体验",
  6189. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6190. "id": "AIprogram2",
  6191. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //创建窗体
  6196. _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); } }
  6197. break;
  6198. case "Pythonprogram": //python编程
  6199. _formdiv = new U.UF.UI.form(
  6200. "Python编程",
  6201. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6202. "id": "Pythonprogram",
  6203. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //创建窗体
  6208. _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); } }
  6209. break;
  6210. case "AIprogram": //ai编程
  6211. _formdiv = new U.UF.UI.form(
  6212. "AI编程平台",
  6213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6214. "id": "AIprogram",
  6215. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _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); } }
  6221. break;
  6222. case "CocoPi": //CocoPi
  6223. _formdiv = new U.UF.UI.form(
  6224. "CocoPi",
  6225. $$("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" }), {
  6226. "id": "CocoPi",
  6227. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. case "Wood": //Wood
  6235. _formdiv = new U.UF.UI.form(
  6236. "海龟编程",
  6237. $$("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/" }), {
  6238. "id": "Wood",
  6239. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _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); } }
  6245. break;
  6246. case "car": //模拟驾驶
  6247. _formdiv = new U.UF.UI.form(
  6248. "模拟驾驶",
  6249. $$("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/" }), {
  6250. "id": "car",
  6251. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. break;
  6258. case "lineSearch": //路径搜索
  6259. _formdiv = new U.UF.UI.form(
  6260. "路径搜索",
  6261. $$("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/" }), {
  6262. "id": "lineSearch",
  6263. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. _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); } }
  6269. break;
  6270. case "deepLearning": //深度学习
  6271. _formdiv = new U.UF.UI.form(
  6272. "深度学习",
  6273. $$("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/#" }), {
  6274. "id": "deepLearning",
  6275. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6276. "onresize": function () { }
  6277. }, {
  6278. closecallback: function () { }
  6279. }, { "style": { "height": "36px" } }).form; //创建窗体
  6280. _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); } }
  6281. break;
  6282. case "allHistory": //深度学习
  6283. _formdiv = new U.UF.UI.form(
  6284. "全历史",
  6285. $$("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/" }), {
  6286. "id": "allHistory",
  6287. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6288. "onresize": function () { }
  6289. }, {
  6290. closecallback: function () { }
  6291. }, { "style": { "height": "36px" } }).form; //创建窗体
  6292. _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); } }
  6293. break;
  6294. case "chatPDF": //ai编程
  6295. _formdiv = new U.UF.UI.form(
  6296. "chatPDF",
  6297. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6298. "id": "chatPDF",
  6299. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6300. "onresize": function () { }
  6301. }, {
  6302. closecallback: function () { }
  6303. }, { "style": { "height": "36px" } }).form; //创建窗体
  6304. _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); } }
  6305. break;
  6306. case "resources": //国家教育
  6307. _formdiv = new U.UF.UI.form(
  6308. "国家教育",
  6309. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6310. "id": "resources",
  6311. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6312. "onresize": function () { }
  6313. }, {
  6314. closecallback: function () { }
  6315. }, { "style": { "height": "36px" } }).form; //创建窗体
  6316. _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); } }
  6317. break;
  6318. case "codeEdit": //源码编辑
  6319. _formdiv = new U.UF.UI.form(
  6320. "源码编辑",
  6321. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6322. "id": "codeEdit",
  6323. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6324. "onresize": function () { }
  6325. }, {
  6326. closecallback: function () { }
  6327. }, { "style": { "height": "36px" } }).form; //创建窗体
  6328. _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); } }
  6329. break; //
  6330. case "MindMap": //MindMap
  6331. _formdiv = new U.UF.UI.form(
  6332. "MindMap",
  6333. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6334. "id": "MindMap",
  6335. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6336. "onresize": function () { }
  6337. }, {
  6338. closecallback: function () { }
  6339. }, { "style": { "height": "36px" } }).form; //创建窗体
  6340. _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); } }
  6341. break;
  6342. case "netWorkPanel": //netWorkPanel
  6343. _formdiv = new U.UF.UI.form(
  6344. "netWorkPanel",
  6345. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6346. "id": "netWorkPanel",
  6347. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //创建窗体
  6352. _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); } }
  6353. break;
  6354. case "GeoGebra": //GeoGebra
  6355. _formdiv = new U.UF.UI.form(
  6356. "GeoGebra",
  6357. $$("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" }), {
  6358. "id": "GeoGebra",
  6359. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6360. "onresize": function () { }
  6361. }, {
  6362. closecallback: function () { }
  6363. }, { "style": { "height": "36px" } }).form; //创建窗体
  6364. _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); } }
  6365. break;
  6366. case "translation": //翻译
  6367. _formdiv = new U.UF.UI.form(
  6368. "翻译",
  6369. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6370. "id": "translation",
  6371. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _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); } }
  6377. break;
  6378. case "mohe": //魔盒
  6379. _formdiv = new U.UF.UI.form(
  6380. "魔盒识字",
  6381. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6382. "id": "mohe",
  6383. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6384. "onresize": function () { }
  6385. }, {
  6386. closecallback: function () { }
  6387. }, { "style": { "height": "36px" } }).form; //创建窗体
  6388. _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); } }
  6389. break;
  6390. case "24game": //24点
  6391. _formdiv = new U.UF.UI.form(
  6392. "24点",
  6393. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6394. "id": "24game",
  6395. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6396. "onresize": function () { }
  6397. }, {
  6398. closecallback: function () { }
  6399. }, { "style": { "height": "36px" } }).form; //创建窗体
  6400. _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); } }
  6401. break;
  6402. case "case":
  6403. _formdiv = new U.UF.UI.form(
  6404. "课程进展",
  6405. $$("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 }), {
  6406. "id": "case",
  6407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6408. "onresize": function () { }
  6409. }, {
  6410. closecallback: function () { }
  6411. }, { "style": { "height": "36px" } }).form; //创建窗体
  6412. _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); } }
  6413. break;
  6414. case "snf":
  6415. _formdiv = new U.UF.UI.form(
  6416. "赛诺梵",
  6417. $$("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" }), {
  6418. "id": "snf",
  6419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6420. "onresize": function () { }
  6421. }, {
  6422. closecallback: function () { }
  6423. }, { "style": { "height": "36px" } }).form; //创建窗体
  6424. _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); } }
  6425. break;
  6426. case "hanFamily":
  6427. _formdiv = new U.UF.UI.form(
  6428. "汉字家族",
  6429. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6430. "id": "hanFamily",
  6431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6432. "onresize": function () { }
  6433. }, {
  6434. closecallback: function () { }
  6435. }, { "style": { "height": "36px" } }).form; //创建窗体
  6436. _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); } }
  6437. break;
  6438. case "hanClassics":
  6439. _formdiv = new U.UF.UI.form(
  6440. "国学经典",
  6441. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6442. "id": "hanClassics",
  6443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6444. "onresize": function () { }
  6445. }, {
  6446. closecallback: function () { }
  6447. }, { "style": { "height": "36px" } }).form; //创建窗体
  6448. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6449. break;
  6450. case "hanTraining":
  6451. _formdiv = new U.UF.UI.form(
  6452. "笔画训练",
  6453. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6454. "id": "hanTraining",
  6455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, { "style": { "height": "36px" } }).form; //创建窗体
  6460. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6461. break;
  6462. case "hanClass":
  6463. _formdiv = new U.UF.UI.form(
  6464. "书法课堂",
  6465. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6466. "id": "hanClass",
  6467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6468. "onresize": function () { }
  6469. }, {
  6470. closecallback: function () { }
  6471. }, { "style": { "height": "36px" } }).form; //创建窗体
  6472. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6473. break;
  6474. case "han":
  6475. _formdiv = new U.UF.UI.form(
  6476. "汉字宫",
  6477. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6478. "id": "han",
  6479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6480. "onresize": function () { }
  6481. }, {
  6482. closecallback: function () { }
  6483. }, { "style": { "height": "36px" } }).form; //创建窗体
  6484. _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); } }
  6485. break;
  6486. case "projectGM": //课程管理
  6487. _formdiv = new U.UF.UI.form(
  6488. "课程管理",
  6489. $$("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 }), {
  6490. "id": "projectGM",
  6491. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6492. "onresize": function () { }
  6493. }, {
  6494. closecallback: function () { }
  6495. }, { "style": { "height": "36px" } }).form; //创建窗体
  6496. _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); } }
  6497. break;
  6498. case "studyGM": //课程中心
  6499. _formdiv = new U.UF.UI.form(
  6500. "课程中心",
  6501. $$("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
  6502. "id": "study",
  6503. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6504. "onresize": function () { }
  6505. }, {
  6506. closecallback: function () { }
  6507. }, { "style": { "height": "36px" } }).form; //创建窗体
  6508. _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); } }
  6509. break;
  6510. // studentGM
  6511. case "studentGM": //学生管理
  6512. _formdiv = new U.UF.UI.form(
  6513. "学生管理",
  6514. $$("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 }), {
  6515. "id": "studentGM",
  6516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6517. "onresize": function () { }
  6518. }, {
  6519. closecallback: function () { }
  6520. }, { "style": { "height": "36px" } }).form; //创建窗体
  6521. _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); } }
  6522. break;
  6523. case "evaluateGM": //学生评价
  6524. _formdiv = new U.UF.UI.form(
  6525. "学生评价",
  6526. $$("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 }), {
  6527. "id": "evaluateGM",
  6528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6529. "onresize": function () { }
  6530. }, {
  6531. closecallback: function () { }
  6532. }, { "style": { "height": "36px" } }).form; //创建窗体
  6533. _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); } }
  6534. break;
  6535. // classGM
  6536. case "classGM": //班级管理
  6537. _formdiv = new U.UF.UI.form(
  6538. "班级管理",
  6539. $$("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 }), {
  6540. "id": "classGM",
  6541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6542. "onresize": function () { }
  6543. }, {
  6544. closecallback: function () { }
  6545. }, { "style": { "height": "36px" } }).form; //创建窗体
  6546. _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); } }
  6547. break;
  6548. // dataGM
  6549. case "dataGM":
  6550. _formdiv = new U.UF.UI.form(
  6551. "我的资料",
  6552. $$("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 }), {
  6553. "id": "dataGM",
  6554. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _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); } }
  6560. break;
  6561. // caseGM
  6562. case "caseGM": //课程进展
  6563. _formdiv = new U.UF.UI.form(
  6564. "课程进展",
  6565. $$("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 }), {
  6566. "id": "caseGM",
  6567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //创建窗体
  6572. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6573. break;
  6574. // meterialGM
  6575. case "meterialGM": //素材库
  6576. _formdiv = new U.UF.UI.form(
  6577. "素材库",
  6578. $$("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 }), {
  6579. "id": "meterialGM",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6586. break;
  6587. // evaluateSGM
  6588. case "evaluateSGM": //我的评价
  6589. _formdiv = new U.UF.UI.form(
  6590. "我的评价",
  6591. $$("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 }), {
  6592. "id": "evaluateSGM",
  6593. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _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); } }
  6599. break;
  6600. case "jupyter": //jupyter
  6601. _formdiv = new U.UF.UI.form(
  6602. "jupyter",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6604. "id": "jupyter",
  6605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _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); } }
  6611. break;
  6612. case "number": //数字实验室
  6613. _formdiv = new U.UF.UI.form(
  6614. "数字实验室",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6616. "id": "number",
  6617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _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); } }
  6623. break;
  6624. case "studentCourse": //项目管理 学生
  6625. _formdiv = new U.UF.UI.form(
  6626. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6627. $$("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 }), {
  6628. "id": "studentCourse",
  6629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _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); } }
  6635. break;
  6636. case "studentCourseS": //项目管理 老师
  6637. _formdiv = new U.UF.UI.form(
  6638. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6639. $$("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 }), {
  6640. "id": "studentCourseS",
  6641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _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); } }
  6647. break;
  6648. case "studentIndex": //项目中心
  6649. _formdiv = new U.UF.UI.form(
  6650. "项目中心",
  6651. $$("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 }), {
  6652. "id": "studentIndex",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _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); } }
  6659. break;
  6660. case "CaseDesignS":
  6661. _formdiv = new U.UF.UI.form(
  6662. "项目进展",
  6663. $$("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 }), {
  6664. "id": "case",
  6665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _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); } }
  6671. break;
  6672. case "tcStudent": //腾讯学生管理
  6673. _formdiv = new U.UF.UI.form(
  6674. "学生管理",
  6675. $$("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 }), {
  6676. "id": "tcStudent",
  6677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _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); } }
  6683. break;
  6684. case "tcSchool": //腾讯学校管理
  6685. _formdiv = new U.UF.UI.form(
  6686. "学校管理",
  6687. $$("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 }), {
  6688. "id": "tcSchool",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _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); } }
  6695. break;
  6696. case "tcTeacher": //腾讯学校管理
  6697. _formdiv = new U.UF.UI.form(
  6698. "教师管理",
  6699. $$("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 }), {
  6700. "id": "tcTeacher",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _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); } }
  6707. break;
  6708. case "teacher":
  6709. _formdiv = new U.UF.UI.form(
  6710. "教师管理",
  6711. $$("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 }), {
  6712. "id": "teacher",
  6713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _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); } }
  6719. break;
  6720. case "tcData": //腾讯我的资料
  6721. _formdiv = new U.UF.UI.form(
  6722. "我的资料",
  6723. $$("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 }), {
  6724. "id": "tcData",
  6725. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _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); } }
  6731. break;
  6732. case "tcNotice": //腾讯消息通知
  6733. _formdiv = new U.UF.UI.form(
  6734. "消息通知",
  6735. $$("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 }), {
  6736. "id": "tcNotice",
  6737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. break;
  6744. case "myReport": //好友打开
  6745. _formdiv = new U.UF.UI.form(
  6746. "我的评价",
  6747. $$("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 }), {
  6748. "id": "myReport",
  6749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //创建窗体
  6754. _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); } }
  6755. break;
  6756. case "learnAna": //好友打开
  6757. _formdiv = new U.UF.UI.form(
  6758. "学习分析",
  6759. $$("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 }), {
  6760. "id": "learnAna",
  6761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _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); } }
  6767. break;
  6768. case "AIChat": //AI共创
  6769. _formdiv = new U.UF.UI.form(
  6770. "AI共创",
  6771. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6772. "id": "AIChat",
  6773. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. istop: true,
  6777. closecallback: function () { $("#aichat_icon").remove(); },
  6778. narrowcallback: function () {
  6779. if (!$("#aichat_icon")[0]) {
  6780. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6781. }
  6782. },
  6783. }, { "style": { "height": "36px" } }).form; //创建窗体
  6784. _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); } }
  6785. break;
  6786. case "ainew": //AI共创
  6787. _formdiv = new U.UF.UI.form(
  6788. "AI协同",
  6789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6790. "id": "ainew",
  6791. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6792. "onresize": function () { }
  6793. }, {
  6794. closecallback: function () { }
  6795. }, { "style": { "height": "36px" } }).form; //创建窗体
  6796. _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); } }
  6797. break;
  6798. case "gpt4": //gpt4
  6799. _formdiv = new U.UF.UI.form(
  6800. "AI助手",
  6801. $$("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 }), {
  6802. "id": "gpt4",
  6803. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6804. "onresize": function () { }
  6805. }, {
  6806. closecallback: function () { }
  6807. }, { "style": { "height": "36px" } }).form; //创建窗体
  6808. _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); } }
  6809. break;
  6810. case "aigpt": //gpt4
  6811. _formdiv = new U.UF.UI.form(
  6812. "AI助手+",
  6813. $$("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/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6814. "id": "aigpt",
  6815. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6816. "onresize": function () { }
  6817. }, {
  6818. closecallback: function () {
  6819. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6820. }
  6821. }, { "style": { "height": "36px" } }).form; //创建窗体
  6822. _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); } }
  6823. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6824. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6825. })
  6826. break;
  6827. case "aiKnowledge": //aiKnowledge
  6828. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6829. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6830. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6831. }
  6832. _formdiv = new U.UF.UI.form(
  6833. "知识建构",
  6834. $$("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 }), {
  6835. "id": "aiKnowledge",
  6836. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6842. break;
  6843. case "futureClass": //AI共创
  6844. _formdiv = new U.UF.UI.form(
  6845. "协同建构",
  6846. $$("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
  6847. "id": "synergyCourse",
  6848. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () {
  6852. $("iframe", _formdiv)[0].contentWindow.loginout();
  6853. }
  6854. }, { "style": { "height": "36px" } }).form; //创建窗体
  6855. _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); } }
  6856. break;
  6857. case "aiagent": //ai agent
  6858. _formdiv = new U.UF.UI.form(
  6859. "AI Agent",
  6860. $$("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" }), {
  6861. "id": "AIAgent",
  6862. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _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); } }
  6868. break;
  6869. case "dataBoard": //数据看板
  6870. _formdiv = new U.UF.UI.form(
  6871. "数据看板",
  6872. $$("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 }), {
  6873. "id": "dataBoard",
  6874. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. case "dataBoardSies": //数据融合
  6882. _formdiv = new U.UF.UI.form(
  6883. "数据融合",
  6884. $$("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 }), {
  6885. "id": "dataBoardSies",
  6886. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //创建窗体
  6891. _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); } }
  6892. break;
  6893. case "dataBoardNew": //数据看板
  6894. _formdiv = new U.UF.UI.form(
  6895. "综合看板",
  6896. $$("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 }), {
  6897. "id": "dataBoardNew",
  6898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. _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); } }
  6904. break;
  6905. case "dataBoardTest": //数据看板
  6906. _formdiv = new U.UF.UI.form(
  6907. "评测看板",
  6908. $$("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 }), {
  6909. "id": "dataBoardTest",
  6910. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () { }
  6914. }, { "style": { "height": "36px" } }).form; //创建窗体
  6915. _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); } }
  6916. break;
  6917. case "AIAnalyse": //AI共创
  6918. _formdiv = new U.UF.UI.form(
  6919. "AI分析",
  6920. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6921. "id": "AIAnalyse",
  6922. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6923. "onresize": function () { }
  6924. }, {
  6925. closecallback: function () { }
  6926. }, { "style": { "height": "36px" } }).form; //创建窗体
  6927. _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); } }
  6928. break;
  6929. case "studioCourse": //AI共创
  6930. _formdiv = new U.UF.UI.form(
  6931. "工作管理",
  6932. $$("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 }), {
  6933. "id": "studioCourse",
  6934. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6935. "onresize": function () { }
  6936. }, {
  6937. closecallback: function () { }
  6938. }, { "style": { "height": "36px" } }).form; //创建窗体
  6939. _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); } }
  6940. break;
  6941. case "studioIndex": //AI共创
  6942. _formdiv = new U.UF.UI.form(
  6943. "工作中心",
  6944. $$("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 }), {
  6945. "id": "studioIndex",
  6946. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6947. "onresize": function () { }
  6948. }, {
  6949. closecallback: function () { }
  6950. }, { "style": { "height": "36px" } }).form; //创建窗体
  6951. _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); } }
  6952. break;
  6953. case "source":
  6954. _formdiv = new U.UF.UI.form(
  6955. "教学资源",
  6956. $$("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 }), {
  6957. "id": "source",
  6958. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6959. "onresize": function () { }
  6960. }, {
  6961. closecallback: function () { }
  6962. }, { "style": { "height": "36px" } }).form; //创建窗体
  6963. _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); } }
  6964. break;
  6965. case "testTeacher":
  6966. _formdiv = new U.UF.UI.form(
  6967. "智能表单",
  6968. $$("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 }), {
  6969. "id": "testTeacher",
  6970. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6971. "onresize": function () { }
  6972. }, {
  6973. closecallback: function () { }
  6974. }, { "style": { "height": "36px" } }).form; //创建窗体
  6975. _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); } }
  6976. break;
  6977. case "testStudent":
  6978. _formdiv = new U.UF.UI.form(
  6979. "教师中心",
  6980. $$("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 }), {
  6981. "id": "testStudent",
  6982. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6983. "onresize": function () { }
  6984. }, {
  6985. closecallback: function () { }
  6986. }, { "style": { "height": "36px" } }).form; //创建窗体
  6987. _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); } }
  6988. break;
  6989. case "testTeacherSies":
  6990. _formdiv = new U.UF.UI.form(
  6991. "教师管理",
  6992. $$("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 }), {
  6993. "id": "testTeacherSies",
  6994. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7000. break;
  7001. case "testStudentSies":
  7002. _formdiv = new U.UF.UI.form(
  7003. "教师中心",
  7004. $$("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 }), {
  7005. "id": "testStudentSies",
  7006. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7012. break;
  7013. case "ytpbl": //消息通知
  7014. _formdiv = new U.UF.UI.form(
  7015. "案例征集",
  7016. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7017. "id": "ytpbl",
  7018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7024. // 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");
  7025. break;
  7026. case "aiCourseResource": //人工智能窗体
  7027. _formdiv = new U.UF.UI.form(
  7028. false,
  7029. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  7030. "id": "aiCourseResource",
  7031. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7032. "onresize": function () { },
  7033. "isdrag": false,
  7034. }, {
  7035. closecallback: function () { }
  7036. }, { "style": { "height": "36px" } }).form; //创建窗体
  7037. _taskbar = ''
  7038. break;
  7039. case "szdjgCocooroboX": //图形化编程
  7040. _formdiv = new U.UF.UI.form(
  7041. "图形化编程",
  7042. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7043. "id": "szdjgCocooroboX",
  7044. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7045. "onresize": function () { }
  7046. }, {
  7047. closecallback: function () { }
  7048. }, { "style": { "height": "36px" } }).form; //创建窗体
  7049. _taskbar = ''
  7050. break;
  7051. case "szdjgPython": //python编程
  7052. _formdiv = new U.UF.UI.form(
  7053. "Python编程",
  7054. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7055. "id": "szdjgPython",
  7056. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7057. "onresize": function () { }
  7058. }, {
  7059. closecallback: function () { }
  7060. }, { "style": { "height": "36px" } }).form; //创建窗体
  7061. _taskbar = ''
  7062. break;
  7063. case "Record":
  7064. _formdiv = new U.UF.UI.form(
  7065. "观察记录",
  7066. $$("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 }), {
  7067. "id": "Record",
  7068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7069. "onresize": function () { }
  7070. }, {
  7071. closecallback: function () { }
  7072. }, { "style": { "height": "36px" } }).form; //创建窗体
  7073. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7074. break;
  7075. case "aigptCourse":
  7076. _formdiv = new U.UF.UI.form(
  7077. "AI智能体",
  7078. $$("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' }), {
  7079. "id": "aigptCourse",
  7080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7081. "onresize": function () { }
  7082. }, {
  7083. closecallback: function () { }
  7084. }, { "style": { "height": "36px" } }).form; //创建窗体
  7085. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7086. break;
  7087. case "classroomObservation":
  7088. _formdiv = new U.UF.UI.form(
  7089. "课堂观察",
  7090. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7091. "id": "classroomObservation",
  7092. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7093. "onresize": function () { }
  7094. }, {
  7095. closecallback: function () { }
  7096. }, { "style": { "height": "36px" } }).form; //创建窗体
  7097. _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); } }
  7098. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7099. break;
  7100. case "pblCourse":
  7101. _formdiv = new U.UF.UI.form(
  7102. "学生PBL",
  7103. $$("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 }), {
  7104. "id": "pblCourse",
  7105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7106. "onresize": function () { }
  7107. }, {
  7108. closecallback: function () { }
  7109. }, { "style": { "height": "36px" } }).form; //创建窗体
  7110. _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); } }
  7111. break;
  7112. case "appStore":
  7113. _formdiv = new U.UF.UI.form(
  7114. "CocoFlow",
  7115. $$("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 }), {
  7116. "id": "appStore",
  7117. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7118. "onresize": function () { }
  7119. }, {
  7120. closecallback: function () { }
  7121. }, { "style": { "height": "36px" } }).form; //创建窗体
  7122. _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); } }
  7123. break;
  7124. case "sassPlatform":
  7125. _formdiv = new U.UF.UI.form(
  7126. "Sass通用后台管理",
  7127. $$("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 }), {
  7128. "id": "sassPlatform",
  7129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7130. "onresize": function () { }
  7131. }, {
  7132. closecallback: function () { }
  7133. }, { "style": { "height": "36px" } }).form; //创建窗体
  7134. _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); } }
  7135. break;
  7136. case "EDU":
  7137. _formdiv = new U.UF.UI.form(
  7138. "EDU",
  7139. $$("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" }), {
  7140. "id": "EDU",
  7141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7142. "onresize": function () { }
  7143. }, {
  7144. closecallback: function () { }
  7145. }, { "style": { "height": "36px" } }).form; //创建窗体
  7146. _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); } }
  7147. break;
  7148. case "knowledge":
  7149. _formdiv = new U.UF.UI.form(
  7150. "知识库",
  7151. $$("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 }), {
  7152. "id": "knowledge",
  7153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, { "style": { "height": "36px" } }).form; //创建窗体
  7158. _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); } }
  7159. break;
  7160. case "userExamine":
  7161. _formdiv = new U.UF.UI.form(
  7162. "账号申请",
  7163. $$("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" }), {
  7164. "id": "userExamine",
  7165. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, { "style": { "height": "36px" } }).form; //创建窗体
  7170. break;
  7171. }
  7172. //U.MD.D.I.openClick(str);
  7173. //如果有任务栏信息
  7174. if (_taskbar) {
  7175. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7176. }
  7177. if(iframeBool){
  7178. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7179. let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7180. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7181. };
  7182. }
  7183. }
  7184. // U.MD.D.I.openClick = function(str){
  7185. // var click = '';
  7186. // switch(str){
  7187. // case 'friend':
  7188. // click = '我的好友';
  7189. // break;
  7190. // case 'domain':
  7191. // click = '域名管理';
  7192. // break;
  7193. // case 'disk':
  7194. // click = '我的云盘';
  7195. // break;
  7196. // case 'word':
  7197. // click = 'Word';
  7198. // break;
  7199. // case 'excel':
  7200. // click = 'Execl';
  7201. // break;
  7202. // case 'txt':
  7203. // click = '文本文件';
  7204. // break;
  7205. // case 'lookupFriend':
  7206. // click = '查找好友';
  7207. // break;
  7208. // case 'ftp':
  7209. // click = 'FTP';
  7210. // break;
  7211. // case 'group':
  7212. // click = '群组';
  7213. // break;
  7214. // case 'set':
  7215. // click = '我的设置';
  7216. // break;
  7217. // case 'systemSet':
  7218. // click = '系统设置';
  7219. // break;
  7220. // case 'boomYun':
  7221. // click = '互联办公';
  7222. // break;
  7223. // case 'xz':
  7224. // click = '云端下载';
  7225. // break;
  7226. // case 'client':
  7227. // click = '有思浏览器';
  7228. // break;
  7229. // case 'backEndProgramming':
  7230. // click = '在线后台编程';
  7231. // break;
  7232. // case 'frontEndProgramming':
  7233. // click = '在线前端编程';
  7234. // break;
  7235. // default: break;
  7236. // }
  7237. // if(U.MD.D.I.Ip && click){
  7238. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7239. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7240. // })
  7241. // }
  7242. // }
  7243. /**
  7244. *函数作用:ajax简易函数,使用post格式
  7245. *@param url {data} 后台地址
  7246. *@param data {data} 参数json
  7247. *@param fn {data} 回调函数
  7248. *
  7249. */
  7250. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7251. // var xhr = new XMLHttpRequest();
  7252. // xhr.open("GET",url,true);
  7253. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7254. // xhr.onreadystatechange = function(){
  7255. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7256. // fn.call(this,xhr.responseText);
  7257. // }
  7258. // };
  7259. // xhr.send();
  7260. // }
  7261. /*判断是否是内网IP*/
  7262. // U.MD.D.I.isInnerIPFn = function(str){
  7263. // var curPageUrl = str;
  7264. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7265. // curPageUrl =curPageUrl.replace(reg1,'');
  7266. // // console.log('curPageUrl-1 '+curPageUrl);
  7267. // var reg2 = /\:+/g;//替换冒号为一点
  7268. // curPageUrl =curPageUrl.replace(reg2,'.');
  7269. // // console.log('curPageUrl-2 '+curPageUrl);
  7270. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7271. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7272. // if(curPageUrl[2] != '16'){
  7273. // return ipAddress;
  7274. // }else{
  7275. // return false;
  7276. // }
  7277. // }
  7278. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7279. // //compatibility for firefox and chrome
  7280. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7281. // var pc = new myPeerConnection({
  7282. // iceServers: []
  7283. // }),
  7284. // noop = function() {},
  7285. // localIPs = {},
  7286. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7287. // key;
  7288. // function iterateIP(ip) {
  7289. // if (!localIPs[ip]) onNewIP(ip);
  7290. // localIPs[ip] = true;
  7291. // }
  7292. // //create a bogus data channel
  7293. // pc.createDataChannel("");
  7294. // // create offer and set local description
  7295. // pc.createOffer().then(function(sdp) {
  7296. // sdp.sdp.split('\n').forEach(function(line) {
  7297. // if (line.indexOf('candidate') < 0) return;
  7298. // line.match(ipRegex).forEach(iterateIP);
  7299. // });
  7300. // pc.setLocalDescription(sdp, noop, noop);
  7301. // }).catch(function(reason) {
  7302. // // An error occurred, so handle the failure to connect
  7303. // });
  7304. // //sten for candidate events
  7305. // pc.onicecandidate = function(ice) {
  7306. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7307. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7308. // };
  7309. // }
  7310. // U.MD.D.I.getUserIpBool = function(callback){
  7311. // U.MD.D.I.getUserIP(function(ip){
  7312. // alert("Got IP! :" + ip);
  7313. // });
  7314. //}
  7315. //#endregion
  7316. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7317. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7318. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7319. _userinfo = US.userInfo, //登录用户信息
  7320. _userid = US.userInfo.userid //登录用户id
  7321. let _iframe;
  7322. let _cid = cid,
  7323. _stage = stage,
  7324. _task = task,
  7325. _tool = tool;
  7326. var _jie = $$("div", {
  7327. "style": {
  7328. "position": "absolute",
  7329. "bottom": "50px",
  7330. "right": "50px",
  7331. "zIndex": "9999",
  7332. "backgroundColor": "#2268bc",
  7333. "color": "#fff",
  7334. "padding": "12px 20px",
  7335. "cursor": "pointer",
  7336. "borderRadius": "4px",
  7337. },
  7338. "innerHTML": "提交作业"
  7339. })
  7340. let aTool = ''
  7341. let _loading = document.createElement('div')
  7342. _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;"
  7343. // _loading.id = "";
  7344. let _lchild = document.createElement('div')
  7345. let _limg = document.createElement('img')
  7346. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7347. _limg.style = "width: 26px;margin-right: 10px;"
  7348. _lchild.appendChild(_limg)
  7349. let _lspan = document.createElement('span')
  7350. _lspan.innerHTML = "上传中..."
  7351. _lchild.appendChild(_lspan)
  7352. _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%);"
  7353. _loading.appendChild(_lchild)
  7354. var _box = $$('div', {
  7355. "style": {
  7356. "position": "relative",
  7357. "width": "100%",
  7358. "height": "100%",
  7359. },
  7360. })
  7361. _box.appendChild(_loading)
  7362. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7363. switch (str) {
  7364. case "whiteboard":
  7365. aTool = 1;
  7366. _iframe = $$("iframe", {
  7367. "frameborder": "no",
  7368. "border": "0",
  7369. "scrolling ": "no",
  7370. "style": {
  7371. "cssText": "border:0;width:100%;height:100%"
  7372. },
  7373. "src": "https://beta.iwb.cocorobo.cn/"
  7374. })
  7375. _box.appendChild(_iframe);
  7376. _box.appendChild(_jie);
  7377. _formdiv = new U.UF.UI.form(
  7378. "电子白板",
  7379. _box, {
  7380. "id": "whiteboard" + cid + stage + task + tool,
  7381. "style": {
  7382. "width": "90%",
  7383. "height": "90%",
  7384. "overflow": 'hidden'
  7385. },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, {
  7390. "style": {
  7391. "height": "36px"
  7392. }
  7393. }).form; //创建窗体
  7394. _taskbar = {
  7395. "id": str + _formdiv.id,
  7396. "style": {
  7397. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7398. },
  7399. "name": "电子白板",
  7400. "forms": _formdiv,
  7401. "click": function () {
  7402. U.MD.D.I.openApplication(str, obj, info);
  7403. }
  7404. }
  7405. break;
  7406. case "mind":
  7407. aTool = 3;
  7408. _iframe = $$("iframe", {
  7409. "frameborder": "no",
  7410. "border": "0",
  7411. "scrolling ": "no",
  7412. "style": {
  7413. "cssText": "border:0;width:100%;height:100%"
  7414. },
  7415. "src": "/kityminder-editor/dist/index.html"
  7416. })
  7417. _box.appendChild(_iframe);
  7418. _box.appendChild(_jie);
  7419. _formdiv = new U.UF.UI.form(
  7420. "思维导图",
  7421. _box, { //"/jsmind/example/demo.html"
  7422. "id": "mind" + cid + stage + task + tool,
  7423. "style": {
  7424. "width": "90%",
  7425. "height": "90%",
  7426. "overflow": 'hidden'
  7427. },
  7428. "onresize": function () { }
  7429. }, {
  7430. closecallback: function () { }
  7431. }, {
  7432. "style": {
  7433. "height": "36px"
  7434. }
  7435. }).form; //创建窗体
  7436. _taskbar = {
  7437. "id": str + _formdiv.id,
  7438. "style": {
  7439. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7440. },
  7441. "name": "思维导图",
  7442. "forms": _formdiv,
  7443. "click": function () {
  7444. U.MD.D.I.openApplication(str, obj, info);
  7445. }
  7446. }
  7447. break;
  7448. case "MindMap":
  7449. aTool = 3;
  7450. _iframe = $$("iframe", {
  7451. "frameborder": "no",
  7452. "border": "0",
  7453. "scrolling ": "no",
  7454. "style": {
  7455. "cssText": "border:0;width:100%;height:100%"
  7456. },
  7457. "src": "//cloud.cocorobo.cn/mind/"
  7458. })
  7459. _box.appendChild(_iframe);
  7460. _box.appendChild(_jie);
  7461. _formdiv = new U.UF.UI.form(
  7462. "思维导图",
  7463. _box, { //"/jsmind/example/demo.html"
  7464. "id": "mind" + cid + stage + task + tool,
  7465. "style": {
  7466. "width": "90%",
  7467. "height": "90%",
  7468. "overflow": 'hidden'
  7469. },
  7470. "onresize": function () { }
  7471. }, {
  7472. closecallback: function () { }
  7473. }, {
  7474. "style": {
  7475. "height": "36px"
  7476. }
  7477. }).form; //创建窗体
  7478. _taskbar = {
  7479. "id": str + _formdiv.id,
  7480. "style": {
  7481. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7482. },
  7483. "name": "思维导图",
  7484. "forms": _formdiv,
  7485. "click": function () {
  7486. U.MD.D.I.openApplication(str, obj, info);
  7487. }
  7488. }
  7489. break;
  7490. case "doc":
  7491. aTool = 6;
  7492. _iframe = $$("iframe", {
  7493. "frameborder": "no",
  7494. "border": "0",
  7495. "scrolling ": "no",
  7496. "style": {
  7497. "cssText": "border:0;width:100%;height:100%"
  7498. },
  7499. "src": "/Office/Word/WordEditArea.htm"
  7500. })
  7501. _box.appendChild(_iframe);
  7502. _box.appendChild(_jie);
  7503. _formdiv = new U.UF.UI.form(
  7504. "协同文档",
  7505. _box, {
  7506. "id": "doc" + cid + stage + task + tool,
  7507. "style": {
  7508. "width": "90%",
  7509. "height": "90%",
  7510. "overflow": 'hidden'
  7511. },
  7512. "onresize": function () { }
  7513. }, {
  7514. closecallback: function () { }
  7515. }, {
  7516. "style": {
  7517. "height": "36px"
  7518. }
  7519. }).form; //创建窗体
  7520. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7521. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7522. })
  7523. _taskbar = {
  7524. "id": str + _formdiv.id,
  7525. "style": {
  7526. "backgroundImage": "url(/img/icon/doc.png)"
  7527. },
  7528. "name": "协同文档",
  7529. "forms": _formdiv,
  7530. "click": function () {
  7531. U.MD.D.I.openApplication(str, obj, info);
  7532. }
  7533. }
  7534. break;
  7535. case "mindNetwork": //好友打开
  7536. aTool = 7;
  7537. _iframe = $$("iframe", {
  7538. "webkitallowfullscreen": "",
  7539. "mozallowfullscreen": "",
  7540. "allowfullscreen": "",
  7541. "frameborder": "no",
  7542. "border": "0",
  7543. "scrolling ": "no",
  7544. "style": {
  7545. "cssText": "border:0; width:100%; height:100%;"
  7546. },
  7547. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7548. })
  7549. _box.appendChild(_iframe);
  7550. _box.appendChild(_jie);
  7551. _formdiv = new U.UF.UI.form(
  7552. "思维网格",
  7553. _box, {
  7554. "id": "mindNetwork" + cid + stage + task + tool,
  7555. "style": {
  7556. "width": "90%",
  7557. "height": "90%",
  7558. "overflow": 'hidden'
  7559. },
  7560. "onresize": function () { }
  7561. }, {
  7562. closecallback: function () { }
  7563. }, {
  7564. "style": {
  7565. "height": "36px"
  7566. }
  7567. }).form; //创建窗体
  7568. _taskbar = {
  7569. "id": str + _formdiv.id,
  7570. "style": {
  7571. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7572. },
  7573. "name": "思维网格",
  7574. "forms": _formdiv,
  7575. "click": function () {
  7576. U.MD.D.I.openApplication(str, obj, info);
  7577. }
  7578. }
  7579. break;
  7580. case "courseDesign":
  7581. _iframe = $$("iframe", {
  7582. "webkitallowfullscreen": "",
  7583. "mozallowfullscreen": "",
  7584. "allowfullscreen": "",
  7585. "frameborder": "no",
  7586. "border": "0",
  7587. "scrolling ": "no",
  7588. "style": {
  7589. "cssText": "border:0; width:100%; height:100%;"
  7590. },
  7591. "src": "/course-design-vue"
  7592. })
  7593. _box.appendChild(_iframe);
  7594. _box.appendChild(_jie);
  7595. _formdiv = new U.UF.UI.form(
  7596. "项目设计",
  7597. _box, {
  7598. "id": "courseDesign" + cid + stage + task + tool,
  7599. "style": {
  7600. "width": "90%",
  7601. "height": "90%",
  7602. "overflow": 'hidden'
  7603. },
  7604. "onresize": function () { }
  7605. }, {
  7606. closecallback: function () { }
  7607. }, {
  7608. "style": {
  7609. "height": "36px"
  7610. }
  7611. }).form; //创建窗体
  7612. _taskbar = {
  7613. "id": str + _formdiv.id,
  7614. "style": {
  7615. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7616. },
  7617. "name": "项目设计",
  7618. "forms": _formdiv,
  7619. "click": function () {
  7620. U.MD.D.I.openApplication(str, obj, info);
  7621. }
  7622. }
  7623. break;
  7624. }
  7625. const script1 = document.createElement("script");
  7626. script1.type = "text/javascript";
  7627. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7628. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7629. const script2 = document.createElement("script");
  7630. script2.type = "text/javascript";
  7631. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7632. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7633. const script3 = document.createElement("script");
  7634. script3.type = "text/javascript";
  7635. script3.charset = "UTF-8";
  7636. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7637. const script4 = document.createElement("script");
  7638. script4.type = "text/javascript";
  7639. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7640. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7641. if (_iframe) {
  7642. if (str == 'doc') {
  7643. _iframe = _formdiv.querySelector('iframe')
  7644. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7645. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7646. _iframe.contentWindow.document.body.appendChild(script1);
  7647. _iframe.contentWindow.document.body.appendChild(script2);
  7648. // _iframe.contentWindow.document.body.appendChild(script3);
  7649. _iframe.contentWindow.document.body.appendChild(script4);
  7650. })
  7651. if (onloadListener) {
  7652. _iframe.contentDocument.location.reload()
  7653. } else {
  7654. _iframe.contentDocument.location.reload()
  7655. }
  7656. } else if (str == 'courseDesign') {
  7657. U.UF.DL.iframeLoad(_iframe, function () {
  7658. // _iframe.contentWindow.U.MD.O.W.load();
  7659. // _iframe.contentWindow.document.body.appendChild(script1);
  7660. _iframe.contentWindow.document.body.appendChild(script2);
  7661. _iframe.contentWindow.document.body.appendChild(script4);
  7662. })
  7663. } else if (str == 'mind') {
  7664. _iframe = _formdiv.querySelector('iframe')
  7665. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7666. //
  7667. _iframe.contentWindow.document.body.appendChild(script1);
  7668. _iframe.contentWindow.document.body.appendChild(script2);
  7669. _iframe.contentWindow.document.body.appendChild(script4);
  7670. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7671. })
  7672. if (onloadListener) {
  7673. _iframe.contentDocument.location.reload()
  7674. } else {
  7675. _iframe.contentDocument.location.reload()
  7676. }
  7677. } else if (str == 'whiteboard') {
  7678. _iframe = _formdiv.querySelector('iframe')
  7679. let onloadListener = _iframe.onload = () => {
  7680. _iframe.contentWindow.document.body.appendChild(script1);
  7681. _iframe.contentWindow.document.body.appendChild(script2);
  7682. _iframe.contentWindow.document.body.appendChild(script4);
  7683. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7684. };
  7685. // if (onloadListener) {
  7686. // try {
  7687. // _iframe.src += "?cocorobo="+new Date().getTime()
  7688. // _iframe.contentWindow.document.location.reload()
  7689. // } catch (error) {
  7690. // }
  7691. // } else {
  7692. // _iframe.contentDocument.location.reload()
  7693. // }
  7694. } else {
  7695. _iframe.onload = () => {
  7696. _iframe.contentWindow.document.body.appendChild(script1);
  7697. _iframe.contentWindow.document.body.appendChild(script2);
  7698. // _iframe.contentWindow.document.body.appendChild(script3);
  7699. _iframe.contentWindow.document.body.appendChild(script4);
  7700. };
  7701. }
  7702. _jie.onclick = async () => {
  7703. let text = ''
  7704. if (aTool == 1) {
  7705. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7706. } else if (aTool == 6) {
  7707. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7708. } else if (aTool == 3) {
  7709. text = await U.MD.D.I.getEditorContent(_iframe);
  7710. }
  7711. _loading.style.display = 'flex'
  7712. console.log(_loading);
  7713. var _ajs = _iframe.contentWindow.document.createElement("script");
  7714. _ajs.type = "text/javascript";
  7715. _ajs.innerHTML =
  7716. // 'console.log(' + _loading + ');\n' +
  7717. 'var _js = document.createElement("script");\n' +
  7718. '_js.type="text/javascript";\n' +
  7719. '_js.charset="UTF-8";\n' +
  7720. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7721. "_js.onload = function(){\n" +
  7722. ' var a = document.getElementsByTagName("img")\n' +
  7723. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7724. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7725. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7726. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7727. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7728. "beforeUpload_shishi(file," +
  7729. "'" +
  7730. _userid +
  7731. "'" +
  7732. ", " +
  7733. "'" +
  7734. _cid +
  7735. "'" +
  7736. ", " +
  7737. "'" +
  7738. _stage +
  7739. "'" +
  7740. ", " +
  7741. "'" +
  7742. _task +
  7743. "'" +
  7744. ", " +
  7745. "'" +
  7746. _tool +
  7747. "'" +
  7748. ", " +
  7749. "'" +
  7750. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7751. "'" +
  7752. ", " +
  7753. "'" +
  7754. aTool +
  7755. "'" +
  7756. ", " +
  7757. "`" +
  7758. text +
  7759. "`" +
  7760. ")\n" +
  7761. " });\n" +
  7762. "}\n" +
  7763. "document.head.appendChild(_js);\n";
  7764. _iframe.contentWindow.document.head.appendChild(_ajs);
  7765. }
  7766. }
  7767. //U.MD.D.I.openClick(str);
  7768. //如果有任务栏信息
  7769. // if (_taskbar) {
  7770. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7771. // }
  7772. }
  7773. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7774. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7775. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7776. _userinfo = US.userInfo, //登录用户信息
  7777. _userid = US.userInfo.userid //登录用户id
  7778. let _iframe;
  7779. let _cid = cid,
  7780. _stage = stage,
  7781. _task = task,
  7782. _tool = tool;
  7783. var _jie = $$("div", {
  7784. "style": {
  7785. "position": "absolute",
  7786. "bottom": "50px",
  7787. "right": "50px",
  7788. "zIndex": "9999",
  7789. "backgroundColor": "#2268bc",
  7790. "color": "#fff",
  7791. "padding": "12px 20px",
  7792. "cursor": "pointer",
  7793. "borderRadius": "4px",
  7794. },
  7795. "innerHTML": "提交作业"
  7796. })
  7797. let aTool = ''
  7798. let _loading = document.createElement('div')
  7799. _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;"
  7800. // _loading.id = "";
  7801. let _lchild = document.createElement('div')
  7802. let _limg = document.createElement('img')
  7803. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7804. _limg.style = "width: 26px;margin-right: 10px;"
  7805. _lchild.appendChild(_limg)
  7806. let _lspan = document.createElement('span')
  7807. _lspan.innerHTML = "上传中..."
  7808. _lchild.appendChild(_lspan)
  7809. _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%);"
  7810. _loading.appendChild(_lchild)
  7811. let _box = $$('div', {
  7812. "style": {
  7813. "position": "relative",
  7814. "width": "100%",
  7815. "height": "100%",
  7816. },
  7817. })
  7818. _box.appendChild(_loading)
  7819. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7820. switch (str) {
  7821. case "whiteboard":
  7822. aTool = 1;
  7823. _iframe = $$("iframe", {
  7824. "frameborder": "no",
  7825. "border": "0",
  7826. "scrolling ": "no",
  7827. "style": {
  7828. "cssText": "border:0;width:100%;height:100%"
  7829. },
  7830. "src": "https://beta.iwb.cocorobo.cn/"
  7831. })
  7832. _box.appendChild(_iframe);
  7833. _box.appendChild(_jie);
  7834. _formdiv = new U.UF.UI.form(
  7835. "电子白板",
  7836. _box, {
  7837. "id": "whiteboard" + cid + stage + task + tool,
  7838. "style": {
  7839. "width": "90%",
  7840. "height": "90%",
  7841. "overflow": 'hidden'
  7842. },
  7843. "onresize": function () { }
  7844. }, {
  7845. closecallback: function () { }
  7846. }, {
  7847. "style": {
  7848. "height": "36px"
  7849. }
  7850. }).form; //创建窗体
  7851. _taskbar = {
  7852. "id": str + _formdiv.id,
  7853. "style": {
  7854. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7855. },
  7856. "name": "电子白板",
  7857. "forms": _formdiv,
  7858. "click": function () {
  7859. U.MD.D.I.openApplication(str, obj, info);
  7860. }
  7861. }
  7862. break;
  7863. case "mind":
  7864. aTool = 3;
  7865. _iframe = $$("iframe", {
  7866. "frameborder": "no",
  7867. "border": "0",
  7868. "scrolling ": "no",
  7869. "style": {
  7870. "cssText": "border:0;width:100%;height:100%"
  7871. },
  7872. "src": "/kityminder-editor/dist/index.html"
  7873. })
  7874. _box.appendChild(_iframe);
  7875. _box.appendChild(_jie);
  7876. _formdiv = new U.UF.UI.form(
  7877. "思维导图",
  7878. _box, { //"/jsmind/example/demo.html"
  7879. "id": "mind" + cid + stage + task + tool,
  7880. "style": {
  7881. "width": "90%",
  7882. "height": "90%",
  7883. "overflow": 'hidden'
  7884. },
  7885. "onresize": function () { }
  7886. }, {
  7887. closecallback: function () { }
  7888. }, {
  7889. "style": {
  7890. "height": "36px"
  7891. }
  7892. }).form; //创建窗体
  7893. _taskbar = {
  7894. "id": str + _formdiv.id,
  7895. "style": {
  7896. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7897. },
  7898. "name": "思维导图",
  7899. "forms": _formdiv,
  7900. "click": function () {
  7901. U.MD.D.I.openApplication(str, obj, info);
  7902. }
  7903. }
  7904. break;
  7905. case "MindMap":
  7906. aTool = 3;
  7907. _iframe = $$("iframe", {
  7908. "frameborder": "no",
  7909. "border": "0",
  7910. "scrolling ": "no",
  7911. "style": {
  7912. "cssText": "border:0;width:100%;height:100%"
  7913. },
  7914. "src": "//cloud.cocorobo.cn/mind/"
  7915. })
  7916. _box.appendChild(_iframe);
  7917. _box.appendChild(_jie);
  7918. _formdiv = new U.UF.UI.form(
  7919. "思维导图",
  7920. _box, { //"/jsmind/example/demo.html"
  7921. "id": "mind" + cid + stage + task + tool,
  7922. "style": {
  7923. "width": "90%",
  7924. "height": "90%",
  7925. "overflow": 'hidden'
  7926. },
  7927. "onresize": function () { }
  7928. }, {
  7929. closecallback: function () { }
  7930. }, {
  7931. "style": {
  7932. "height": "36px"
  7933. }
  7934. }).form; //创建窗体
  7935. _taskbar = {
  7936. "id": str + _formdiv.id,
  7937. "style": {
  7938. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7939. },
  7940. "name": "思维导图",
  7941. "forms": _formdiv,
  7942. "click": function () {
  7943. U.MD.D.I.openApplication(str, obj, info);
  7944. }
  7945. }
  7946. break;
  7947. case "doc":
  7948. aTool = 6;
  7949. _iframe = $$("iframe", {
  7950. "frameborder": "no",
  7951. "border": "0",
  7952. "scrolling ": "no",
  7953. "style": {
  7954. "cssText": "border:0;width:100%;height:100%"
  7955. },
  7956. "src": "/Office/Word/WordEditArea.htm"
  7957. })
  7958. _box.appendChild(_iframe);
  7959. _box.appendChild(_jie);
  7960. _formdiv = new U.UF.UI.form(
  7961. "协同文档",
  7962. _box, {
  7963. "id": "doc" + cid + stage + task + tool,
  7964. "style": {
  7965. "width": "90%",
  7966. "height": "90%",
  7967. "overflow": 'hidden'
  7968. },
  7969. "onresize": function () { }
  7970. }, {
  7971. closecallback: function () { }
  7972. }, {
  7973. "style": {
  7974. "height": "36px"
  7975. }
  7976. }).form; //创建窗体
  7977. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7978. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7979. })
  7980. _taskbar = {
  7981. "id": str + _formdiv.id,
  7982. "style": {
  7983. "backgroundImage": "url(/img/icon/doc.png)"
  7984. },
  7985. "name": "协同文档",
  7986. "forms": _formdiv,
  7987. "click": function () {
  7988. U.MD.D.I.openApplication(str, obj, info);
  7989. }
  7990. }
  7991. break;
  7992. case "mindNetwork": //好友打开
  7993. aTool = 7;
  7994. _iframe = $$("iframe", {
  7995. "webkitallowfullscreen": "",
  7996. "mozallowfullscreen": "",
  7997. "allowfullscreen": "",
  7998. "frameborder": "no",
  7999. "border": "0",
  8000. "scrolling ": "no",
  8001. "style": {
  8002. "cssText": "border:0; width:100%; height:100%;"
  8003. },
  8004. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8005. })
  8006. _box.appendChild(_iframe);
  8007. _box.appendChild(_jie);
  8008. _formdiv = new U.UF.UI.form(
  8009. "思维网格",
  8010. _box, {
  8011. "id": "mindNetwork" + cid + stage + task + tool,
  8012. "style": {
  8013. "width": "90%",
  8014. "height": "90%",
  8015. "overflow": 'hidden'
  8016. },
  8017. "onresize": function () { }
  8018. }, {
  8019. closecallback: function () { }
  8020. }, {
  8021. "style": {
  8022. "height": "36px"
  8023. }
  8024. }).form; //创建窗体
  8025. _taskbar = {
  8026. "id": str + _formdiv.id,
  8027. "style": {
  8028. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8029. },
  8030. "name": "思维网格",
  8031. "forms": _formdiv,
  8032. "click": function () {
  8033. U.MD.D.I.openApplication(str, obj, info);
  8034. }
  8035. }
  8036. break;
  8037. case "courseDesign":
  8038. _iframe = $$("iframe", {
  8039. "webkitallowfullscreen": "",
  8040. "mozallowfullscreen": "",
  8041. "allowfullscreen": "",
  8042. "frameborder": "no",
  8043. "border": "0",
  8044. "scrolling ": "no",
  8045. "style": {
  8046. "cssText": "border:0; width:100%; height:100%;"
  8047. },
  8048. "src": "/course-design-vue"
  8049. })
  8050. _box.appendChild(_iframe);
  8051. _box.appendChild(_jie);
  8052. _formdiv = new U.UF.UI.form(
  8053. "项目设计",
  8054. _box, {
  8055. "id": "courseDesign" + cid + stage + task + tool,
  8056. "style": {
  8057. "width": "90%",
  8058. "height": "90%",
  8059. "overflow": 'hidden'
  8060. },
  8061. "onresize": function () { }
  8062. }, {
  8063. closecallback: function () { }
  8064. }, {
  8065. "style": {
  8066. "height": "36px"
  8067. }
  8068. }).form; //创建窗体
  8069. _taskbar = {
  8070. "id": str + _formdiv.id,
  8071. "style": {
  8072. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8073. },
  8074. "name": "项目设计",
  8075. "forms": _formdiv,
  8076. "click": function () {
  8077. U.MD.D.I.openApplication(str, obj, info);
  8078. }
  8079. }
  8080. break;
  8081. }
  8082. const script1 = document.createElement("script");
  8083. script1.type = "text/javascript";
  8084. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8085. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8086. const script2 = document.createElement("script");
  8087. script2.type = "text/javascript";
  8088. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8089. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8090. const script3 = document.createElement("script");
  8091. script3.type = "text/javascript";
  8092. script3.charset = "UTF-8";
  8093. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8094. const script4 = document.createElement("script");
  8095. script4.type = "text/javascript";
  8096. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8097. script4.src = window.origin + "/js/Common/jietu2E.js";
  8098. if (_iframe) {
  8099. if (str == 'doc') {
  8100. _iframe = _formdiv.querySelector('iframe')
  8101. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8102. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8103. _iframe.contentWindow.document.body.appendChild(script1);
  8104. _iframe.contentWindow.document.body.appendChild(script2);
  8105. // _iframe.contentWindow.document.body.appendChild(script3);
  8106. _iframe.contentWindow.document.body.appendChild(script4);
  8107. })
  8108. if (onloadListener) {
  8109. _iframe.contentDocument.location.reload()
  8110. } else {
  8111. _iframe.contentDocument.location.reload()
  8112. }
  8113. } else if (str == 'courseDesign') {
  8114. U.UF.DL.iframeLoad(_iframe, function () {
  8115. // _iframe.contentWindow.U.MD.O.W.load();
  8116. // _iframe.contentWindow.document.body.appendChild(script1);
  8117. _iframe.contentWindow.document.body.appendChild(script2);
  8118. _iframe.contentWindow.document.body.appendChild(script4);
  8119. })
  8120. } else if (str == 'mind') {
  8121. _iframe = _formdiv.querySelector('iframe')
  8122. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8123. //
  8124. _iframe.contentWindow.document.body.appendChild(script1);
  8125. _iframe.contentWindow.document.body.appendChild(script2);
  8126. _iframe.contentWindow.document.body.appendChild(script4);
  8127. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8128. })
  8129. if (onloadListener) {
  8130. _iframe.contentDocument.location.reload()
  8131. } else {
  8132. _iframe.contentDocument.location.reload()
  8133. }
  8134. } else if (str == 'whiteboard') {
  8135. _iframe = _formdiv.querySelector('iframe')
  8136. let onloadListener = _iframe.onload = () => {
  8137. _iframe.contentWindow.document.body.appendChild(script1);
  8138. _iframe.contentWindow.document.body.appendChild(script2);
  8139. _iframe.contentWindow.document.body.appendChild(script4);
  8140. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8141. };
  8142. // if (onloadListener) {
  8143. // try {
  8144. // _iframe.src += "?cocorobo="+new Date().getTime()
  8145. // _iframe.contentWindow.document.location.reload()
  8146. // } catch (error) {
  8147. // }
  8148. // } else {
  8149. // _iframe.contentDocument.location.reload()
  8150. // }
  8151. } else {
  8152. _iframe.onload = () => {
  8153. _iframe.contentWindow.document.body.appendChild(script1);
  8154. _iframe.contentWindow.document.body.appendChild(script2);
  8155. // _iframe.contentWindow.document.body.appendChild(script3);
  8156. _iframe.contentWindow.document.body.appendChild(script4);
  8157. };
  8158. }
  8159. _jie.onclick = async () => {
  8160. let text = ''
  8161. if (aTool == 1) {
  8162. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8163. } else if (aTool == 6) {
  8164. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8165. } else if (aTool == 3) {
  8166. text = await U.MD.D.I.getEditorContent(_iframe);
  8167. }
  8168. _loading.style.display = 'flex'
  8169. console.log(_loading);
  8170. var _ajs = _iframe.contentWindow.document.createElement("script");
  8171. _ajs.type = "text/javascript";
  8172. _ajs.innerHTML =
  8173. // 'console.log(' + _loading + ');\n' +
  8174. 'var _js = document.createElement("script");\n' +
  8175. '_js.type="text/javascript";\n' +
  8176. '_js.charset="UTF-8";\n' +
  8177. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8178. "_js.onload = function(){\n" +
  8179. ' var a = document.getElementsByTagName("img")\n' +
  8180. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8181. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8182. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8183. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8184. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8185. "beforeUpload_shishi(file," +
  8186. "'" +
  8187. _userid +
  8188. "'" +
  8189. ", " +
  8190. "'" +
  8191. _cid +
  8192. "'" +
  8193. ", " +
  8194. "'" +
  8195. _stage +
  8196. "'" +
  8197. ", " +
  8198. "'" +
  8199. _task +
  8200. "'" +
  8201. ", " +
  8202. "'" +
  8203. _tool +
  8204. "'" +
  8205. ", " +
  8206. "'" +
  8207. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8208. "'" +
  8209. ", " +
  8210. "'" +
  8211. aTool +
  8212. "'" +
  8213. ", " +
  8214. "`" +
  8215. text +
  8216. "`" +
  8217. ")\n" +
  8218. " });\n" +
  8219. "}\n" +
  8220. "document.head.appendChild(_js);\n";
  8221. _iframe.contentWindow.document.head.appendChild(_ajs);
  8222. }
  8223. }
  8224. //U.MD.D.I.openClick(str);
  8225. //如果有任务栏信息
  8226. // if (_taskbar) {
  8227. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8228. // }
  8229. }
  8230. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8231. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8232. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8233. _userid = student.userid, //登录用户id
  8234. _username = student.student //用户名字
  8235. let _iframe;
  8236. let _cid = cid,
  8237. _stage = stage,
  8238. _task = task,
  8239. _tool = tool;
  8240. var _jie = $$("div", {
  8241. "style": {
  8242. "position": "absolute",
  8243. "bottom": "50px",
  8244. "right": "50px",
  8245. "zIndex": "9999",
  8246. "backgroundColor": "#2268bc",
  8247. "color": "#fff",
  8248. "padding": "12px 20px",
  8249. "cursor": "pointer",
  8250. "borderRadius": "4px",
  8251. },
  8252. "innerHTML": "提交作业"
  8253. })
  8254. let aTool = ''
  8255. let _loading = document.createElement('div')
  8256. _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;"
  8257. // _loading.id = "";
  8258. let _lchild = document.createElement('div')
  8259. let _limg = document.createElement('img')
  8260. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8261. _limg.style = "width: 26px;margin-right: 10px;"
  8262. _lchild.appendChild(_limg)
  8263. let _lspan = document.createElement('span')
  8264. _lspan.innerHTML = "上传中..."
  8265. _lchild.appendChild(_lspan)
  8266. _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%);"
  8267. _loading.appendChild(_lchild)
  8268. var _box = $$('div', {
  8269. "style": {
  8270. "position": "relative",
  8271. "width": "100%",
  8272. "height": "100%",
  8273. },
  8274. })
  8275. _box.appendChild(_loading)
  8276. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8277. switch (str) {
  8278. case "whiteboard":
  8279. aTool = 1;
  8280. _iframe = $$("iframe", {
  8281. "frameborder": "no",
  8282. "border": "0",
  8283. "scrolling ": "no",
  8284. "style": {
  8285. "cssText": "border:0;width:100%;height:100%"
  8286. },
  8287. "src": "https://beta.iwb.cocorobo.cn/"
  8288. })
  8289. _box.appendChild(_iframe);
  8290. _box.appendChild(_jie);
  8291. _formdiv = new U.UF.UI.form(
  8292. "电子白板-" + _username,
  8293. _box, {
  8294. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8295. "style": {
  8296. "width": "90%",
  8297. "height": "90%",
  8298. "overflow": 'hidden'
  8299. },
  8300. "onresize": function () { }
  8301. }, {
  8302. closecallback: function () { }
  8303. }, {
  8304. "style": {
  8305. "height": "36px"
  8306. }
  8307. }).form; //创建窗体
  8308. _taskbar = {
  8309. "id": str + _formdiv.id,
  8310. "style": {
  8311. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8312. },
  8313. "name": "电子白板",
  8314. "forms": _formdiv,
  8315. "click": function () {
  8316. U.MD.D.I.openApplication(str, obj, info);
  8317. }
  8318. }
  8319. break;
  8320. case "mind":
  8321. aTool = 3;
  8322. _iframe = $$("iframe", {
  8323. "frameborder": "no",
  8324. "border": "0",
  8325. "scrolling ": "no",
  8326. "style": {
  8327. "cssText": "border:0;width:100%;height:100%"
  8328. },
  8329. "src": "/kityminder-editor/dist/index.html"
  8330. })
  8331. _box.appendChild(_iframe);
  8332. _box.appendChild(_jie);
  8333. _formdiv = new U.UF.UI.form(
  8334. "思维导图-" + _username,
  8335. _box, { //"/jsmind/example/demo.html"
  8336. "id": "mind" + cid + stage + task + tool + _userid,
  8337. "style": {
  8338. "width": "90%",
  8339. "height": "90%",
  8340. "overflow": 'hidden'
  8341. },
  8342. "onresize": function () { }
  8343. }, {
  8344. closecallback: function () { }
  8345. }, {
  8346. "style": {
  8347. "height": "36px"
  8348. }
  8349. }).form; //创建窗体
  8350. _taskbar = {
  8351. "id": str + _formdiv.id,
  8352. "style": {
  8353. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8354. },
  8355. "name": "思维导图",
  8356. "forms": _formdiv,
  8357. "click": function () {
  8358. U.MD.D.I.openApplication(str, obj, info);
  8359. }
  8360. }
  8361. break;
  8362. case "MindMap":
  8363. aTool = 3;
  8364. _iframe = $$("iframe", {
  8365. "frameborder": "no",
  8366. "border": "0",
  8367. "scrolling ": "no",
  8368. "style": {
  8369. "cssText": "border:0;width:100%;height:100%"
  8370. },
  8371. "src": "//cloud.cocorobo.cn/mind/"
  8372. })
  8373. _box.appendChild(_iframe);
  8374. _box.appendChild(_jie);
  8375. _formdiv = new U.UF.UI.form(
  8376. "思维导图-" + _username,
  8377. _box, { //"/jsmind/example/demo.html"
  8378. "id": "mind" + cid + stage + task + tool + _userid,
  8379. "style": {
  8380. "width": "90%",
  8381. "height": "90%",
  8382. "overflow": 'hidden'
  8383. },
  8384. "onresize": function () { }
  8385. }, {
  8386. closecallback: function () { }
  8387. }, {
  8388. "style": {
  8389. "height": "36px"
  8390. }
  8391. }).form; //创建窗体
  8392. _taskbar = {
  8393. "id": str + _formdiv.id,
  8394. "style": {
  8395. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8396. },
  8397. "name": "思维导图",
  8398. "forms": _formdiv,
  8399. "click": function () {
  8400. U.MD.D.I.openApplication(str, obj, info);
  8401. }
  8402. }
  8403. break;
  8404. case "doc":
  8405. aTool = 6;
  8406. _iframe = $$("iframe", {
  8407. "frameborder": "no",
  8408. "border": "0",
  8409. "scrolling ": "no",
  8410. "style": {
  8411. "cssText": "border:0;width:100%;height:100%"
  8412. },
  8413. "src": "/Office/Word/WordEditArea.htm"
  8414. })
  8415. _box.appendChild(_iframe);
  8416. _box.appendChild(_jie);
  8417. _formdiv = new U.UF.UI.form(
  8418. "协同文档-" + _username,
  8419. _box, {
  8420. "id": "doc" + cid + stage + task + tool + _userid,
  8421. "style": {
  8422. "width": "90%",
  8423. "height": "90%",
  8424. "overflow": 'hidden'
  8425. },
  8426. "onresize": function () { }
  8427. }, {
  8428. closecallback: function () { }
  8429. }, {
  8430. "style": {
  8431. "height": "36px"
  8432. }
  8433. }).form; //创建窗体
  8434. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8435. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8436. })
  8437. _taskbar = {
  8438. "id": str + _formdiv.id,
  8439. "style": {
  8440. "backgroundImage": "url(/img/icon/doc.png)"
  8441. },
  8442. "name": "协同文档",
  8443. "forms": _formdiv,
  8444. "click": function () {
  8445. U.MD.D.I.openApplication(str, obj, info);
  8446. }
  8447. }
  8448. break;
  8449. case "mindNetwork": //好友打开
  8450. aTool = 7;
  8451. _iframe = $$("iframe", {
  8452. "webkitallowfullscreen": "",
  8453. "mozallowfullscreen": "",
  8454. "allowfullscreen": "",
  8455. "frameborder": "no",
  8456. "border": "0",
  8457. "scrolling ": "no",
  8458. "style": {
  8459. "cssText": "border:0; width:100%; height:100%;"
  8460. },
  8461. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8462. })
  8463. _box.appendChild(_iframe);
  8464. _box.appendChild(_jie);
  8465. _formdiv = new U.UF.UI.form(
  8466. "思维网格-" + _username,
  8467. _box, {
  8468. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8469. "style": {
  8470. "width": "90%",
  8471. "height": "90%",
  8472. "overflow": 'hidden'
  8473. },
  8474. "onresize": function () { }
  8475. }, {
  8476. closecallback: function () { }
  8477. }, {
  8478. "style": {
  8479. "height": "36px"
  8480. }
  8481. }).form; //创建窗体
  8482. _taskbar = {
  8483. "id": str + _formdiv.id,
  8484. "style": {
  8485. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8486. },
  8487. "name": "思维网格",
  8488. "forms": _formdiv,
  8489. "click": function () {
  8490. U.MD.D.I.openApplication(str, obj, info);
  8491. }
  8492. }
  8493. break;
  8494. case "courseDesign":
  8495. _iframe = $$("iframe", {
  8496. "webkitallowfullscreen": "",
  8497. "mozallowfullscreen": "",
  8498. "allowfullscreen": "",
  8499. "frameborder": "no",
  8500. "border": "0",
  8501. "scrolling ": "no",
  8502. "style": {
  8503. "cssText": "border:0; width:100%; height:100%;"
  8504. },
  8505. "src": "/course-design-vue"
  8506. })
  8507. _box.appendChild(_iframe);
  8508. _box.appendChild(_jie);
  8509. _formdiv = new U.UF.UI.form(
  8510. "项目设计-" + _username,
  8511. _box, {
  8512. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8513. "style": {
  8514. "width": "90%",
  8515. "height": "90%",
  8516. "overflow": 'hidden'
  8517. },
  8518. "onresize": function () { }
  8519. }, {
  8520. closecallback: function () { }
  8521. }, {
  8522. "style": {
  8523. "height": "36px"
  8524. }
  8525. }).form; //创建窗体
  8526. _taskbar = {
  8527. "id": str + _formdiv.id,
  8528. "style": {
  8529. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8530. },
  8531. "name": "项目设计",
  8532. "forms": _formdiv,
  8533. "click": function () {
  8534. U.MD.D.I.openApplication(str, obj, info);
  8535. }
  8536. }
  8537. break;
  8538. }
  8539. const script1 = document.createElement("script");
  8540. script1.type = "text/javascript";
  8541. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8542. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8543. const script2 = document.createElement("script");
  8544. script2.type = "text/javascript";
  8545. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8546. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8547. const script3 = document.createElement("script");
  8548. script3.type = "text/javascript";
  8549. script3.charset = "UTF-8";
  8550. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8551. const script4 = document.createElement("script");
  8552. script4.type = "text/javascript";
  8553. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8554. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8555. if (_iframe) {
  8556. if (str == 'doc') {
  8557. _iframe = _formdiv.querySelector('iframe')
  8558. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8559. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8560. _iframe.contentWindow.document.body.appendChild(script1);
  8561. _iframe.contentWindow.document.body.appendChild(script2);
  8562. // _iframe.contentWindow.document.body.appendChild(script3);
  8563. _iframe.contentWindow.document.body.appendChild(script4);
  8564. })
  8565. if (onloadListener) {
  8566. _iframe.contentDocument.location.reload()
  8567. } else {
  8568. _iframe.contentDocument.location.reload()
  8569. }
  8570. } else if (str == 'courseDesign') {
  8571. U.UF.DL.iframeLoad(_iframe, function () {
  8572. // _iframe.contentWindow.U.MD.O.W.load();
  8573. // _iframe.contentWindow.document.body.appendChild(script1);
  8574. _iframe.contentWindow.document.body.appendChild(script2);
  8575. _iframe.contentWindow.document.body.appendChild(script4);
  8576. })
  8577. } else if (str == 'mind') {
  8578. _iframe = _formdiv.querySelector('iframe')
  8579. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8580. //
  8581. _iframe.contentWindow.document.body.appendChild(script1);
  8582. _iframe.contentWindow.document.body.appendChild(script2);
  8583. _iframe.contentWindow.document.body.appendChild(script4);
  8584. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8585. })
  8586. if (onloadListener) {
  8587. _iframe.contentDocument.location.reload()
  8588. } else {
  8589. _iframe.contentDocument.location.reload()
  8590. }
  8591. } else if (str == 'whiteboard') {
  8592. _iframe = _formdiv.querySelector('iframe')
  8593. let onloadListener = _iframe.onload = () => {
  8594. _iframe.contentWindow.document.body.appendChild(script1);
  8595. _iframe.contentWindow.document.body.appendChild(script2);
  8596. _iframe.contentWindow.document.body.appendChild(script4);
  8597. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8598. };
  8599. // if (onloadListener) {
  8600. // try {
  8601. // _iframe.src += "?cocorobo="+new Date().getTime()
  8602. // _iframe.contentWindow.document.location.reload()
  8603. // } catch (error) {
  8604. // }
  8605. // } else {
  8606. // _iframe.contentDocument.location.reload()
  8607. // }
  8608. } else {
  8609. _iframe.onload = () => {
  8610. _iframe.contentWindow.document.body.appendChild(script1);
  8611. _iframe.contentWindow.document.body.appendChild(script2);
  8612. // _iframe.contentWindow.document.body.appendChild(script3);
  8613. _iframe.contentWindow.document.body.appendChild(script4);
  8614. };
  8615. }
  8616. _jie.onclick = async () => {
  8617. let text = ''
  8618. if (aTool == 1) {
  8619. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8620. } else if (aTool == 6) {
  8621. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8622. } else if (aTool == 3) {
  8623. text = await U.MD.D.I.getEditorContent(_iframe);
  8624. }
  8625. _loading.style.display = 'flex'
  8626. console.log(_loading);
  8627. var _ajs = _iframe.contentWindow.document.createElement("script");
  8628. _ajs.type = "text/javascript";
  8629. _ajs.innerHTML =
  8630. // 'console.log(' + _loading + ');\n' +
  8631. 'var _js = document.createElement("script");\n' +
  8632. '_js.type="text/javascript";\n' +
  8633. '_js.charset="UTF-8";\n' +
  8634. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8635. "_js.onload = function(){\n" +
  8636. ' var a = document.getElementsByTagName("img")\n' +
  8637. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8638. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8639. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8640. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8641. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8642. "beforeUpload_shishi(file," +
  8643. "'" +
  8644. _userid +
  8645. "'" +
  8646. ", " +
  8647. "'" +
  8648. _cid +
  8649. "'" +
  8650. ", " +
  8651. "'" +
  8652. _stage +
  8653. "'" +
  8654. ", " +
  8655. "'" +
  8656. _task +
  8657. "'" +
  8658. ", " +
  8659. "'" +
  8660. _tool +
  8661. "'" +
  8662. ", " +
  8663. "'" +
  8664. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8665. "'" +
  8666. ", " +
  8667. "'" +
  8668. aTool +
  8669. "'" +
  8670. ", " +
  8671. "`" +
  8672. text +
  8673. "`" +
  8674. ")\n" +
  8675. " });\n" +
  8676. "}\n" +
  8677. "document.head.appendChild(_js);\n";
  8678. _iframe.contentWindow.document.head.appendChild(_ajs);
  8679. }
  8680. }
  8681. }
  8682. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8683. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8684. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8685. _userid = student.userid, //登录用户id
  8686. _username = student.student //用户名字
  8687. let _iframe;
  8688. let _cid = cid,
  8689. _stage = stage,
  8690. _task = task,
  8691. _tool = tool;
  8692. var _jie = $$("div", {
  8693. "style": {
  8694. "position": "absolute",
  8695. "bottom": "50px",
  8696. "right": "50px",
  8697. "zIndex": "9999",
  8698. "backgroundColor": "#2268bc",
  8699. "color": "#fff",
  8700. "padding": "12px 20px",
  8701. "cursor": "pointer",
  8702. "borderRadius": "4px",
  8703. },
  8704. "innerHTML": "提交作业"
  8705. })
  8706. let aTool = ''
  8707. let _loading = document.createElement('div')
  8708. _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;"
  8709. // _loading.id = "";
  8710. let _lchild = document.createElement('div')
  8711. let _limg = document.createElement('img')
  8712. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8713. _limg.style = "width: 26px;margin-right: 10px;"
  8714. _lchild.appendChild(_limg)
  8715. let _lspan = document.createElement('span')
  8716. _lspan.innerHTML = "上传中..."
  8717. _lchild.appendChild(_lspan)
  8718. _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%);"
  8719. _loading.appendChild(_lchild)
  8720. var _box = $$('div', {
  8721. "style": {
  8722. "position": "relative",
  8723. "width": "100%",
  8724. "height": "100%",
  8725. },
  8726. })
  8727. _box.appendChild(_loading)
  8728. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8729. switch (str) {
  8730. case "whiteboard":
  8731. aTool = 1;
  8732. _iframe = $$("iframe", {
  8733. "frameborder": "no",
  8734. "border": "0",
  8735. "scrolling ": "no",
  8736. "style": {
  8737. "cssText": "border:0;width:100%;height:100%"
  8738. },
  8739. "src": "https://beta.iwb.cocorobo.cn/"
  8740. })
  8741. _box.appendChild(_iframe);
  8742. _box.appendChild(_jie);
  8743. _formdiv = new U.UF.UI.form(
  8744. "电子白板-" + _username,
  8745. _box, {
  8746. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8747. "style": {
  8748. "width": "90%",
  8749. "height": "90%",
  8750. "overflow": 'hidden'
  8751. },
  8752. "onresize": function () { }
  8753. }, {
  8754. closecallback: function () { }
  8755. }, {
  8756. "style": {
  8757. "height": "36px"
  8758. }
  8759. }).form; //创建窗体
  8760. _taskbar = {
  8761. "id": str + _formdiv.id,
  8762. "style": {
  8763. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8764. },
  8765. "name": "电子白板",
  8766. "forms": _formdiv,
  8767. "click": function () {
  8768. U.MD.D.I.openApplication(str, obj, info);
  8769. }
  8770. }
  8771. break;
  8772. case "mind":
  8773. aTool = 3;
  8774. _iframe = $$("iframe", {
  8775. "frameborder": "no",
  8776. "border": "0",
  8777. "scrolling ": "no",
  8778. "style": {
  8779. "cssText": "border:0;width:100%;height:100%"
  8780. },
  8781. "src": "/kityminder-editor/dist/index.html"
  8782. })
  8783. _box.appendChild(_iframe);
  8784. _box.appendChild(_jie);
  8785. _formdiv = new U.UF.UI.form(
  8786. "思维导图-" + _username,
  8787. _box, { //"/jsmind/example/demo.html"
  8788. "id": "mind" + cid + stage + task + tool + _userid,
  8789. "style": {
  8790. "width": "90%",
  8791. "height": "90%",
  8792. "overflow": 'hidden'
  8793. },
  8794. "onresize": function () { }
  8795. }, {
  8796. closecallback: function () { }
  8797. }, {
  8798. "style": {
  8799. "height": "36px"
  8800. }
  8801. }).form; //创建窗体
  8802. _taskbar = {
  8803. "id": str + _formdiv.id,
  8804. "style": {
  8805. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8806. },
  8807. "name": "思维导图",
  8808. "forms": _formdiv,
  8809. "click": function () {
  8810. U.MD.D.I.openApplication(str, obj, info);
  8811. }
  8812. }
  8813. break;
  8814. case "MindMap":
  8815. aTool = 3;
  8816. _iframe = $$("iframe", {
  8817. "frameborder": "no",
  8818. "border": "0",
  8819. "scrolling ": "no",
  8820. "style": {
  8821. "cssText": "border:0;width:100%;height:100%"
  8822. },
  8823. "src": "//cloud.cocorobo.cn/mind/"
  8824. })
  8825. _box.appendChild(_iframe);
  8826. _box.appendChild(_jie);
  8827. _formdiv = new U.UF.UI.form(
  8828. "思维导图-" + _username,
  8829. _box, { //"/jsmind/example/demo.html"
  8830. "id": "mind" + cid + stage + task + tool + _userid,
  8831. "style": {
  8832. "width": "90%",
  8833. "height": "90%",
  8834. "overflow": 'hidden'
  8835. },
  8836. "onresize": function () { }
  8837. }, {
  8838. closecallback: function () { }
  8839. }, {
  8840. "style": {
  8841. "height": "36px"
  8842. }
  8843. }).form; //创建窗体
  8844. _taskbar = {
  8845. "id": str + _formdiv.id,
  8846. "style": {
  8847. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8848. },
  8849. "name": "思维导图",
  8850. "forms": _formdiv,
  8851. "click": function () {
  8852. U.MD.D.I.openApplication(str, obj, info);
  8853. }
  8854. }
  8855. break;
  8856. case "doc":
  8857. aTool = 6;
  8858. _iframe = $$("iframe", {
  8859. "frameborder": "no",
  8860. "border": "0",
  8861. "scrolling ": "no",
  8862. "style": {
  8863. "cssText": "border:0;width:100%;height:100%"
  8864. },
  8865. "src": "/Office/Word/WordEditArea.htm"
  8866. })
  8867. _box.appendChild(_iframe);
  8868. _box.appendChild(_jie);
  8869. _formdiv = new U.UF.UI.form(
  8870. "协同文档-" + _username,
  8871. _box, {
  8872. "id": "doc" + cid + stage + task + tool + _userid,
  8873. "style": {
  8874. "width": "90%",
  8875. "height": "90%",
  8876. "overflow": 'hidden'
  8877. },
  8878. "onresize": function () { }
  8879. }, {
  8880. closecallback: function () { }
  8881. }, {
  8882. "style": {
  8883. "height": "36px"
  8884. }
  8885. }).form; //创建窗体
  8886. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8887. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8888. })
  8889. _taskbar = {
  8890. "id": str + _formdiv.id,
  8891. "style": {
  8892. "backgroundImage": "url(/img/icon/doc.png)"
  8893. },
  8894. "name": "协同文档",
  8895. "forms": _formdiv,
  8896. "click": function () {
  8897. U.MD.D.I.openApplication(str, obj, info);
  8898. }
  8899. }
  8900. break;
  8901. case "mindNetwork": //好友打开
  8902. aTool = 7;
  8903. _iframe = $$("iframe", {
  8904. "webkitallowfullscreen": "",
  8905. "mozallowfullscreen": "",
  8906. "allowfullscreen": "",
  8907. "frameborder": "no",
  8908. "border": "0",
  8909. "scrolling ": "no",
  8910. "style": {
  8911. "cssText": "border:0; width:100%; height:100%;"
  8912. },
  8913. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8914. })
  8915. _box.appendChild(_iframe);
  8916. _box.appendChild(_jie);
  8917. _formdiv = new U.UF.UI.form(
  8918. "思维网格-" + _username,
  8919. _box, {
  8920. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8921. "style": {
  8922. "width": "90%",
  8923. "height": "90%",
  8924. "overflow": 'hidden'
  8925. },
  8926. "onresize": function () { }
  8927. }, {
  8928. closecallback: function () { }
  8929. }, {
  8930. "style": {
  8931. "height": "36px"
  8932. }
  8933. }).form; //创建窗体
  8934. _taskbar = {
  8935. "id": str + _formdiv.id,
  8936. "style": {
  8937. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8938. },
  8939. "name": "思维网格",
  8940. "forms": _formdiv,
  8941. "click": function () {
  8942. U.MD.D.I.openApplication(str, obj, info);
  8943. }
  8944. }
  8945. break;
  8946. case "courseDesign":
  8947. _iframe = $$("iframe", {
  8948. "webkitallowfullscreen": "",
  8949. "mozallowfullscreen": "",
  8950. "allowfullscreen": "",
  8951. "frameborder": "no",
  8952. "border": "0",
  8953. "scrolling ": "no",
  8954. "style": {
  8955. "cssText": "border:0; width:100%; height:100%;"
  8956. },
  8957. "src": "/course-design-vue"
  8958. })
  8959. _box.appendChild(_iframe);
  8960. _box.appendChild(_jie);
  8961. _formdiv = new U.UF.UI.form(
  8962. "项目设计-" + _username,
  8963. _box, {
  8964. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8965. "style": {
  8966. "width": "90%",
  8967. "height": "90%",
  8968. "overflow": 'hidden'
  8969. },
  8970. "onresize": function () { }
  8971. }, {
  8972. closecallback: function () { }
  8973. }, {
  8974. "style": {
  8975. "height": "36px"
  8976. }
  8977. }).form; //创建窗体
  8978. _taskbar = {
  8979. "id": str + _formdiv.id,
  8980. "style": {
  8981. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8982. },
  8983. "name": "项目设计",
  8984. "forms": _formdiv,
  8985. "click": function () {
  8986. U.MD.D.I.openApplication(str, obj, info);
  8987. }
  8988. }
  8989. break;
  8990. }
  8991. const script1 = document.createElement("script");
  8992. script1.type = "text/javascript";
  8993. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8994. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8995. const script2 = document.createElement("script");
  8996. script2.type = "text/javascript";
  8997. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8998. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8999. const script3 = document.createElement("script");
  9000. script3.type = "text/javascript";
  9001. script3.charset = "UTF-8";
  9002. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9003. const script4 = document.createElement("script");
  9004. script4.type = "text/javascript";
  9005. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9006. script4.src = window.origin + "/js/Common/jietu2E.js";
  9007. if (_iframe) {
  9008. if (str == 'doc') {
  9009. _iframe = _formdiv.querySelector('iframe')
  9010. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9011. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9012. _iframe.contentWindow.document.body.appendChild(script1);
  9013. _iframe.contentWindow.document.body.appendChild(script2);
  9014. // _iframe.contentWindow.document.body.appendChild(script3);
  9015. _iframe.contentWindow.document.body.appendChild(script4);
  9016. })
  9017. if (onloadListener) {
  9018. _iframe.contentDocument.location.reload()
  9019. } else {
  9020. _iframe.contentDocument.location.reload()
  9021. }
  9022. } else if (str == 'courseDesign') {
  9023. U.UF.DL.iframeLoad(_iframe, function () {
  9024. // _iframe.contentWindow.U.MD.O.W.load();
  9025. // _iframe.contentWindow.document.body.appendChild(script1);
  9026. _iframe.contentWindow.document.body.appendChild(script2);
  9027. _iframe.contentWindow.document.body.appendChild(script4);
  9028. })
  9029. } else if (str == 'mind') {
  9030. _iframe = _formdiv.querySelector('iframe')
  9031. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9032. //
  9033. _iframe.contentWindow.document.body.appendChild(script1);
  9034. _iframe.contentWindow.document.body.appendChild(script2);
  9035. _iframe.contentWindow.document.body.appendChild(script4);
  9036. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9037. })
  9038. if (onloadListener) {
  9039. _iframe.contentDocument.location.reload()
  9040. } else {
  9041. _iframe.contentDocument.location.reload()
  9042. }
  9043. } else if (str == 'whiteboard') {
  9044. _iframe = _formdiv.querySelector('iframe')
  9045. let onloadListener = _iframe.onload = () => {
  9046. _iframe.contentWindow.document.body.appendChild(script1);
  9047. _iframe.contentWindow.document.body.appendChild(script2);
  9048. _iframe.contentWindow.document.body.appendChild(script4);
  9049. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9050. };
  9051. // if (onloadListener) {
  9052. // try {
  9053. // _iframe.src += "?cocorobo="+new Date().getTime()
  9054. // _iframe.contentWindow.document.location.reload()
  9055. // } catch (error) {
  9056. // }
  9057. // } else {
  9058. // _iframe.contentDocument.location.reload()
  9059. // }
  9060. } else {
  9061. _iframe.onload = () => {
  9062. _iframe.contentWindow.document.body.appendChild(script1);
  9063. _iframe.contentWindow.document.body.appendChild(script2);
  9064. // _iframe.contentWindow.document.body.appendChild(script3);
  9065. _iframe.contentWindow.document.body.appendChild(script4);
  9066. };
  9067. }
  9068. _jie.onclick = async () => {
  9069. let text = ''
  9070. if (aTool == 1) {
  9071. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9072. } else if (aTool == 6) {
  9073. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9074. } else if (aTool == 3) {
  9075. text = await U.MD.D.I.getEditorContent(_iframe);
  9076. }
  9077. _loading.style.display = 'flex'
  9078. console.log(_loading);
  9079. var _ajs = _iframe.contentWindow.document.createElement("script");
  9080. _ajs.type = "text/javascript";
  9081. _ajs.innerHTML =
  9082. // 'console.log(' + _loading + ');\n' +
  9083. 'var _js = document.createElement("script");\n' +
  9084. '_js.type="text/javascript";\n' +
  9085. '_js.charset="UTF-8";\n' +
  9086. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9087. "_js.onload = function(){\n" +
  9088. ' var a = document.getElementsByTagName("img")\n' +
  9089. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9090. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9091. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9092. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9093. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9094. "beforeUpload_shishi(file," +
  9095. "'" +
  9096. _userid +
  9097. "'" +
  9098. ", " +
  9099. "'" +
  9100. _cid +
  9101. "'" +
  9102. ", " +
  9103. "'" +
  9104. _stage +
  9105. "'" +
  9106. ", " +
  9107. "'" +
  9108. _task +
  9109. "'" +
  9110. ", " +
  9111. "'" +
  9112. _tool +
  9113. "'" +
  9114. ", " +
  9115. "'" +
  9116. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9117. "'" +
  9118. ", " +
  9119. "'" +
  9120. aTool +
  9121. "'" +
  9122. ", " +
  9123. "`" +
  9124. text +
  9125. "`" +
  9126. ")\n" +
  9127. " });\n" +
  9128. "}\n" +
  9129. "document.head.appendChild(_js);\n";
  9130. _iframe.contentWindow.document.head.appendChild(_ajs);
  9131. }
  9132. }
  9133. }
  9134. U.MD.D.I.getEditorContent = function (iframe) {
  9135. return new Promise((resolve, reject) => {
  9136. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9137. console.log(content);
  9138. resolve(content)
  9139. });
  9140. });
  9141. }
  9142. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9143. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9144. // if (res.value[0].length > 0) {
  9145. // // resolve(res.value[0][0].text);
  9146. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9147. // $(fileInput).val('');
  9148. // });
  9149. // }
  9150. // }, [], { "type": "GET", "withCredentials": true });
  9151. var xmlhttp;
  9152. var Mac, Sn, DeviceId
  9153. if (window.XMLHttpRequest) {
  9154. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9155. xmlhttp = new XMLHttpRequest();
  9156. } else {
  9157. // IE6, IE5 浏览器执行代码
  9158. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9159. }
  9160. xmlhttp.onreadystatechange = function () {
  9161. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9162. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9163. // resolve(res.value[0][0].text);
  9164. if (type == '2') {
  9165. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9166. } else if (type == '3') {
  9167. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9168. }
  9169. } else {
  9170. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9171. }
  9172. }
  9173. }
  9174. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9175. xmlhttp.send();
  9176. }
  9177. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9178. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9179. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9180. _userinfo = US.userInfo, //登录用户信息
  9181. _userid = US.userInfo.userid //登录用户id
  9182. let _iframe;
  9183. let _cid = cid,
  9184. _stage = stage,
  9185. _task = task,
  9186. _tool = tool;
  9187. var _jie = $$("div", {
  9188. "style": {
  9189. "position": "absolute",
  9190. "bottom": "50px",
  9191. "right": "50px",
  9192. "zIndex": "9999",
  9193. "backgroundColor": "#2268bc",
  9194. "color": "#fff",
  9195. "padding": "12px 20px",
  9196. "cursor": "pointer",
  9197. "borderRadius": "4px",
  9198. },
  9199. "innerHTML": "确认并提交"
  9200. })
  9201. let aTool = ''
  9202. let _loading = document.createElement('div')
  9203. _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;"
  9204. // _loading.id = "";
  9205. let _lchild = document.createElement('div')
  9206. let _limg = document.createElement('img')
  9207. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9208. _limg.style = "width: 26px;margin-right: 10px;"
  9209. _lchild.appendChild(_limg)
  9210. let _lspan = document.createElement('span')
  9211. _lspan.innerHTML = "上传中..."
  9212. _lchild.appendChild(_lspan)
  9213. _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%);"
  9214. _loading.appendChild(_lchild)
  9215. var _box = $$('div', {
  9216. "style": {
  9217. "position": "relative",
  9218. "width": "100%",
  9219. "height": "100%",
  9220. },
  9221. })
  9222. _box.appendChild(_loading)
  9223. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9224. switch (str) {
  9225. case "whiteboard":
  9226. aTool = 1;
  9227. _iframe = $$("iframe", {
  9228. "frameborder": "no",
  9229. "border": "0",
  9230. "scrolling ": "no",
  9231. "style": {
  9232. "cssText": "border:0;width:100%;height:100%"
  9233. },
  9234. "src": "https://beta.iwb.cocorobo.cn/"
  9235. })
  9236. _box.appendChild(_iframe);
  9237. _box.appendChild(_jie);
  9238. _formdiv = new U.UF.UI.form(
  9239. "电子白板",
  9240. _box, {
  9241. "id": "whiteboards" + cid + stage + task + tool,
  9242. "style": {
  9243. "width": "90%",
  9244. "height": "90%",
  9245. "overflow": 'hidden'
  9246. },
  9247. "onresize": function () { }
  9248. }, {
  9249. closecallback: function () { }
  9250. }, {
  9251. "style": {
  9252. "height": "36px"
  9253. }
  9254. }).form; //创建窗体
  9255. _taskbar = {
  9256. "id": str + _formdiv.id,
  9257. "style": {
  9258. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9259. },
  9260. "name": "电子白板",
  9261. "forms": _formdiv,
  9262. "click": function () {
  9263. U.MD.D.I.openApplication(str, obj, info);
  9264. }
  9265. }
  9266. break;
  9267. case "mind":
  9268. aTool = 3;
  9269. _iframe = $$("iframe", {
  9270. "frameborder": "no",
  9271. "border": "0",
  9272. "scrolling ": "no",
  9273. "style": {
  9274. "cssText": "border:0;width:100%;height:100%"
  9275. },
  9276. "src": "/kityminder-editor/dist/index.html"
  9277. });
  9278. _box.appendChild(_iframe);
  9279. _box.appendChild(_jie);
  9280. _formdiv = new U.UF.UI.form(
  9281. "思维导图",
  9282. _box, { //"/jsmind/example/demo.html"
  9283. "id": "minds" + cid + stage + task + tool,
  9284. "style": {
  9285. "width": "90%",
  9286. "height": "90%",
  9287. "overflow": 'hidden'
  9288. },
  9289. "onresize": function () { }
  9290. }, {
  9291. closecallback: function () { }
  9292. }, {
  9293. "style": {
  9294. "height": "36px"
  9295. }
  9296. }).form; //创建窗体
  9297. _taskbar = {
  9298. "id": str + _formdiv.id,
  9299. "style": {
  9300. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9301. },
  9302. "name": "思维导图",
  9303. "forms": _formdiv,
  9304. "click": function () {
  9305. U.MD.D.I.openApplication(str, obj, info);
  9306. }
  9307. }
  9308. break;
  9309. case "doc":
  9310. aTool = 6;
  9311. _iframe = $$("iframe", {
  9312. "frameborder": "no",
  9313. "border": "0",
  9314. "scrolling ": "no",
  9315. "style": {
  9316. "cssText": "border:0;width:100%;height:100%"
  9317. },
  9318. "src": "/Office/Word/WordEditArea.htm"
  9319. })
  9320. _box.appendChild(_iframe);
  9321. _box.appendChild(_jie);
  9322. _formdiv = new U.UF.UI.form(
  9323. "协同文档",
  9324. _box, {
  9325. "id": "docs" + cid + stage + task + tool,
  9326. "style": {
  9327. "width": "90%",
  9328. "height": "90%",
  9329. "overflow": 'hidden'
  9330. },
  9331. "onresize": function () { }
  9332. }, {
  9333. closecallback: function () { }
  9334. }, {
  9335. "style": {
  9336. "height": "36px"
  9337. }
  9338. }).form; //创建窗体
  9339. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9340. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9341. })
  9342. _taskbar = {
  9343. "id": str + _formdiv.id,
  9344. "style": {
  9345. "backgroundImage": "url(/img/icon/doc.png)"
  9346. },
  9347. "name": "协同文档",
  9348. "forms": _formdiv,
  9349. "click": function () {
  9350. U.MD.D.I.openApplication(str, obj, info);
  9351. }
  9352. }
  9353. break;
  9354. }
  9355. const script1 = document.createElement("script");
  9356. script1.type = "text/javascript";
  9357. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9358. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9359. const script2 = document.createElement("script");
  9360. script2.type = "text/javascript";
  9361. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9362. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9363. const script3 = document.createElement("script");
  9364. script3.type = "text/javascript";
  9365. script3.charset = "UTF-8";
  9366. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9367. const script4 = document.createElement("script");
  9368. script4.type = "text/javascript";
  9369. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9370. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9371. if (_iframe) {
  9372. if (str == 'doc') {
  9373. _iframe = _formdiv.querySelector('iframe')
  9374. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9375. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9376. _iframe.contentWindow.document.body.appendChild(script1);
  9377. _iframe.contentWindow.document.body.appendChild(script2);
  9378. // _iframe.contentWindow.document.body.appendChild(script3);
  9379. _iframe.contentWindow.document.body.appendChild(script4);
  9380. })
  9381. if (onloadListener) {
  9382. _iframe.contentDocument.location.reload()
  9383. } else {
  9384. _iframe.contentDocument.location.reload()
  9385. }
  9386. } else if (str == 'mind') {
  9387. _iframe = _formdiv.querySelector('iframe')
  9388. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9389. _iframe.contentWindow.document.body.appendChild(script1);
  9390. _iframe.contentWindow.document.body.appendChild(script2);
  9391. _iframe.contentWindow.document.body.appendChild(script4);
  9392. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9393. })
  9394. if (onloadListener) {
  9395. _iframe.contentDocument.location.reload()
  9396. } else {
  9397. _iframe.contentDocument.location.reload()
  9398. }
  9399. } else {
  9400. _iframe.onload = () => {
  9401. _iframe.contentWindow.document.body.appendChild(script1);
  9402. _iframe.contentWindow.document.body.appendChild(script2);
  9403. // _iframe.contentWindow.document.body.appendChild(script3);
  9404. _iframe.contentWindow.document.body.appendChild(script4);
  9405. };
  9406. }
  9407. _jie.onclick = async () => {
  9408. let text = ''
  9409. if (aTool == 6) {
  9410. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9411. } else if (aTool == 3) {
  9412. text = await U.MD.D.I.getEditorContent(_iframe);
  9413. }
  9414. _loading.style.display = 'flex'
  9415. console.log(_loading);
  9416. var _ajs = _iframe.contentWindow.document.createElement("script");
  9417. _ajs.type = "text/javascript";
  9418. _ajs.innerHTML =
  9419. // 'console.log(' + _loading + ');\n' +
  9420. 'var _js = document.createElement("script");\n' +
  9421. '_js.type="text/javascript";\n' +
  9422. '_js.charset="UTF-8";\n' +
  9423. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9424. "_js.onload = function(){\n" +
  9425. ' var a = document.getElementsByTagName("img")\n' +
  9426. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9427. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9428. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9429. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9430. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9431. "beforeUpload_shishi(file," +
  9432. "'" +
  9433. _userid +
  9434. "'" +
  9435. ", " +
  9436. "'" +
  9437. _cid +
  9438. "'" +
  9439. ", " +
  9440. "'" +
  9441. _stage +
  9442. "'" +
  9443. ", " +
  9444. "'" +
  9445. _task +
  9446. "'" +
  9447. ", " +
  9448. "'" +
  9449. _tool +
  9450. "'" +
  9451. ", " +
  9452. "'" +
  9453. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9454. "'" +
  9455. ", " +
  9456. "'" +
  9457. aTool +
  9458. "'" +
  9459. ", " +
  9460. "`" +
  9461. text +
  9462. "`" +
  9463. ")\n" +
  9464. " });\n" +
  9465. "}\n" +
  9466. "document.head.appendChild(_js);\n";
  9467. _iframe.contentWindow.document.head.appendChild(_ajs);
  9468. }
  9469. }
  9470. //U.MD.D.I.openClick(str);
  9471. //如果有任务栏信息
  9472. // if (_taskbar) {
  9473. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9474. // }
  9475. }
  9476. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9477. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9478. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9479. _userinfo = US.userInfo, //登录用户信息
  9480. _userid = US.userInfo.userid //登录用户id
  9481. let _iframe;
  9482. let _cid = cid,
  9483. _stage = stage,
  9484. _task = task,
  9485. _tool = tool;
  9486. var _jie = $$("div", {
  9487. "style": {
  9488. "position": "absolute",
  9489. "bottom": "50px",
  9490. "right": "50px",
  9491. "zIndex": "9999",
  9492. "backgroundColor": "#2268bc",
  9493. "color": "#fff",
  9494. "padding": "12px 20px",
  9495. "cursor": "pointer",
  9496. "borderRadius": "4px",
  9497. },
  9498. "innerHTML": "确认并提交"
  9499. })
  9500. let aTool = ''
  9501. let _loading = document.createElement('div')
  9502. _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;"
  9503. // _loading.id = "";
  9504. let _lchild = document.createElement('div')
  9505. let _limg = document.createElement('img')
  9506. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9507. _limg.style = "width: 26px;margin-right: 10px;"
  9508. _lchild.appendChild(_limg)
  9509. let _lspan = document.createElement('span')
  9510. _lspan.innerHTML = "上传中..."
  9511. _lchild.appendChild(_lspan)
  9512. _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%);"
  9513. _loading.appendChild(_lchild)
  9514. var _box = $$('div', {
  9515. "style": {
  9516. "position": "relative",
  9517. "width": "100%",
  9518. "height": "100%",
  9519. },
  9520. })
  9521. _box.appendChild(_loading)
  9522. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9523. switch (str) {
  9524. case "whiteboard":
  9525. aTool = 1;
  9526. _iframe = $$("iframe", {
  9527. "frameborder": "no",
  9528. "border": "0",
  9529. "scrolling ": "no",
  9530. "style": {
  9531. "cssText": "border:0;width:100%;height:100%"
  9532. },
  9533. "src": "https://beta.iwb.cocorobo.cn/"
  9534. })
  9535. _box.appendChild(_iframe);
  9536. _box.appendChild(_jie);
  9537. _formdiv = new U.UF.UI.form(
  9538. "电子白板",
  9539. _box, {
  9540. "id": "whiteboards" + cid + stage + task + tool,
  9541. "style": {
  9542. "width": "90%",
  9543. "height": "90%",
  9544. "overflow": 'hidden'
  9545. },
  9546. "onresize": function () { }
  9547. }, {
  9548. closecallback: function () { }
  9549. }, {
  9550. "style": {
  9551. "height": "36px"
  9552. }
  9553. }).form; //创建窗体
  9554. _taskbar = {
  9555. "id": str + _formdiv.id,
  9556. "style": {
  9557. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9558. },
  9559. "name": "电子白板",
  9560. "forms": _formdiv,
  9561. "click": function () {
  9562. U.MD.D.I.openApplication(str, obj, info);
  9563. }
  9564. }
  9565. break;
  9566. case "mind":
  9567. aTool = 3;
  9568. _iframe = $$("iframe", {
  9569. "frameborder": "no",
  9570. "border": "0",
  9571. "scrolling ": "no",
  9572. "style": {
  9573. "cssText": "border:0;width:100%;height:100%"
  9574. },
  9575. "src": "/kityminder-editor/dist/index.html"
  9576. });
  9577. _box.appendChild(_iframe);
  9578. _box.appendChild(_jie);
  9579. _formdiv = new U.UF.UI.form(
  9580. "思维导图",
  9581. _box, { //"/jsmind/example/demo.html"
  9582. "id": "minds" + cid + stage + task + tool,
  9583. "style": {
  9584. "width": "90%",
  9585. "height": "90%",
  9586. "overflow": 'hidden'
  9587. },
  9588. "onresize": function () { }
  9589. }, {
  9590. closecallback: function () { }
  9591. }, {
  9592. "style": {
  9593. "height": "36px"
  9594. }
  9595. }).form; //创建窗体
  9596. _taskbar = {
  9597. "id": str + _formdiv.id,
  9598. "style": {
  9599. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9600. },
  9601. "name": "思维导图",
  9602. "forms": _formdiv,
  9603. "click": function () {
  9604. U.MD.D.I.openApplication(str, obj, info);
  9605. }
  9606. }
  9607. break;
  9608. case "doc":
  9609. aTool = 6;
  9610. _iframe = $$("iframe", {
  9611. "frameborder": "no",
  9612. "border": "0",
  9613. "scrolling ": "no",
  9614. "style": {
  9615. "cssText": "border:0;width:100%;height:100%"
  9616. },
  9617. "src": "/Office/Word/WordEditArea.htm"
  9618. })
  9619. _box.appendChild(_iframe);
  9620. _box.appendChild(_jie);
  9621. _formdiv = new U.UF.UI.form(
  9622. "协同文档",
  9623. _box, {
  9624. "id": "docs" + cid + stage + task + tool,
  9625. "style": {
  9626. "width": "90%",
  9627. "height": "90%",
  9628. "overflow": 'hidden'
  9629. },
  9630. "onresize": function () { }
  9631. }, {
  9632. closecallback: function () { }
  9633. }, {
  9634. "style": {
  9635. "height": "36px"
  9636. }
  9637. }).form; //创建窗体
  9638. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9639. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9640. })
  9641. _taskbar = {
  9642. "id": str + _formdiv.id,
  9643. "style": {
  9644. "backgroundImage": "url(/img/icon/doc.png)"
  9645. },
  9646. "name": "协同文档",
  9647. "forms": _formdiv,
  9648. "click": function () {
  9649. U.MD.D.I.openApplication(str, obj, info);
  9650. }
  9651. }
  9652. break;
  9653. }
  9654. const script1 = document.createElement("script");
  9655. script1.type = "text/javascript";
  9656. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9657. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9658. const script2 = document.createElement("script");
  9659. script2.type = "text/javascript";
  9660. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9661. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9662. const script3 = document.createElement("script");
  9663. script3.type = "text/javascript";
  9664. script3.charset = "UTF-8";
  9665. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9666. const script4 = document.createElement("script");
  9667. script4.type = "text/javascript";
  9668. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9669. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9670. if (_iframe) {
  9671. if (str == 'doc') {
  9672. _iframe = _formdiv.querySelector('iframe')
  9673. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9674. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9675. _iframe.contentWindow.document.body.appendChild(script1);
  9676. _iframe.contentWindow.document.body.appendChild(script2);
  9677. // _iframe.contentWindow.document.body.appendChild(script3);
  9678. _iframe.contentWindow.document.body.appendChild(script4);
  9679. })
  9680. if (onloadListener) {
  9681. _iframe.contentDocument.location.reload()
  9682. } else {
  9683. _iframe.contentDocument.location.reload()
  9684. }
  9685. } else if (str == 'mind') {
  9686. _iframe = _formdiv.querySelector('iframe')
  9687. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9688. _iframe.contentWindow.document.body.appendChild(script1);
  9689. _iframe.contentWindow.document.body.appendChild(script2);
  9690. _iframe.contentWindow.document.body.appendChild(script4);
  9691. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9692. })
  9693. if (onloadListener) {
  9694. _iframe.contentDocument.location.reload()
  9695. } else {
  9696. _iframe.contentDocument.location.reload()
  9697. }
  9698. } else {
  9699. _iframe.onload = () => {
  9700. _iframe.contentWindow.document.body.appendChild(script1);
  9701. _iframe.contentWindow.document.body.appendChild(script2);
  9702. // _iframe.contentWindow.document.body.appendChild(script3);
  9703. _iframe.contentWindow.document.body.appendChild(script4);
  9704. };
  9705. }
  9706. _jie.onclick = async () => {
  9707. let text = ''
  9708. if (aTool == 6) {
  9709. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9710. } else if (aTool == 3) {
  9711. text = await U.MD.D.I.getEditorContent(_iframe);
  9712. }
  9713. _loading.style.display = 'flex'
  9714. console.log(_loading);
  9715. var _ajs = _iframe.contentWindow.document.createElement("script");
  9716. _ajs.type = "text/javascript";
  9717. _ajs.innerHTML =
  9718. // 'console.log(' + _loading + ');\n' +
  9719. 'var _js = document.createElement("script");\n' +
  9720. '_js.type="text/javascript";\n' +
  9721. '_js.charset="UTF-8";\n' +
  9722. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9723. "_js.onload = function(){\n" +
  9724. ' var a = document.getElementsByTagName("img")\n' +
  9725. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9726. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9727. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9728. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9729. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9730. "beforeUpload_shishi(file," +
  9731. "'" +
  9732. _userid +
  9733. "'" +
  9734. ", " +
  9735. "'" +
  9736. _cid +
  9737. "'" +
  9738. ", " +
  9739. "'" +
  9740. _stage +
  9741. "'" +
  9742. ", " +
  9743. "'" +
  9744. _task +
  9745. "'" +
  9746. ", " +
  9747. "'" +
  9748. _tool +
  9749. "'" +
  9750. ", " +
  9751. "'" +
  9752. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9753. "'" +
  9754. ", " +
  9755. "'" +
  9756. aTool +
  9757. "'" +
  9758. ", " +
  9759. "`" +
  9760. text +
  9761. "`" +
  9762. ")\n" +
  9763. " });\n" +
  9764. "}\n" +
  9765. "document.head.appendChild(_js);\n";
  9766. _iframe.contentWindow.document.head.appendChild(_ajs);
  9767. }
  9768. }
  9769. //U.MD.D.I.openClick(str);
  9770. //如果有任务栏信息
  9771. // if (_taskbar) {
  9772. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9773. // }
  9774. }
  9775. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9776. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9777. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9778. _userinfo = US.userInfo, //登录用户信息
  9779. _userid = US.userInfo.userid //登录用户id
  9780. let _iframe;
  9781. let _cid = cid,
  9782. _stage = stage,
  9783. _task = task,
  9784. _tool = tool;
  9785. var _jie = $$("div", {
  9786. "style": {
  9787. "position": "absolute",
  9788. "bottom": "50px",
  9789. "right": "50px",
  9790. "zIndex": "9999",
  9791. "backgroundColor": "#2268bc",
  9792. "color": "#fff",
  9793. "padding": "12px 20px",
  9794. "cursor": "pointer",
  9795. "borderRadius": "4px",
  9796. },
  9797. "innerHTML": "上传模板"
  9798. })
  9799. let aTool = ''
  9800. let _loading = document.createElement('div')
  9801. _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;"
  9802. // _loading.id = "";
  9803. let _lchild = document.createElement('div')
  9804. let _limg = document.createElement('img')
  9805. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9806. _limg.style = "width: 26px;margin-right: 10px;"
  9807. _lchild.appendChild(_limg)
  9808. let _lspan = document.createElement('span')
  9809. _lspan.innerHTML = "上传中..."
  9810. _lchild.appendChild(_lspan)
  9811. _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%);"
  9812. _loading.appendChild(_lchild)
  9813. var _box = $$('div', {
  9814. "style": {
  9815. "position": "relative",
  9816. "width": "100%",
  9817. "height": "100%",
  9818. },
  9819. })
  9820. _box.appendChild(_loading)
  9821. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9822. switch (str) {
  9823. case "whiteboard":
  9824. aTool = 1;
  9825. _iframe = $$("iframe", {
  9826. "frameborder": "no",
  9827. "border": "0",
  9828. "scrolling ": "no",
  9829. "style": {
  9830. "cssText": "border:0;width:100%;height:100%"
  9831. },
  9832. "src": "https://beta.iwb.cocorobo.cn/"
  9833. })
  9834. _box.appendChild(_iframe);
  9835. _box.appendChild(_jie);
  9836. _formdiv = new U.UF.UI.form(
  9837. "电子白板",
  9838. _box, {
  9839. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9840. "style": {
  9841. "width": "90%",
  9842. "height": "90%",
  9843. "overflow": 'hidden'
  9844. },
  9845. "onresize": function () { }
  9846. }, {
  9847. closecallback: function () { }
  9848. }, {
  9849. "style": {
  9850. "height": "36px"
  9851. }
  9852. }).form; //创建窗体
  9853. _taskbar = {
  9854. "id": str + _formdiv.id,
  9855. "style": {
  9856. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9857. },
  9858. "name": "电子白板",
  9859. "forms": _formdiv,
  9860. "click": function () {
  9861. U.MD.D.I.openApplication(str, obj, info);
  9862. }
  9863. }
  9864. break;
  9865. case "mind":
  9866. aTool = 3;
  9867. _iframe = $$("iframe", {
  9868. "frameborder": "no",
  9869. "border": "0",
  9870. "scrolling ": "no",
  9871. "style": {
  9872. "cssText": "border:0;width:100%;height:100%"
  9873. },
  9874. "src": "/kityminder-editor/dist/index.html"
  9875. });
  9876. _box.appendChild(_iframe);
  9877. _box.appendChild(_jie);
  9878. _formdiv = new U.UF.UI.form(
  9879. "思维导图",
  9880. _box, { //"/jsmind/example/demo.html"
  9881. "id": "minds_Yu" + cid + stage + task + tool,
  9882. "style": {
  9883. "width": "90%",
  9884. "height": "90%",
  9885. "overflow": 'hidden'
  9886. },
  9887. "onresize": function () { }
  9888. }, {
  9889. closecallback: function () { }
  9890. }, {
  9891. "style": {
  9892. "height": "36px"
  9893. }
  9894. }).form; //创建窗体
  9895. _taskbar = {
  9896. "id": str + _formdiv.id,
  9897. "style": {
  9898. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9899. },
  9900. "name": "思维导图",
  9901. "forms": _formdiv,
  9902. "click": function () {
  9903. U.MD.D.I.openApplication(str, obj, info);
  9904. }
  9905. }
  9906. break;
  9907. case "doc":
  9908. aTool = 6;
  9909. _iframe = $$("iframe", {
  9910. "frameborder": "no",
  9911. "border": "0",
  9912. "scrolling ": "no",
  9913. "style": {
  9914. "cssText": "border:0;width:100%;height:100%"
  9915. },
  9916. "src": "/Office/Word/WordEditArea.htm"
  9917. })
  9918. _box.appendChild(_iframe);
  9919. _box.appendChild(_jie);
  9920. _formdiv = new U.UF.UI.form(
  9921. "协同文档",
  9922. _box, {
  9923. "id": "docs_Yu" + cid + stage + task + tool,
  9924. "style": {
  9925. "width": "90%",
  9926. "height": "90%",
  9927. "overflow": 'hidden'
  9928. },
  9929. "onresize": function () { }
  9930. }, {
  9931. closecallback: function () { }
  9932. }, {
  9933. "style": {
  9934. "height": "36px"
  9935. }
  9936. }).form; //创建窗体
  9937. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9938. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9939. })
  9940. _taskbar = {
  9941. "id": str + _formdiv.id,
  9942. "style": {
  9943. "backgroundImage": "url(/img/icon/doc.png)"
  9944. },
  9945. "name": "协同文档",
  9946. "forms": _formdiv,
  9947. "click": function () {
  9948. U.MD.D.I.openApplication(str, obj, info);
  9949. }
  9950. }
  9951. break;
  9952. case "CocoPi":
  9953. aTool = 57;
  9954. _iframe = $$("iframe", {
  9955. "allowpaymentrequest": "allowpaymentrequest",
  9956. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9957. "webkitallowfullscreen": "",
  9958. "mozallowfullscreen": "",
  9959. "frameborder": "no",
  9960. "border": "0",
  9961. "scrolling ": "no",
  9962. "style": {
  9963. "cssText": "border:0;width:100%;height:100%"
  9964. },
  9965. "src": "https://pi.cocorobo.cn/"
  9966. })
  9967. _box.appendChild(_iframe);
  9968. _box.appendChild(_jie);
  9969. _formdiv = new U.UF.UI.form(
  9970. "CocoPi",
  9971. _box, {
  9972. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9973. "style": {
  9974. "width": "90%",
  9975. "height": "90%",
  9976. "overflow": 'hidden'
  9977. },
  9978. "onresize": function () { }
  9979. }, {
  9980. closecallback: function () { }
  9981. }, {
  9982. "style": {
  9983. "height": "36px"
  9984. }
  9985. }).form; //创建窗体
  9986. _taskbar = {
  9987. "id": str + _formdiv.id,
  9988. "style": {
  9989. "backgroundImage": "url(/img/icon/cocopi.png)"
  9990. },
  9991. "name": "CocoPi",
  9992. "forms": _formdiv,
  9993. "click": function () {
  9994. U.MD.D.I.openApplication(str, obj, info);
  9995. }
  9996. }
  9997. break;
  9998. }
  9999. if (_iframe) {
  10000. if (str == 'doc') {
  10001. _iframe = _formdiv.querySelector('iframe')
  10002. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10003. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10004. })
  10005. if (onloadListener) {
  10006. _iframe.contentDocument.location.reload()
  10007. } else {
  10008. _iframe.contentDocument.location.reload()
  10009. }
  10010. } else if (str == 'mind') {
  10011. _iframe = _formdiv.querySelector('iframe')
  10012. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10013. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10014. })
  10015. if (onloadListener) {
  10016. _iframe.contentDocument.location.reload()
  10017. } else {
  10018. _iframe.contentDocument.location.reload()
  10019. }
  10020. } else if (str == 'whiteboard') {
  10021. _iframe = _formdiv.querySelector('iframe')
  10022. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10023. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10024. })
  10025. // if (onloadListener) {
  10026. // try {
  10027. // _iframe.src += "?cocorobo="+new Date().getTime()
  10028. // _iframe.contentWindow.document.location.reload()
  10029. // } catch (error) {
  10030. // }
  10031. // } else {
  10032. // _iframe.contentDocument.location.reload()
  10033. // }
  10034. } else if (str == 'CocoPi') {
  10035. _iframe = _formdiv.querySelector('iframe')
  10036. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10037. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10038. })
  10039. if (onloadListener) {
  10040. _iframe.contentDocument.location.reload()
  10041. } else {
  10042. _iframe.contentDocument.location.reload()
  10043. }
  10044. } else {
  10045. _iframe.onload = () => { };
  10046. }
  10047. _jie.onclick = async () => {
  10048. let text = ''
  10049. let type = '2'
  10050. if (aTool == 1) {
  10051. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10052. type = '3'
  10053. } else if (aTool == 6) {
  10054. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10055. type = '1'
  10056. } else if (aTool == 3) {
  10057. text = await U.MD.D.I.getEditorContent(_iframe);
  10058. type = '2'
  10059. } else if (aTool == 57) {
  10060. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10061. type = '4'
  10062. }
  10063. _loading.style.display = 'flex'
  10064. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10065. }
  10066. }
  10067. //U.MD.D.I.openClick(str);
  10068. //如果有任务栏信息
  10069. // if (_taskbar) {
  10070. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10071. // }
  10072. }
  10073. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10074. var xmlhttp;
  10075. var Mac, Sn, DeviceId
  10076. if (window.XMLHttpRequest) {
  10077. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10078. xmlhttp = new XMLHttpRequest();
  10079. } else {
  10080. // IE6, IE5 浏览器执行代码
  10081. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10082. }
  10083. xmlhttp.onreadystatechange = function () {
  10084. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10085. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10086. // resolve(res.value[0][0].text);
  10087. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10088. }
  10089. }
  10090. }
  10091. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10092. xmlhttp.send();
  10093. }
  10094. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10095. var xmlhttp;
  10096. var Mac, Sn, DeviceId
  10097. if (window.XMLHttpRequest) {
  10098. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10099. xmlhttp = new XMLHttpRequest();
  10100. } else {
  10101. // IE6, IE5 浏览器执行代码
  10102. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10103. }
  10104. xmlhttp.onreadystatechange = function () {
  10105. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10106. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10107. // resolve(res.value[0][0].text);
  10108. if (type == '2') {
  10109. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10110. } else if (type == '3') {
  10111. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10112. } else if (type == '4') {
  10113. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10114. }
  10115. } else {
  10116. if (type == '2') {
  10117. iframe.contentWindow.editor.minder.importData('json', '')
  10118. } else if (type == '3') {
  10119. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10120. } else if (type == '4') {
  10121. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10122. }
  10123. }
  10124. }
  10125. }
  10126. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10127. xmlhttp.send();
  10128. }
  10129. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10130. var xmlhttp;
  10131. var Mac, Sn, DeviceId
  10132. if (window.XMLHttpRequest) {
  10133. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10134. xmlhttp = new XMLHttpRequest();
  10135. } else {
  10136. // IE6, IE5 浏览器执行代码
  10137. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10138. }
  10139. xmlhttp.onreadystatechange = function () {
  10140. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10141. if (xmlhttp.response) {
  10142. // resolve(res.value[0][0].text);
  10143. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10144. // $(fileInput).val('');
  10145. // });
  10146. span.innerHTML = '上传成功'
  10147. setTimeout(() => {
  10148. loading.style.display = 'none'
  10149. }, 1000);
  10150. }
  10151. }
  10152. }
  10153. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10154. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10155. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10156. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10157. // 设置请求头,表示请求体的编码格式
  10158. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10159. // 设置请求体,使用url-encoded格式的数据
  10160. }
  10161. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10162. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10163. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10164. _userinfo = US.userInfo, //登录用户信息
  10165. _userid = US.userInfo.userid //登录用户id
  10166. let _iframe;
  10167. let _cid = cid,
  10168. _stage = stage,
  10169. _task = task,
  10170. _tool = tool;
  10171. var _jie = $$("div", {
  10172. "style": {
  10173. "position": "absolute",
  10174. "bottom": "50px",
  10175. "right": "50px",
  10176. "zIndex": "9999",
  10177. "backgroundColor": "#2268bc",
  10178. "color": "#fff",
  10179. "padding": "12px 20px",
  10180. "cursor": "pointer",
  10181. "borderRadius": "4px",
  10182. },
  10183. "innerHTML": "提交作业"
  10184. })
  10185. let aTool = ''
  10186. let _loading = document.createElement('div')
  10187. _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;"
  10188. // _loading.id = "";
  10189. let _lchild = document.createElement('div')
  10190. let _limg = document.createElement('img')
  10191. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10192. _limg.style = "width: 26px;margin-right: 10px;"
  10193. _lchild.appendChild(_limg)
  10194. let _lspan = document.createElement('span')
  10195. _lspan.innerHTML = "上传中..."
  10196. _lchild.appendChild(_lspan)
  10197. _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%);"
  10198. _loading.appendChild(_lchild)
  10199. var _box = $$('div', {
  10200. "style": {
  10201. "position": "relative",
  10202. "width": "100%",
  10203. "height": "100%",
  10204. },
  10205. })
  10206. _box.appendChild(_loading)
  10207. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10208. switch (str) {
  10209. case "CocoPi":
  10210. aTool = 57;
  10211. _iframe = $$("iframe", {
  10212. "allowpaymentrequest": "allowpaymentrequest",
  10213. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10214. "webkitallowfullscreen": "",
  10215. "mozallowfullscreen": "",
  10216. "frameborder": "no",
  10217. "border": "0",
  10218. "scrolling ": "no",
  10219. "style": {
  10220. "cssText": "border:0;width:100%;height:100%"
  10221. },
  10222. "src": "https://pi.cocorobo.cn/"
  10223. })
  10224. _box.appendChild(_iframe);
  10225. _box.appendChild(_jie);
  10226. _formdiv = new U.UF.UI.form(
  10227. "CocoPi",
  10228. _box, {
  10229. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10230. "style": {
  10231. "width": "90%",
  10232. "height": "90%",
  10233. "overflow": 'hidden'
  10234. },
  10235. "onresize": function () { }
  10236. }, {
  10237. closecallback: function () { }
  10238. }, {
  10239. "style": {
  10240. "height": "36px"
  10241. }
  10242. }).form; //创建窗体
  10243. _taskbar = {
  10244. "id": str + _formdiv.id,
  10245. "style": {
  10246. "backgroundImage": "url(/img/icon/cocopi.png)"
  10247. },
  10248. "name": "CocoPi",
  10249. "forms": _formdiv,
  10250. "click": function () {
  10251. U.MD.D.I.openApplication(str, obj, info);
  10252. }
  10253. }
  10254. break;
  10255. }
  10256. if (_iframe) {
  10257. if (str == 'CocoPi') {
  10258. _iframe = _formdiv.querySelector('iframe')
  10259. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10260. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10261. })
  10262. if (onloadListener) {
  10263. _iframe.contentDocument.location.reload()
  10264. } else {
  10265. _iframe.contentDocument.location.reload()
  10266. }
  10267. }
  10268. _jie.onclick = async () => {
  10269. let text = ''
  10270. if (aTool == 57) {
  10271. text = _iframe.contentWindow.getLoadXmlStr()
  10272. }
  10273. _loading.style.display = 'flex'
  10274. console.log(_loading);
  10275. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10276. _loading.style.display = 'none'
  10277. let _div = document.createElement('div')
  10278. _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;"
  10279. let _inner = document.createElement('div')
  10280. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10281. _inner.innerHTML = "上传成功"
  10282. _div.appendChild(_inner)
  10283. _iframe.contentWindow.window.document.body.appendChild(_div)
  10284. _div.onclick = () => {
  10285. _iframe.contentWindow.window.document.body.removeChild(_div)
  10286. }
  10287. setTimeout(() => {
  10288. _iframe.contentWindow.window.document.body.removeChild(_div)
  10289. }, 1000);
  10290. }, [], { "type": "POST", "withCredentials": true });
  10291. }
  10292. }
  10293. }
  10294. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10295. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10296. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10297. _userid = student.userid, //登录用户id
  10298. _username = student.student //用户名字
  10299. let _iframe;
  10300. let _cid = cid,
  10301. _stage = stage,
  10302. _task = task,
  10303. _tool = tool;
  10304. var _jie = $$("div", {
  10305. "style": {
  10306. "position": "absolute",
  10307. "bottom": "50px",
  10308. "right": "50px",
  10309. "zIndex": "9999",
  10310. "backgroundColor": "#2268bc",
  10311. "color": "#fff",
  10312. "padding": "12px 20px",
  10313. "cursor": "pointer",
  10314. "borderRadius": "4px",
  10315. },
  10316. "innerHTML": "提交作业"
  10317. })
  10318. let aTool = ''
  10319. let _loading = document.createElement('div')
  10320. _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;"
  10321. // _loading.id = "";
  10322. let _lchild = document.createElement('div')
  10323. let _limg = document.createElement('img')
  10324. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10325. _limg.style = "width: 26px;margin-right: 10px;"
  10326. _lchild.appendChild(_limg)
  10327. let _lspan = document.createElement('span')
  10328. _lspan.innerHTML = "上传中..."
  10329. _lchild.appendChild(_lspan)
  10330. _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%);"
  10331. _loading.appendChild(_lchild)
  10332. var _box = $$('div', {
  10333. "style": {
  10334. "position": "relative",
  10335. "width": "100%",
  10336. "height": "100%",
  10337. },
  10338. })
  10339. _box.appendChild(_loading)
  10340. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10341. switch (str) {
  10342. case "CocoPi":
  10343. aTool = 57;
  10344. _iframe = $$("iframe", {
  10345. "allowpaymentrequest": "allowpaymentrequest",
  10346. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10347. "webkitallowfullscreen": "",
  10348. "mozallowfullscreen": "",
  10349. "frameborder": "no",
  10350. "border": "0",
  10351. "scrolling ": "no",
  10352. "style": {
  10353. "cssText": "border:0;width:100%;height:100%"
  10354. },
  10355. "src": "https://pi.cocorobo.cn/"
  10356. })
  10357. _box.appendChild(_iframe);
  10358. _box.appendChild(_jie);
  10359. _formdiv = new U.UF.UI.form(
  10360. "CocoPi-" + _username,
  10361. _box, {
  10362. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10363. "style": {
  10364. "width": "90%",
  10365. "height": "90%",
  10366. "overflow": 'hidden'
  10367. },
  10368. "onresize": function () { }
  10369. }, {
  10370. closecallback: function () { }
  10371. }, {
  10372. "style": {
  10373. "height": "36px"
  10374. }
  10375. }).form; //创建窗体
  10376. _taskbar = {
  10377. "id": str + _formdiv.id,
  10378. "style": {
  10379. "backgroundImage": "url(/img/icon/cocopi.png)"
  10380. },
  10381. "name": "CocoPi",
  10382. "forms": _formdiv,
  10383. "click": function () {
  10384. U.MD.D.I.openApplication(str, obj, info);
  10385. }
  10386. }
  10387. break;
  10388. }
  10389. if (_iframe) {
  10390. if (str == 'CocoPi') {
  10391. _iframe = _formdiv.querySelector('iframe')
  10392. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10393. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10394. })
  10395. if (onloadListener) {
  10396. _iframe.contentDocument.location.reload()
  10397. } else {
  10398. _iframe.contentDocument.location.reload()
  10399. }
  10400. }
  10401. _jie.onclick = async () => {
  10402. let text = ''
  10403. if (aTool == 57) {
  10404. text = _iframe.contentWindow.getLoadXmlStr()
  10405. }
  10406. _loading.style.display = 'flex'
  10407. console.log(_loading);
  10408. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10409. _loading.style.display = 'none'
  10410. let _div = document.createElement('div')
  10411. _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;"
  10412. let _inner = document.createElement('div')
  10413. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10414. _inner.innerHTML = "上传成功"
  10415. _div.appendChild(_inner)
  10416. _iframe.contentWindow.window.document.body.appendChild(_div)
  10417. _div.onclick = () => {
  10418. _iframe.contentWindow.window.document.body.removeChild(_div)
  10419. }
  10420. setTimeout(() => {
  10421. _iframe.contentWindow.window.document.body.removeChild(_div)
  10422. }, 1000);
  10423. }, [], { "type": "POST", "withCredentials": true });
  10424. }
  10425. }
  10426. }
  10427. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10428. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10429. if (res.value[0].length > 0) {
  10430. if (atool == 57) {
  10431. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10432. }
  10433. } else {
  10434. if (atool == 57) {
  10435. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10436. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10437. }
  10438. }
  10439. }, [], { "type": "POST", "withCredentials": true });
  10440. }