DeskTop.js 735 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  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": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1573. ];
  1574. //CUHK_EDU
  1575. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1576. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1579. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1583. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1586. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1587. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1588. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1589. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1590. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1591. ];
  1592. //CUHK_EDU
  1593. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //010503
  1600. U.MD.D.I.x010503TeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1604. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1605. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1611. ];
  1612. //010503
  1613. U.MD.D.I.x010503StudentDeskIcon = [
  1614. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. ];
  1619. //SPROUT Lab
  1620. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1621. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1622. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1628. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1631. ];
  1632. //SPROUT Lab
  1633. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1634. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. ];
  1639. //010204
  1640. U.MD.D.I.x010204TeacherDeskIcon = [
  1641. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. ];
  1644. //010204
  1645. U.MD.D.I.x010204StudentDeskIcon = [
  1646. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //trail
  1652. U.MD.D.I.trailTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1656. ];
  1657. //trail
  1658. U.MD.D.I.trailStudentDeskIcon = [
  1659. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1664. ];
  1665. //trial
  1666. U.MD.D.I.trialTeacherDeskIcon = [
  1667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1673. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1674. ];
  1675. //trial
  1676. U.MD.D.I.trialStudentDeskIcon = [
  1677. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1682. ];
  1683. //010504
  1684. U.MD.D.I.x010504TeacherDeskIcon = [
  1685. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1686. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //010504
  1698. U.MD.D.I.x010504StudentDeskIcon = [
  1699. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. ];
  1704. //010505
  1705. U.MD.D.I.x010505TeacherDeskIcon = [
  1706. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1707. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1717. ];
  1718. //010505
  1719. U.MD.D.I.x010505StudentDeskIcon = [
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1732. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1733. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1734. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1735. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1736. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1737. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1738. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1739. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1740. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. ];
  1753. //SCNUET
  1754. U.MD.D.I.SCNUETAdminDeskIcon = [
  1755. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1756. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1762. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1766. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1768. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1770. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1772. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1773. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1774. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1775. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1776. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1778. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1779. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1780. ];
  1781. //SCNUET
  1782. U.MD.D.I.SCNUETStudentDeskIcon = [
  1783. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. ];
  1788. //x020201
  1789. U.MD.D.I.x020201TeacherDeskIcon = [
  1790. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1791. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1792. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1795. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1796. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1801. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1804. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1805. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1806. ];
  1807. //x020201
  1808. U.MD.D.I.x020201AdminDeskIcon = [
  1809. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1810. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1811. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1812. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1813. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1814. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1815. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1816. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1820. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1821. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1824. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1825. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1826. ];
  1827. //020201
  1828. U.MD.D.I.x020201StudentDeskIcon = [
  1829. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1830. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1831. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1832. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1833. ];
  1834. //010611
  1835. U.MD.D.I.x010611TeacherDeskIcon = [
  1836. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1837. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1838. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1839. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1840. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1843. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. ];
  1846. //010611
  1847. U.MD.D.I.x010611StudentDeskIcon = [
  1848. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. ];
  1853. //010612
  1854. U.MD.D.I.x010612TeacherDeskIcon = [
  1855. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1856. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1857. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1858. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1859. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1865. ];
  1866. //010612
  1867. U.MD.D.I.x010612StudentDeskIcon = [
  1868. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1869. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1870. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1872. ];
  1873. //tianyuan
  1874. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1881. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1886. ];
  1887. //010611
  1888. U.MD.D.I.tianyuanStudentDeskIcon = [
  1889. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1890. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1891. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1893. ];
  1894. //320101
  1895. U.MD.D.I.x320101TeacherDeskIcon = [
  1896. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1897. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1898. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1899. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1900. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1901. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1902. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1903. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1904. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1905. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1906. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1907. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1908. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1909. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1910. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1911. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1912. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1913. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1914. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1915. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1916. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1917. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1918. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1919. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1920. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1921. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1922. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1923. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1924. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1925. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1926. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1927. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1928. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1929. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1930. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1931. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1932. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1934. ];
  1935. //320101
  1936. U.MD.D.I.x320101StudentDeskIcon = [
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1941. ];
  1942. //szsy
  1943. U.MD.D.I.szsyTeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1948. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1949. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1954. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1955. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. ];
  1964. //szsy
  1965. U.MD.D.I.szsyStudentDeskIcon = [
  1966. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1967. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1968. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1970. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. ];
  1972. //010404
  1973. U.MD.D.I.x010404TeacherDeskIcon = [
  1974. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1975. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1976. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1977. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1978. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1980. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1982. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1983. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1984. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1985. ];
  1986. //010404
  1987. U.MD.D.I.x010404StudentDeskIcon = [
  1988. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1990. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. ];
  1993. //cocorobo demo
  1994. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1995. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1996. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1999. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2000. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2001. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2002. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2006. ];
  2007. //cocorobo demo
  2008. U.MD.D.I.demoCocoStudentDeskIcon = [
  2009. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2011. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2012. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2013. ];
  2014. //MOAI
  2015. U.MD.D.I.MOAITeacherDeskIcon = [
  2016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2020. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2022. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2025. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2026. ];
  2027. //MOAI 学生端
  2028. U.MD.D.I.MOAIStudentDeskIcon = [
  2029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2031. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2032. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2033. ];
  2034. //PREPAI
  2035. U.MD.D.I.PREPAITeacherDeskIcon = [
  2036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2037. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2038. ];
  2039. //PREPAI 学生端
  2040. U.MD.D.I.PREPAIStudentDeskIcon = [
  2041. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2042. ];
  2043. //#region 桌面初始化a
  2044. /**
  2045. * 初始化桌面的起始函数
  2046. *
  2047. */
  2048. U.MD.D.I.init = function () {
  2049. if ($("#U_MD_D_K")[0]) {
  2050. //初始化桌面图标
  2051. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2052. // var clickUrl = ':12588/requestIp.php';
  2053. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2054. // U.MD.D.I.Ip = data;
  2055. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2056. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2057. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2058. // })
  2059. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2060. // })
  2061. }
  2062. }
  2063. /**
  2064. * 模式切换
  2065. *
  2066. */
  2067. U.MD.D.I.ModeCheck = function (type) {
  2068. if (US.Config.type == type) {
  2069. return
  2070. }
  2071. US.Config.type = type
  2072. $('.U_PBL_Check .active')[0].className = ''
  2073. if (type == 1) {
  2074. $('.U_PBL_Check div')[0].className = 'active'
  2075. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2076. } else {
  2077. $('.U_PBL_Check div')[1].className = 'active'
  2078. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2079. }
  2080. //初始化桌面图标
  2081. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2082. if (type == 2) {
  2083. U.MD.D.I.openApplication("project")
  2084. }
  2085. }
  2086. /**
  2087. * 隐藏任务栏
  2088. *
  2089. * @param {element} 桌面元素
  2090. */
  2091. U.MD.D.I.hiddenTaskbar = function (el) {
  2092. //任务栏位置变小
  2093. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2094. //桌面的位置变大
  2095. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2096. }
  2097. /**
  2098. * 隐藏任务栏
  2099. *
  2100. * @param {element} 桌面元素
  2101. */
  2102. U.MD.D.I.hiddenTaskbarout = function (el) {
  2103. //任务栏位置变小
  2104. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2105. //任务栏位置变化
  2106. U.selectEl(el).css({ "bottom": "-60px" });
  2107. //桌面的位置变大
  2108. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2109. }
  2110. }
  2111. /**
  2112. * 初始化打印桌面图标
  2113. *
  2114. * @param {element} 桌面元素
  2115. */
  2116. U.MD.D.I.initDesktopIcons = function (el, type) {
  2117. var i, //用于循环
  2118. _content, //桌面图标元素
  2119. _iconcontent, //桌面图标元素
  2120. _frag = $$("frag"), //定义一个碎片元素
  2121. _type = US.userInfo.type,
  2122. _org = US.userInfo.org,
  2123. _oid = US.userInfo.organizeid,
  2124. _role = US.userInfo.role,
  2125. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2126. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2127. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2128. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2129. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2130. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2131. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2132. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2133. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2134. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2135. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2136. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2137. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2138. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2139. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2140. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2141. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2142. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2143. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2144. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2145. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2146. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2147. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2148. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2149. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2150. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2151. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2152. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2153. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2154. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2155. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2156. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2157. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2158. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2159. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2160. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2161. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2162. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2163. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2164. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2165. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2166. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2167. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2168. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2169. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2170. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2171. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2172. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2173. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2174. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2175. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2176. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2177. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2178. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2179. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2180. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2181. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2182. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2183. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2184. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2185. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2186. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2187. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2188. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2189. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2190. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2191. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2192. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2193. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2194. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2195. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2196. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2197. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2198. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2199. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2200. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2201. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2202. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2203. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2204. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2205. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2206. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2207. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2208. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2209. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2210. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2211. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2212. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2213. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2214. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2215. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2216. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2217. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2218. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2219. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2220. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2221. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2222. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2223. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2224. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2225. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2226. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2227. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2228. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2229. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2230. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2231. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2232. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2233. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2234. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2235. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2236. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2237. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2238. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2239. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2240. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2241. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2242. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2243. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2244. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2245. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2246. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2247. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2248. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2249. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2250. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2251. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2252. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2253. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2254. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2255. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //szsc
  2256. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //szsc
  2257. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2258. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2259. 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', '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', 'bc239322-ffb2-11ef-b508-005056924926', '91796dfb-8791-11ef-9b30-005056b86db5', '86fa8cd7-00c2-11f0-b508-005056924926', '8406b214-085f-11f0-b508-005056924926', '65ad80f0-16bb-11f0-a66a-005056924926', '9a8076a2-469a-11f0-b60f-005056924926'];
  2260. 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', '7cc601a0-fafc-4116-a805-0adbacf7a38d', '62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926', "fa20a652-5f2a-11f0-bf32-005056924926", "eed08ac6-7269-11f0-9c7b-005056924926"];
  2261. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2262. //清楚桌面图标
  2263. el.innerHTML = "";
  2264. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2265. _teacherDesktopIconInfo.push(
  2266. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2267. { "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)" } },
  2268. )
  2269. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2270. }
  2271. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2272. _teacherDesktopIconInfo.push(
  2273. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2274. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2275. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2277. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2278. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2279. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2281. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2282. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2283. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2285. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2288. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2289. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2290. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2291. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2292. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2293. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2294. )
  2295. }
  2296. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2297. _teacherDesktopIconInfo.push(
  2298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2299. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2300. )
  2301. }
  2302. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2303. _nsfxTeacherDeskIconInfo.push(
  2304. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2305. )
  2306. }
  2307. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2308. // _teacherDesktopIconInfo.push(
  2309. // )
  2310. // }
  2311. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2312. _teacherDesktopIconInfo.push(
  2313. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2314. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2315. )
  2316. }
  2317. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2318. _teacherDesktopIconInfo.push(
  2319. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2321. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2322. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2323. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2324. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2325. )
  2326. _studentDesktopIconInfo.push(
  2327. )
  2328. }
  2329. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2330. _teacherDesktopIconInfo.push(
  2331. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2332. )
  2333. _studentDesktopIconInfo.push(
  2334. )
  2335. }
  2336. //010606 组织
  2337. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2338. _teacherDesktopIconInfo.push(
  2339. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2340. )
  2341. _studentDesktopIconInfo.push(
  2342. )
  2343. }
  2344. //麒麟二中 和 民新小学
  2345. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2346. _teacherDesktopIconInfo.push(
  2347. )
  2348. }
  2349. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2350. _teacherDesktopIconInfo.push(
  2351. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2352. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2353. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2354. )
  2355. }
  2356. if (_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1') {
  2357. _hkTeacherDeskIconInfo.push(
  2358. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2359. )
  2360. }
  2361. //北师大附中(010601)
  2362. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2363. // _teacherDesktopIconInfo.push(
  2364. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2365. // )
  2366. // _studentDesktopIconInfo.push(
  2367. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2368. // )
  2369. // }
  2370. //樂善堂余近卿中學
  2371. if (_oid == "8d074a02-6057-11ef-b873-005056b86db5") {
  2372. _teacherDesktopIconInfo.push(
  2373. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2374. )
  2375. }
  2376. // Education Artificial Intelligence
  2377. if (_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0") {
  2378. _teacherDesktopIconInfo.push(
  2379. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2380. )
  2381. }
  2382. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2383. _teacherDesktopIconInfo.push(
  2384. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2385. )
  2386. }
  2387. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2388. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2389. _teacherDesktopIconInfo.push(
  2390. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2391. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2392. )
  2393. }
  2394. //麒麟二中
  2395. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2396. _studentDesktopIconInfo.push(
  2397. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2398. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2399. )
  2400. }
  2401. //万科双语
  2402. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2403. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2404. if (el.Name == '项目管理') {
  2405. el.Name = 'PBL项目'
  2406. }
  2407. return el
  2408. })
  2409. _studentDesktopIconInfo3.push(
  2410. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2411. )
  2412. }
  2413. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2414. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2415. return el.Name != '魔盒识字' && el.Name != '24点'
  2416. })
  2417. }
  2418. 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) {
  2419. _studentDesktopIconInfo.push(
  2420. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2421. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2422. )
  2423. }
  2424. //循环创建桌面图标
  2425. if (type == 1) {
  2426. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2427. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2428. _content = $$("div", {
  2429. className: "U_MD_D_KO",
  2430. "onmousedown": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_studentDesktopIconInfo[i]]),
  2434. "onclick": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_studentDesktopIconInfo[i]])
  2438. }, _frag); //
  2439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2442. }
  2443. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2444. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2445. _content = $$("div", {
  2446. className: "U_MD_D_KO",
  2447. "onmousedown": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2451. "onclick": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_hkZJLSStudentDeskIconInfo[i]])
  2455. }, _frag); //
  2456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2459. } //
  2460. } else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2461. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_ytyStudentDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_ytyStudentDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2476. } //
  2477. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2478. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_jccssylStudentDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_jccssylStudentDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2495. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2496. _content = $$("div", {
  2497. className: "U_MD_D_KO",
  2498. "onmousedown": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_scnuaiStudentDeskIconInfo[i]]),
  2502. "onclick": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_scnuaiStudentDeskIconInfo[i]])
  2506. }, _frag); //
  2507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2510. }
  2511. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2512. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_caleStudentDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_caleStudentDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2529. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2530. _content = $$("div", {
  2531. className: "U_MD_D_KO",
  2532. "onmousedown": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_thuioeStudentDeskIconInfo[i]]),
  2536. "onclick": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_thuioeStudentDeskIconInfo[i]])
  2540. }, _frag); //
  2541. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2542. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2543. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2544. }
  2545. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2546. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_tpcStudentDeskIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_tpcStudentDeskIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2561. } //
  2562. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2563. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_chjyjStudentDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_chjyjStudentDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2580. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2581. _content = $$("div", {
  2582. className: "U_MD_D_KO",
  2583. "onmousedown": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_szjkyStudentDeskIconInfo[i]]),
  2587. "onclick": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_szjkyStudentDeskIconInfo[i]])
  2591. }, _frag); //
  2592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2595. }
  2596. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2597. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_x020201StudentDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_x020201StudentDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2614. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2615. _content = $$("div", {
  2616. className: "U_MD_D_KO",
  2617. "onmousedown": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_SCNUETStudentDeskIconInfo[i]]),
  2621. "onclick": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_SCNUETStudentDeskIconInfo[i]])
  2625. }, _frag); //
  2626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2629. }
  2630. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2631. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2632. _content = $$("div", {
  2633. className: "U_MD_D_KO",
  2634. "onmousedown": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_dseiStudentDeskIconInfo[i]]),
  2638. "onclick": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_dseiStudentDeskIconInfo[i]])
  2642. }, _frag); //
  2643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2646. }
  2647. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2648. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2665. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_nsfxStudentDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_nsfxStudentDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2682. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2683. _content = $$("div", {
  2684. className: "U_MD_D_KO",
  2685. "onmousedown": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_stiaStudentDeskIconInfo[i]]),
  2689. "onclick": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_stiaStudentDeskIconInfo[i]])
  2693. }, _frag); //
  2694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2697. }
  2698. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2699. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2700. _content = $$("div", {
  2701. className: "U_MD_D_KO",
  2702. "onmousedown": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_szdjgStudentDeskIconInfo[i]]),
  2706. "onclick": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_szdjgStudentDeskIconInfo[i]])
  2710. }, _frag); //
  2711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2714. }
  2715. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2716. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_x010607StudentDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_x010607StudentDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2733. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2734. _content = $$("div", {
  2735. className: "U_MD_D_KO",
  2736. "onmousedown": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_xhlyStudentDeskIconInfo[i]]),
  2740. "onclick": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_xhlyStudentDeskIconInfo[i]])
  2744. }, _frag); //
  2745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2748. }
  2749. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2750. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2751. _content = $$("div", {
  2752. className: "U_MD_D_KO",
  2753. "onmousedown": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2757. "onclick": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2761. }, _frag); //
  2762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2765. }
  2766. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2767. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2768. _content = $$("div", {
  2769. className: "U_MD_D_KO",
  2770. "onmousedown": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_x010503StudentDeskIconInfo[i]]),
  2774. "onclick": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_x010503StudentDeskIconInfo[i]])
  2778. }, _frag); //
  2779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2782. }
  2783. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2784. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_x010504StudentDeskIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_x010504StudentDeskIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2801. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_x010505StudentDeskIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_x010505StudentDeskIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2818. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2819. _content = $$("div", {
  2820. className: "U_MD_D_KO",
  2821. "onmousedown": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_x010404StudentDeskIconInfo[i]]),
  2825. "onclick": U.UF.C.closure(function (obj) {
  2826. //防止拖动图标即打开了桌面应用
  2827. U.MD.D.click(this, obj);
  2828. }, [_x010404StudentDeskIconInfo[i]])
  2829. }, _frag); //
  2830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2833. }
  2834. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2835. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_x010204StudentDeskIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_x010204StudentDeskIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2852. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_x320101StudentDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_x320101StudentDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2867. }
  2868. } else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2869. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2870. _content = $$("div", {
  2871. className: "U_MD_D_KO",
  2872. "onmousedown": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_MOAIStudentDeskIcon[i]]),
  2876. "onclick": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_MOAIStudentDeskIcon[i]])
  2880. }, _frag); //
  2881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2884. }
  2885. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2886. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2887. _content = $$("div", {
  2888. className: "U_MD_D_KO",
  2889. "onmousedown": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_trailStudentDeskIconInfo[i]]),
  2893. "onclick": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_trailStudentDeskIconInfo[i]])
  2897. }, _frag); //
  2898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2901. }
  2902. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2903. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_trialStudentDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_trialStudentDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2920. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2937. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2938. _content = $$("div", {
  2939. className: "U_MD_D_KO",
  2940. "onmousedown": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_szsyStudentDeskIconInfo[i]]),
  2944. "onclick": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_szsyStudentDeskIconInfo[i]])
  2948. }, _frag); //
  2949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2952. }
  2953. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  2954. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_PREPAIStudentDeskIcon[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_PREPAIStudentDeskIcon[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  2969. }
  2970. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2971. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_demoCocoStudentDeskIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_demoCocoStudentDeskIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2988. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2989. _content = $$("div", {
  2990. className: "U_MD_D_KO",
  2991. "onmousedown": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_x010608StudentDeskIconInfo[i]]),
  2995. "onclick": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_x010608StudentDeskIconInfo[i]])
  2999. }, _frag); //
  3000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3003. }
  3004. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3005. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3006. _content = $$("div", {
  3007. className: "U_MD_D_KO",
  3008. "onmousedown": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_x010611StudentDeskIconInfo[i]]),
  3012. "onclick": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_x010611StudentDeskIconInfo[i]])
  3016. }, _frag); //
  3017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3020. }
  3021. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3022. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3023. _content = $$("div", {
  3024. className: "U_MD_D_KO",
  3025. "onmousedown": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_x010612StudentDeskIconInfo[i]]),
  3029. "onclick": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_x010612StudentDeskIconInfo[i]])
  3033. }, _frag); //
  3034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3037. }
  3038. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3039. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3040. _content = $$("div", {
  3041. className: "U_MD_D_KO",
  3042. "onmousedown": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_tianyuantudentDeskIconInfo[i]]),
  3046. "onclick": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_tianyuantudentDeskIconInfo[i]])
  3050. }, _frag); //
  3051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3054. }
  3055. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3056. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3057. _content = $$("div", {
  3058. className: "U_MD_D_KO",
  3059. "onmousedown": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_siesStudentDeskIconInfo[i]]),
  3063. "onclick": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_siesStudentDeskIconInfo[i]])
  3067. }, _frag); //
  3068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3071. }
  3072. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3073. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3074. _content = $$("div", {
  3075. className: "U_MD_D_KO",
  3076. "onmousedown": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_guzmsStudentDeskIconInfo[i]]),
  3080. "onclick": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_guzmsStudentDeskIconInfo[i]])
  3084. }, _frag); //
  3085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3088. }
  3089. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3090. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_hkStudentDeskIconInfo[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_hkStudentDeskIconInfo[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3105. }
  3106. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3107. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  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. }, [_tycyStudentDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_tycyStudentDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3124. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3125. _content = $$("div", {
  3126. className: "U_MD_D_KO",
  3127. "onmousedown": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_ckcpsStudentDeskIconInfo[i]]),
  3131. "onclick": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_ckcpsStudentDeskIconInfo[i]])
  3135. }, _frag); //
  3136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3139. }
  3140. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3141. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3142. _content = $$("div", {
  3143. className: "U_MD_D_KO",
  3144. "onmousedown": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_hkaceStudentDeskIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_hkaceStudentDeskIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3158. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_BSDNSstudentDesktopIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3175. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_cocobizStudentDeskIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_cocobizStudentDeskIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3192. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3193. _content = $$("div", {
  3194. className: "U_MD_D_KO",
  3195. "onmousedown": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3199. "onclick": U.UF.C.closure(function (obj) {
  3200. //防止拖动图标即打开了桌面应用
  3201. U.MD.D.click(this, obj);
  3202. }, [_xxzjkyStudentDeskIconInfo[i]])
  3203. }, _frag); //
  3204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3207. }
  3208. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3209. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3210. _content = $$("div", {
  3211. className: "U_MD_D_KO",
  3212. "onmousedown": U.UF.C.closure(function (obj) {
  3213. //防止拖动图标即打开了桌面应用
  3214. U.MD.D.click(this, obj);
  3215. }, [_studentDesktopIconInfo[i]]),
  3216. "onclick": U.UF.C.closure(function (obj) {
  3217. //防止拖动图标即打开了桌面应用
  3218. U.MD.D.click(this, obj);
  3219. }, [_studentDesktopIconInfo[i]])
  3220. }, _frag); //
  3221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3224. }
  3225. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3226. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_tcStudentDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_tcStudentDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3243. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3244. _content = $$("div", {
  3245. className: "U_MD_D_KO",
  3246. "onmousedown": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_szscStudentDeskIconInfo[i]]),
  3250. "onclick": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_szscStudentDeskIconInfo[i]])
  3254. }, _frag); //
  3255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3258. }
  3259. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3260. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3261. _content = $$("div", {
  3262. className: "U_MD_D_KO",
  3263. "onmousedown": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_studentDesktopIconInfo3[i]]),
  3267. "onclick": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_studentDesktopIconInfo3[i]])
  3271. }, _frag); //
  3272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3275. }
  3276. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3277. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_studentDesktopIconInfo2[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_studentDesktopIconInfo2[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3294. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3295. if (_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher') {
  3296. continue
  3297. }
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_wanketeacherDesktopIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_wanketeacherDesktopIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3312. }
  3313. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3314. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_wankeAdminDesktopIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_wankeAdminDesktopIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3329. }
  3330. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3331. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3332. if (_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3333. continue
  3334. }
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_scnuaiTeacherDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3349. }
  3350. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3351. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3352. if (_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher') {
  3353. continue
  3354. }
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_BSDNSteacherDesktopIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3369. }
  3370. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3371. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_scnuaiAdminDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_scnuaiAdminDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3388. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3389. if (_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_jccssylTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_jccssylTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. }
  3407. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3408. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3409. if (_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3410. continue
  3411. }
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_caleTeacherDeskIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_caleTeacherDeskIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3428. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_tpcOrganizerDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_tpcOrganizerDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3445. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3446. if (_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_tpcTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_tpcTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3465. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3466. if (_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher') {
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_teacherDesktopIconInfo2[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_teacherDesktopIconInfo2[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3485. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3486. if (_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_thuioeTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_thuioeTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3505. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3506. if (_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_lotechTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_lotechTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }//
  3524. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3525. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3526. if (_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3527. continue
  3528. }
  3529. _content = $$("div", {
  3530. className: "U_MD_D_KO",
  3531. "onmousedown": U.UF.C.closure(function (obj) {
  3532. //防止拖动图标即打开了桌面应用
  3533. U.MD.D.click(this, obj);
  3534. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3535. "onclick": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3539. }, _frag); //
  3540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3543. }
  3544. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3545. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3546. if (_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies') {
  3547. continue
  3548. }
  3549. _content = $$("div", {
  3550. className: "U_MD_D_KO",
  3551. "onmousedown": U.UF.C.closure(function (obj) {
  3552. //防止拖动图标即打开了桌面应用
  3553. U.MD.D.click(this, obj);
  3554. }, [_siesTeacherDeskIconInfo[i]]),
  3555. "onclick": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_siesTeacherDeskIconInfo[i]])
  3559. }, _frag); //
  3560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3563. }
  3564. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3565. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3566. if (_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3567. continue
  3568. }
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_guzmsTeacherDeskIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_guzmsTeacherDeskIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3583. }
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3585. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3586. if (_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_longhuaTeacherDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_longhuaTeacherDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3605. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3606. if (_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_ytyTeacherDeskIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_ytyTeacherDeskIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3625. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3626. if (_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_yunhaiTeacherDeskIconInfo[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3643. } //_hkStudentDeskIconInfo
  3644. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3645. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3646. if (_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3665. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3666. if (_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_ricohTeacherDeskIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_ricohTeacherDeskIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3685. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3686. if (_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3687. continue
  3688. }
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_hkTeacherDeskIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_hkTeacherDeskIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3705. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3706. if (_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_tycyTeacherDeskIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_tycyTeacherDeskIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3725. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3726. if (_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_ckcpsTeacherDeskIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3745. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3746. if (_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_hkaceTeacherDeskIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_hkaceTeacherDeskIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3765. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3766. if (_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3767. continue
  3768. }
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_cocobizTeacherDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_cocobizTeacherDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3785. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3786. if (_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3805. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_gdjgAdminDeskIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_gdjgAdminDeskIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3820. }
  3821. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3822. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3823. if (_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_gdjgTeacherDeskIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_gdjgTeacherDeskIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3842. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3843. if (_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3844. continue
  3845. }
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_szherTeacherDeskIconInfo[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_szherTeacherDeskIconInfo[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3862. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_heyuannAdminDeskIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖动图标即打开了桌面应用
  3871. U.MD.D.click(this, obj);
  3872. }, [_heyuannAdminDeskIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3879. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3880. if (_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_heyuanTeacherDeskIconInfo[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_heyuanTeacherDeskIconInfo[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3897. } //
  3898. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3899. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_dseiAdminDeskIconInfo[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_dseiAdminDeskIconInfo[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3916. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3917. if (_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_dseiTeacherDeskIconInfo[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_dseiTeacherDeskIconInfo[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3934. } //
  3935. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3936. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3937. _content = $$("div", {
  3938. className: "U_MD_D_KO",
  3939. "onmousedown": U.UF.C.closure(function (obj) {
  3940. //防止拖动图标即打开了桌面应用
  3941. U.MD.D.click(this, obj);
  3942. }, [_chjyjAdminDeskIconInfo[i]]),
  3943. "onclick": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_chjyjAdminDeskIconInfo[i]])
  3947. }, _frag); //
  3948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3951. }//
  3952. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3953. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3954. if (_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3955. continue
  3956. }
  3957. _content = $$("div", {
  3958. className: "U_MD_D_KO",
  3959. "onmousedown": U.UF.C.closure(function (obj) {
  3960. //防止拖动图标即打开了桌面应用
  3961. U.MD.D.click(this, obj);
  3962. }, [_chjyjTeacherDeskIconInfo[i]]),
  3963. "onclick": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_chjyjTeacherDeskIconInfo[i]])
  3967. }, _frag); //
  3968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3971. }
  3972. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3973. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3974. _content = $$("div", {
  3975. className: "U_MD_D_KO",
  3976. "onmousedown": U.UF.C.closure(function (obj) {
  3977. //防止拖动图标即打开了桌面应用
  3978. U.MD.D.click(this, obj);
  3979. }, [_szjkyAdminDeskIconInfo[i]]),
  3980. "onclick": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_szjkyAdminDeskIconInfo[i]])
  3984. }, _frag); //
  3985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3988. }//
  3989. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3990. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3991. if (_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3992. continue
  3993. }
  3994. _content = $$("div", {
  3995. className: "U_MD_D_KO",
  3996. "onmousedown": U.UF.C.closure(function (obj) {
  3997. //防止拖动图标即打开了桌面应用
  3998. U.MD.D.click(this, obj);
  3999. }, [_szjkyTeacherDeskIconInfo[i]]),
  4000. "onclick": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_szjkyTeacherDeskIconInfo[i]])
  4004. }, _frag); //
  4005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4008. }
  4009. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4010. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4011. _content = $$("div", {
  4012. className: "U_MD_D_KO",
  4013. "onmousedown": U.UF.C.closure(function (obj) {
  4014. //防止拖动图标即打开了桌面应用
  4015. U.MD.D.click(this, obj);
  4016. }, [_x020201AdminDeskIconInfo[i]]),
  4017. "onclick": U.UF.C.closure(function (obj) {
  4018. //防止拖动图标即打开了桌面应用
  4019. U.MD.D.click(this, obj);
  4020. }, [_x020201AdminDeskIconInfo[i]])
  4021. }, _frag); //
  4022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4025. }//
  4026. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4027. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4028. if (_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4029. continue
  4030. }
  4031. _content = $$("div", {
  4032. className: "U_MD_D_KO",
  4033. "onmousedown": U.UF.C.closure(function (obj) {
  4034. //防止拖动图标即打开了桌面应用
  4035. U.MD.D.click(this, obj);
  4036. }, [_x020201TeacherDeskIconInfo[i]]),
  4037. "onclick": U.UF.C.closure(function (obj) {
  4038. //防止拖动图标即打开了桌面应用
  4039. U.MD.D.click(this, obj);
  4040. }, [_x020201TeacherDeskIconInfo[i]])
  4041. }, _frag); //
  4042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4045. }
  4046. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4047. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4048. _content = $$("div", {
  4049. className: "U_MD_D_KO",
  4050. "onmousedown": U.UF.C.closure(function (obj) {
  4051. //防止拖动图标即打开了桌面应用
  4052. U.MD.D.click(this, obj);
  4053. }, [_SCNUETAdminDeskIconInfo[i]]),
  4054. "onclick": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_SCNUETAdminDeskIconInfo[i]])
  4058. }, _frag); //
  4059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4062. }//
  4063. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4064. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4065. if (_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4066. continue
  4067. }
  4068. _content = $$("div", {
  4069. className: "U_MD_D_KO",
  4070. "onmousedown": U.UF.C.closure(function (obj) {
  4071. //防止拖动图标即打开了桌面应用
  4072. U.MD.D.click(this, obj);
  4073. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4074. "onclick": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_SCNUETTeacherDeskIconInfo[i]])
  4078. }, _frag); //
  4079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4082. }
  4083. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4084. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_futianAdminDeskIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_futianAdminDeskIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4101. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4102. if (_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_futianTeacherDeskIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_futianTeacherDeskIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4121. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4122. if (_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher') {
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_MingdeTeacherDeskIcon[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_MingdeTeacherDeskIcon[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4139. }
  4140. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4141. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4142. _content = $$("div", {
  4143. className: "U_MD_D_KO",
  4144. "onmousedown": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_lhsAdminDesktopIconInfo[i]]),
  4148. "onclick": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_lhsAdminDesktopIconInfo[i]])
  4152. }, _frag); //
  4153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4156. }
  4157. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4158. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4159. if (_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4160. continue
  4161. }
  4162. _content = $$("div", {
  4163. className: "U_MD_D_KO",
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_lhsteacherDesktopIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_lhsteacherDesktopIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4176. }
  4177. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4178. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4179. if (_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher') {
  4180. continue
  4181. }
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖动图标即打开了桌面应用
  4190. U.MD.D.click(this, obj);
  4191. }, [_zhoujiateacherDesktopIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4198. for (i = 0; i < _hanDeskIcon.length; i++) {
  4199. if (_role === 0 && _hanDeskIcon[i].Url == 'testTeacher') {
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_hanDeskIcon[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖动图标即打开了桌面应用
  4210. U.MD.D.click(this, obj);
  4211. }, [_hanDeskIcon[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4218. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4219. if (_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher') {
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_orgStemDeskIcon[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_orgStemDeskIcon[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4236. }
  4237. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4238. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4239. if (_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher') {
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szulsDeskIcon[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_szulsDeskIcon[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4256. }
  4257. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4258. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4259. if (_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher') {
  4260. continue
  4261. }
  4262. _content = $$("div", {
  4263. className: "U_MD_D_KO",
  4264. "onmousedown": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_orgDesktopIconInfo[i]]),
  4268. "onclick": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_orgDesktopIconInfo[i]])
  4272. }, _frag); //
  4273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4276. }
  4277. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4278. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4279. if (_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher') {
  4280. continue
  4281. }
  4282. _content = $$("div", {
  4283. className: "U_MD_D_KO",
  4284. "onmousedown": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_schoolDesktopIconInfo[i]]),
  4288. "onclick": U.UF.C.closure(function (obj) {
  4289. //防止拖动图标即打开了桌面应用
  4290. U.MD.D.click(this, obj);
  4291. }, [_schoolDesktopIconInfo[i]])
  4292. }, _frag); //
  4293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4296. }
  4297. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4298. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4299. if (_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4300. continue
  4301. }
  4302. _content = $$("div", {
  4303. className: "U_MD_D_KO",
  4304. "onmousedown": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_GMteacherDesktopIconInfo[i]]),
  4308. "onclick": U.UF.C.closure(function (obj) {
  4309. //防止拖动图标即打开了桌面应用
  4310. U.MD.D.click(this, obj);
  4311. }, [_GMteacherDesktopIconInfo[i]])
  4312. }, _frag); //
  4313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4316. }
  4317. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4318. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4319. if (_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4320. continue
  4321. }
  4322. _content = $$("div", {
  4323. className: "U_MD_D_KO",
  4324. "onmousedown": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_SONGteacherDesktopIconInfo[i]]),
  4328. "onclick": U.UF.C.closure(function (obj) {
  4329. //防止拖动图标即打开了桌面应用
  4330. U.MD.D.click(this, obj);
  4331. }, [_SONGteacherDesktopIconInfo[i]])
  4332. }, _frag); //
  4333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4336. }
  4337. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4338. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_GMstudentDesktopIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_GMstudentDesktopIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4355. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4356. if (_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_tcTeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_tcTeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4375. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4376. if (_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_tcOrganizerDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_tcOrganizerDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4395. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4396. if (_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_szscTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_szscTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4415. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4416. if (_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_szscOrganizerDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_szscOrganizerDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4435. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4436. if (_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_nsfxTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_nsfxTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4455. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4456. if (_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_stiaTeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_stiaTeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4475. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4476. if (_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_szdjgTeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_szdjgTeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4495. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4496. if (_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_x010607TeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_x010607TeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4515. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4516. if (_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_xhlyTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_xhlyTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4535. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4536. if (_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4555. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4556. if (_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4557. continue
  4558. }
  4559. _content = $$("div", {
  4560. className: "U_MD_D_KO",
  4561. "onmousedown": U.UF.C.closure(function (obj) {
  4562. //防止拖动图标即打开了桌面应用
  4563. U.MD.D.click(this, obj);
  4564. }, [_x010503TeacherDeskIconInfo[i]]),
  4565. "onclick": U.UF.C.closure(function (obj) {
  4566. //防止拖动图标即打开了桌面应用
  4567. U.MD.D.click(this, obj);
  4568. }, [_x010503TeacherDeskIconInfo[i]])
  4569. }, _frag); //
  4570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4573. }
  4574. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4575. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4576. if (_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4577. continue
  4578. }
  4579. _content = $$("div", {
  4580. className: "U_MD_D_KO",
  4581. "onmousedown": U.UF.C.closure(function (obj) {
  4582. //防止拖动图标即打开了桌面应用
  4583. U.MD.D.click(this, obj);
  4584. }, [_x010504TeacherDeskIconInfo[i]]),
  4585. "onclick": U.UF.C.closure(function (obj) {
  4586. //防止拖动图标即打开了桌面应用
  4587. U.MD.D.click(this, obj);
  4588. }, [_x010504TeacherDeskIconInfo[i]])
  4589. }, _frag); //
  4590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4593. }
  4594. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4595. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4596. if (_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4597. continue
  4598. }
  4599. _content = $$("div", {
  4600. className: "U_MD_D_KO",
  4601. "onmousedown": U.UF.C.closure(function (obj) {
  4602. //防止拖动图标即打开了桌面应用
  4603. U.MD.D.click(this, obj);
  4604. }, [_x010505TeacherDeskIconInfo[i]]),
  4605. "onclick": U.UF.C.closure(function (obj) {
  4606. //防止拖动图标即打开了桌面应用
  4607. U.MD.D.click(this, obj);
  4608. }, [_x010505TeacherDeskIconInfo[i]])
  4609. }, _frag); //
  4610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4613. }
  4614. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4615. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4616. if (_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4617. continue
  4618. }
  4619. _content = $$("div", {
  4620. className: "U_MD_D_KO",
  4621. "onmousedown": U.UF.C.closure(function (obj) {
  4622. //防止拖动图标即打开了桌面应用
  4623. U.MD.D.click(this, obj);
  4624. }, [_x010404TeacherDeskIconInfo[i]]),
  4625. "onclick": U.UF.C.closure(function (obj) {
  4626. //防止拖动图标即打开了桌面应用
  4627. U.MD.D.click(this, obj);
  4628. }, [_x010404TeacherDeskIconInfo[i]])
  4629. }, _frag); //
  4630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4633. }
  4634. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4635. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4636. if (_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4637. continue
  4638. }
  4639. _content = $$("div", {
  4640. className: "U_MD_D_KO",
  4641. "onmousedown": U.UF.C.closure(function (obj) {
  4642. //防止拖动图标即打开了桌面应用
  4643. U.MD.D.click(this, obj);
  4644. }, [_x010204TeacherDeskIconInfo[i]]),
  4645. "onclick": U.UF.C.closure(function (obj) {
  4646. //防止拖动图标即打开了桌面应用
  4647. U.MD.D.click(this, obj);
  4648. }, [_x010204TeacherDeskIconInfo[i]])
  4649. }, _frag); //
  4650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4653. }
  4654. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4655. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4656. if (_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4657. continue
  4658. }
  4659. _content = $$("div", {
  4660. className: "U_MD_D_KO",
  4661. "onmousedown": U.UF.C.closure(function (obj) {
  4662. //防止拖动图标即打开了桌面应用
  4663. U.MD.D.click(this, obj);
  4664. }, [_x320101TeacherDeskIconInfo[i]]),
  4665. "onclick": U.UF.C.closure(function (obj) {
  4666. //防止拖动图标即打开了桌面应用
  4667. U.MD.D.click(this, obj);
  4668. }, [_x320101TeacherDeskIconInfo[i]])
  4669. }, _frag); //
  4670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4673. }
  4674. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4675. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4676. if (_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4677. continue
  4678. }
  4679. _content = $$("div", {
  4680. className: "U_MD_D_KO",
  4681. "onmousedown": U.UF.C.closure(function (obj) {
  4682. //防止拖动图标即打开了桌面应用
  4683. U.MD.D.click(this, obj);
  4684. }, [_trailTeacherDeskIconInfo[i]]),
  4685. "onclick": U.UF.C.closure(function (obj) {
  4686. //防止拖动图标即打开了桌面应用
  4687. U.MD.D.click(this, obj);
  4688. }, [_trailTeacherDeskIconInfo[i]])
  4689. }, _frag); //
  4690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4693. }
  4694. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4695. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4696. if (_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4697. continue
  4698. }
  4699. _content = $$("div", {
  4700. className: "U_MD_D_KO",
  4701. "onmousedown": U.UF.C.closure(function (obj) {
  4702. //防止拖动图标即打开了桌面应用
  4703. U.MD.D.click(this, obj);
  4704. }, [_trialTeacherDeskIconInfo[i]]),
  4705. "onclick": U.UF.C.closure(function (obj) {
  4706. //防止拖动图标即打开了桌面应用
  4707. U.MD.D.click(this, obj);
  4708. }, [_trialTeacherDeskIconInfo[i]])
  4709. }, _frag); //
  4710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4713. }
  4714. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4715. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4716. if (_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4717. continue
  4718. }
  4719. _content = $$("div", {
  4720. className: "U_MD_D_KO",
  4721. "onmousedown": U.UF.C.closure(function (obj) {
  4722. //防止拖动图标即打开了桌面应用
  4723. U.MD.D.click(this, obj);
  4724. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4725. "onclick": U.UF.C.closure(function (obj) {
  4726. //防止拖动图标即打开了桌面应用
  4727. U.MD.D.click(this, obj);
  4728. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4729. }, _frag); //
  4730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4733. }
  4734. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4735. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4736. if (_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4737. continue
  4738. }
  4739. _content = $$("div", {
  4740. className: "U_MD_D_KO",
  4741. "onmousedown": U.UF.C.closure(function (obj) {
  4742. //防止拖动图标即打开了桌面应用
  4743. U.MD.D.click(this, obj);
  4744. }, [_szsyTeacherDeskIconInfo[i]]),
  4745. "onclick": U.UF.C.closure(function (obj) {
  4746. //防止拖动图标即打开了桌面应用
  4747. U.MD.D.click(this, obj);
  4748. }, [_szsyTeacherDeskIconInfo[i]])
  4749. }, _frag); //
  4750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4753. }
  4754. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4755. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4756. if (_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher') {
  4757. continue
  4758. }
  4759. _content = $$("div", {
  4760. className: "U_MD_D_KO",
  4761. "onmousedown": U.UF.C.closure(function (obj) {
  4762. //防止拖动图标即打开了桌面应用
  4763. U.MD.D.click(this, obj);
  4764. }, [_PREPAITeacherDeskIcon[i]]),
  4765. "onclick": U.UF.C.closure(function (obj) {
  4766. //防止拖动图标即打开了桌面应用
  4767. U.MD.D.click(this, obj);
  4768. }, [_PREPAITeacherDeskIcon[i]])
  4769. }, _frag); //
  4770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4773. }
  4774. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4775. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4776. if (_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4777. continue
  4778. }
  4779. _content = $$("div", {
  4780. className: "U_MD_D_KO",
  4781. "onmousedown": U.UF.C.closure(function (obj) {
  4782. //防止拖动图标即打开了桌面应用
  4783. U.MD.D.click(this, obj);
  4784. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4785. "onclick": U.UF.C.closure(function (obj) {
  4786. //防止拖动图标即打开了桌面应用
  4787. U.MD.D.click(this, obj);
  4788. }, [_demoCocoTeacherDeskIconInfo[i]])
  4789. }, _frag); //
  4790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4793. }
  4794. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4795. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4796. if (_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4797. continue
  4798. }
  4799. _content = $$("div", {
  4800. className: "U_MD_D_KO",
  4801. "onmousedown": U.UF.C.closure(function (obj) {
  4802. //防止拖动图标即打开了桌面应用
  4803. U.MD.D.click(this, obj);
  4804. }, [_x010608TeacherDeskIconInfo[i]]),
  4805. "onclick": U.UF.C.closure(function (obj) {
  4806. //防止拖动图标即打开了桌面应用
  4807. U.MD.D.click(this, obj);
  4808. }, [_x010608TeacherDeskIconInfo[i]])
  4809. }, _frag); //
  4810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4813. }
  4814. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4815. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4816. if (_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4817. continue
  4818. }
  4819. _content = $$("div", {
  4820. className: "U_MD_D_KO",
  4821. "onmousedown": U.UF.C.closure(function (obj) {
  4822. //防止拖动图标即打开了桌面应用
  4823. U.MD.D.click(this, obj);
  4824. }, [_x010611TeacherDeskIconInfo[i]]),
  4825. "onclick": U.UF.C.closure(function (obj) {
  4826. //防止拖动图标即打开了桌面应用
  4827. U.MD.D.click(this, obj);
  4828. }, [_x010611TeacherDeskIconInfo[i]])
  4829. }, _frag); //
  4830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4833. }
  4834. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4835. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4836. if (_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4837. continue
  4838. }
  4839. _content = $$("div", {
  4840. className: "U_MD_D_KO",
  4841. "onmousedown": U.UF.C.closure(function (obj) {
  4842. //防止拖动图标即打开了桌面应用
  4843. U.MD.D.click(this, obj);
  4844. }, [_x010612TeacherDeskIconInfo[i]]),
  4845. "onclick": U.UF.C.closure(function (obj) {
  4846. //防止拖动图标即打开了桌面应用
  4847. U.MD.D.click(this, obj);
  4848. }, [_x010612TeacherDeskIconInfo[i]])
  4849. }, _frag); //
  4850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4853. }
  4854. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4855. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4856. if (_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4857. continue
  4858. }
  4859. _content = $$("div", {
  4860. className: "U_MD_D_KO",
  4861. "onmousedown": U.UF.C.closure(function (obj) {
  4862. //防止拖动图标即打开了桌面应用
  4863. U.MD.D.click(this, obj);
  4864. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4865. "onclick": U.UF.C.closure(function (obj) {
  4866. //防止拖动图标即打开了桌面应用
  4867. U.MD.D.click(this, obj);
  4868. }, [_tianyuanTeacherDeskIconInfo[i]])
  4869. }, _frag); //
  4870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4873. }
  4874. } else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4875. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4876. if (_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher') {
  4877. continue
  4878. }
  4879. _content = $$("div", {
  4880. className: "U_MD_D_KO",
  4881. "onmousedown": U.UF.C.closure(function (obj) {
  4882. //防止拖动图标即打开了桌面应用
  4883. U.MD.D.click(this, obj);
  4884. }, [_MOAITeacherDeskIcon[i]]),
  4885. "onclick": U.UF.C.closure(function (obj) {
  4886. //防止拖动图标即打开了桌面应用
  4887. U.MD.D.click(this, obj);
  4888. }, [_MOAITeacherDeskIcon[i]])
  4889. }, _frag); //
  4890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4893. }
  4894. } else {
  4895. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4896. if (_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  4897. continue
  4898. }
  4899. _content = $$("div", {
  4900. className: "U_MD_D_KO",
  4901. "onmousedown": U.UF.C.closure(function (obj) {
  4902. //防止拖动图标即打开了桌面应用
  4903. U.MD.D.click(this, obj);
  4904. }, [_teacherDesktopIconInfo[i]]),
  4905. "onclick": U.UF.C.closure(function (obj) {
  4906. //防止拖动图标即打开了桌面应用
  4907. U.MD.D.click(this, obj);
  4908. }, [_teacherDesktopIconInfo[i]])
  4909. }, _frag); //
  4910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4913. }
  4914. }
  4915. } else {
  4916. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4917. _content = $$("div", {
  4918. className: "U_MD_D_KO",
  4919. style: { 'width': '124px', 'height': '145px' },
  4920. "onmousedown": U.UF.C.closure(function (obj) {
  4921. //防止拖动图标即打开了桌面应用
  4922. U.MD.D.click(this, obj);
  4923. }, [_easyDesktopIconInfo[i]]),
  4924. "onclick": U.UF.C.closure(function (obj) {
  4925. //防止拖动图标即打开了桌面应用
  4926. U.MD.D.click(this, obj);
  4927. }, [_easyDesktopIconInfo[i]])
  4928. }, _frag); //
  4929. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4932. }
  4933. }
  4934. if (type == 1) {
  4935. //加载好后给图标定位
  4936. U.MD.D.iconPostion($(_frag).Child());
  4937. } else {
  4938. //加载好后给图标定位
  4939. U.MD.D.iconPostion2($(_frag).Child());
  4940. }
  4941. //把图标加载到页面
  4942. el.appendChild(_frag);
  4943. }
  4944. /**
  4945. * 显示任务栏
  4946. *
  4947. * @param {element} 桌面元素
  4948. */
  4949. U.MD.D.I.displayTaskbar = function (el) {
  4950. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4951. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4952. //任务栏位置变化
  4953. U.selectEl(el).css({ "bottom": "0px" });
  4954. //桌面位置变话
  4955. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4956. }
  4957. }
  4958. //#region 桌面图标拖动逻辑
  4959. /**
  4960. * 桌面排列图标
  4961. *
  4962. * @param {element} 桌面元素
  4963. * @param {object} 上下相距的距离
  4964. * @param {object} 左右相距的距离
  4965. * @return {object} 命名空间
  4966. */
  4967. U.MD.D.iconPostion = function (childs, top, left) {
  4968. var i; //用于循环处理
  4969. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4970. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4971. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4972. for (i = 0; i < childs.length; i++) {
  4973. //如果竖排top超过了范围处理
  4974. if (top + 95 > US.height - 10) {
  4975. //left超过了页面范围处理,则向上重叠打印处理
  4976. if ((left + 180) > US.width) {
  4977. top -= 110;
  4978. left -= 90;
  4979. }
  4980. //没有超过范围,那么left+90添加到下一个竖排打印
  4981. else {
  4982. left += 90;
  4983. top = 15;
  4984. };
  4985. }
  4986. //给图标的位置赋值
  4987. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4988. if (i < childs.length - 1) {
  4989. //页面图标每次向下加95
  4990. top += 95;
  4991. }
  4992. }
  4993. //返回最后调用的图标的位置
  4994. return [top, left];
  4995. }
  4996. /**
  4997. * 桌面排列图标
  4998. *
  4999. * @param {element} 桌面元素
  5000. * @param {object} 上下相距的距离
  5001. * @param {object} 左右相距的距离
  5002. * @return {object} 命名空间
  5003. */
  5004. U.MD.D.iconPostion2 = function (childs, top, left) {
  5005. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5006. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5007. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5008. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5009. for (i = 0; i < childs.length; i++) {
  5010. //如果竖排top超过了范围处理
  5011. if (left + 150 > US.width - 10) {
  5012. //left超过了页面范围处理,则向上重叠打印处理
  5013. if ((top + 180) > US.Height) {
  5014. top -= 150;
  5015. left -= 150;
  5016. }
  5017. //没有超过范围,那么left+90添加到下一个竖排打印
  5018. else {
  5019. top += 150;
  5020. left = ol;
  5021. };
  5022. }
  5023. //给图标的位置赋值
  5024. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5025. if (i < childs.length - 1) {
  5026. //页面图标每次向下加95
  5027. left += 150;
  5028. }
  5029. }
  5030. //返回最后调用的图标的位置
  5031. return [top, left];
  5032. }
  5033. /**
  5034. * 桌面点击事件逻辑
  5035. *
  5036. * @param {element} 桌面元素
  5037. * @param {object} 上下相距的距离
  5038. * @param {object} 左右相距的距离
  5039. * @return {object} 命名空间
  5040. */
  5041. U.MD.D.click = function (el, obj) {
  5042. var _buttonnumber = event.button; //点击的按钮的事件值
  5043. var _userinfo = US.userInfo;
  5044. U.UF.EV.stopBubble(); //阻止向上冒泡
  5045. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5046. if (_buttonnumber < 2) {
  5047. //如果是click事件的处理
  5048. if (event.type == "click") {
  5049. //如果元素在mousemove事件中没有移动则出发click事件
  5050. if (!U.MD.D.I.IsDrag) {
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. U.alert("请先登录您的账号!");
  5053. setTimeout(() => {
  5054. U.MD.U.L.login();
  5055. }, 2000);
  5056. } else {
  5057. //打开应用处理
  5058. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5059. }
  5060. }
  5061. }
  5062. //如果是mouse事件的处理
  5063. else {
  5064. if (US.Config.type == '1') {
  5065. //拖动处理,添加拖动和拖动结束事件
  5066. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5067. }
  5068. }
  5069. U.MD.D.I.IsDrag = false;
  5070. }
  5071. }
  5072. /**
  5073. * 拖动的处理
  5074. *
  5075. */
  5076. U.MD.D.iconMove = function () {
  5077. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5078. U.MD.D.I.IsDrag = true;
  5079. }
  5080. /**
  5081. * 拖动结束后,这里是定位处理,以网状的形式定位
  5082. *
  5083. * @param {element} 拖动的元素
  5084. * @return {object} 命名空间
  5085. */
  5086. U.MD.D.iconUp = function (el) {
  5087. var _top = 15,
  5088. _left = 20,
  5089. _margin,
  5090. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5091. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5092. if (_positioninfo["OT"] > 15) {
  5093. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5094. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5095. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5096. }
  5097. if (_positioninfo["OL"] > 20) {
  5098. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5099. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5100. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5101. }
  5102. //while循环判断么一个重叠的元素
  5103. do {
  5104. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5105. _top = _positioninfo[0] + 95; //得到定位后的top
  5106. _left = _positioninfo[1]; //得到定位后的left
  5107. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5108. }
  5109. /**
  5110. * 判断拖动后图标是否重叠
  5111. *
  5112. * @param {element} 拖动的元素
  5113. * @param {element} 桌面所有的元素
  5114. * @param {array} 拖动元素的位置
  5115. ----------[0] 上 top
  5116. ----------[1] 左 left
  5117. * @return {object} 命名空间
  5118. */
  5119. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5120. //循环所有的图标
  5121. for (var i = 0; i < childs.length; i++) {
  5122. //判断有没有和该图标诶子重叠的元素
  5123. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5124. return childs[i]; //如果有返回
  5125. }
  5126. }
  5127. }
  5128. //#endregion
  5129. //#endregion
  5130. //#region 桌面应用
  5131. /**
  5132. * 打开应用
  5133. *
  5134. * @param {string} 类型
  5135. -----------------Disk 网盘系统
  5136. -----------------PDisk 学习系统网盘
  5137. -----------------Poto 图片
  5138. -----------------Video 视频
  5139. -----------------Music 音乐
  5140. -----------------Word word
  5141. -----------------Excel excel
  5142. -----------------Txt 记事本
  5143. -----------------PB 学习系统
  5144. -----------------Blog 朋友圈系统
  5145. -----------------FTP ftp系统
  5146. -----------------Group 好友群
  5147. -----------------SY 首页系统
  5148. -----------------Set 个人设置
  5149. -----------------XSet 系统设置
  5150. -----------------App 我们所有的app
  5151. -----------------BC c.1473.cn 平台
  5152. -----------------CWeb d.1473.cn 变成平台
  5153. -----------------其他的外联系统 我们统一用iframe打开
  5154. * @param {array} 类型
  5155. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5156. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5157. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5158. 如果第一个参数为其他,则无第二个参数
  5159. * @returns {array}
  5160. */
  5161. window.addEventListener('message', function (e) { // 监听 message 事件
  5162. // alert(e.data.type);
  5163. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5164. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5165. //3是展示全部阶段 2学生 1老师 4专家
  5166. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5167. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5168. //3是展示全部阶段 2学生 1老师 4专家
  5169. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5170. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5171. //3是展示全部阶段 2学生 1老师 4专家
  5172. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5173. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5174. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5175. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5176. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5177. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5178. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5179. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5180. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5181. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5182. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5183. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5184. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5185. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5186. //3是展示全部阶段 2学生 1老师 4专家
  5187. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5188. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5189. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5190. U.MD.D.I.selectUser();
  5191. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5192. var _formel = document.getElementById("study");
  5193. U.UF.F.windowZooming(_formel);
  5194. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5195. var _formel = document.getElementById("studyDetail");
  5196. U.UF.F.windowZooming(_formel);
  5197. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5198. var _formel = document.getElementById("studyDetail");
  5199. U.UF.F.windowZooming(_formel);
  5200. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5201. var _formel = document.getElementById("studentStudy");
  5202. U.UF.F.windowZooming(_formel);
  5203. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5204. // var _formel = document.getElementById("study");
  5205. //如果最大化了,那么就把他缩小
  5206. // if (_formel.ismaximize) {
  5207. // return;
  5208. // }
  5209. // U.UF.F.windowZooming(_formel);
  5210. // U.UF.F.topWindow(_formel);
  5211. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5212. // var _formel = document.getElementById("studyDetail");
  5213. //如果最大化了,那么就把他缩小
  5214. // if (_formel.ismaximize) {
  5215. // return;
  5216. // }
  5217. // U.UF.F.windowZooming(_formel);
  5218. // U.UF.F.topWindow(_formel);
  5219. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5220. // var _formel = document.getElementById("studentStudy");
  5221. // if (_formel.ismaximize) {
  5222. // return;
  5223. // }
  5224. // U.UF.F.windowZooming(_formel);
  5225. // U.UF.F.topWindow(_formel);
  5226. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5227. var _formel = document.getElementById("study");
  5228. // if (_formel.ismaximize) {
  5229. // return;
  5230. // }
  5231. // U.UF.F.windowZooming(_formel);
  5232. U.UF.F.topWindow(_formel);
  5233. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5234. var _formel = document.getElementById("studentIndex");
  5235. U.UF.F.windowZooming(_formel);
  5236. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5237. var _formel = document.getElementById("studyDetailS");
  5238. U.UF.F.windowZooming(_formel);
  5239. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5240. var _formel = document.getElementById("studioIndex");
  5241. U.UF.F.windowZooming(_formel);
  5242. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5243. var _formel = document.getElementById("studyDetailStudio");
  5244. U.UF.F.windowZooming(_formel);
  5245. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5246. var _formel = document.getElementById("studyDetailStudio");
  5247. U.UF.F.windowZooming(_formel);
  5248. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5249. var _formel = document.getElementById("studyDetailNT");
  5250. U.UF.F.windowZooming(_formel);
  5251. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5252. var _formel = document.getElementById("studyDetailS");
  5253. U.UF.F.windowZooming(_formel);
  5254. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5255. var _formel = document.getElementById("studyDetailS");
  5256. U.UF.F.topWindow(_formel);
  5257. } else if (e.data.tools && e.data.tools == "1") {
  5258. // U.MD.D.I.openApplication("whiteboard")
  5259. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5260. } else if (e.data.tools && e.data.tools == "2") {
  5261. U.MD.D.I.openApplication("note")
  5262. } else if (e.data.tools && e.data.tools == "3") {
  5263. // U.MD.D.I.openApplication("mind")
  5264. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5265. } else if (e.data.tools && e.data.tools == "4") {
  5266. U.MD.D.I.openApplication("investigation")
  5267. } else if (e.data.tools && e.data.tools == "6") {
  5268. // U.MD.D.I.openApplication("doc")
  5269. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5270. } else if (e.data.tools && e.data.tools == "7") {
  5271. // U.MD.D.I.openApplication("mindNetwork")
  5272. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5273. } else if (e.data.tools && e.data.tools == "8") {
  5274. U.MD.D.I.openApplication("library")
  5275. } else if (e.data.tools && e.data.tools == "17") {
  5276. U.MD.D.I.openApplication("stuLibrary")
  5277. } else if (e.data.tools && e.data.tools == "18") {
  5278. U.MD.D.I.openApplication("train")
  5279. } else if (e.data.tools && e.data.tools == "21") {
  5280. U.MD.D.I.openApplication("program")
  5281. } else if (e.data.tools && e.data.tools == "22") {
  5282. U.MD.D.I.openApplication("AIprogram2")
  5283. } else if (e.data.tools && e.data.tools == "23") {
  5284. U.MD.D.I.openApplication("Pythonprogram")
  5285. } else if (e.data.tools && e.data.tools == "24") {
  5286. U.MD.D.I.openApplication("AIprogram")
  5287. } else if (e.data.tools && e.data.tools == "25") {
  5288. U.MD.D.I.openApplication("sys")
  5289. } else if (e.data.tools && e.data.tools == "26") {
  5290. // U.MD.D.I.openApplication("courseDesign")
  5291. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5292. } else if (e.data.tools && e.data.tools == "31") {
  5293. U.MD.D.I.openApplication("netWorkPanel")
  5294. } else if (e.data.tools && e.data.tools == "32") {
  5295. U.MD.D.I.openApplication("codeEdit")
  5296. } else if (e.data.tools && e.data.tools == "57") {
  5297. U.MD.D.I.openApplication("CocoPi")
  5298. } else if (e.data.tools && e.data.tools == "63") {
  5299. U.MD.D.I.openApplication("Wood")
  5300. } else if (e.data.tools && e.data.tools == "58") {
  5301. U.MD.D.I.openApplication("car")
  5302. } else if (e.data.tools && e.data.tools == "59") {
  5303. U.MD.D.I.openApplication("lineSearch")
  5304. } else if (e.data.tools && e.data.tools == "60") {
  5305. U.MD.D.I.openApplication("deepLearning")
  5306. } else if (e.data.tools && e.data.tools == "61") {
  5307. U.MD.D.I.openApplication("allHistory")
  5308. } else if (e.data.tools && e.data.tools == "28") {
  5309. U.MD.D.I.openApplication("translation")
  5310. } else if (e.data.tools && e.data.tools == "37") {
  5311. U.MD.D.I.openApplication("mohe")
  5312. } else if (e.data.tools && e.data.tools == "38") {
  5313. U.MD.D.I.openApplication("24game")
  5314. } else if (e.data.tools && e.data.tools == "39") {
  5315. U.MD.D.I.openApplication("GeoGebra")
  5316. } else if (e.data.tools && e.data.tools == "43") {
  5317. U.MD.D.I.openApplication("studentEvaluate")
  5318. } else if (e.data.tools && e.data.tools == "44") {
  5319. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5320. } else if (e.data.tools && e.data.tools == "46") {
  5321. U.MD.D.I.openApplication("project")
  5322. } else if (e.data.tools && e.data.tools == "71") {
  5323. U.MD.D.I.openApplication("aigptCourse")
  5324. } else if (e.data.tools && e.data.tools == "72") {
  5325. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5326. } else if (e.data.tools && e.data.tools == "1s") {
  5327. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5328. } else if (e.data.tools && e.data.tools == "3s") {
  5329. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5330. } else if (e.data.tools && e.data.tools == "6s") {
  5331. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5332. } else if (e.data.tools && e.data.tools == "1studio") {
  5333. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5334. } else if (e.data.tools && e.data.tools == "3studio") {
  5335. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5336. } else if (e.data.tools && e.data.tools == "6studio") {
  5337. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5338. } else if (e.data.tools && e.data.tools == "3y") {
  5339. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5340. } else if (e.data.tools && e.data.tools == "73y") {
  5341. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5342. } else if (e.data.tools && e.data.tools == "1y") {
  5343. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5344. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5345. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5346. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5347. U.MD.D.I.openApplication("AIAnalyse")
  5348. } else if (e.data.tools && e.data.tools == "1teacher") {
  5349. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5350. } else if (e.data.tools && e.data.tools == "3teacher") {
  5351. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5352. } else if (e.data.tools && e.data.tools == "7teacher") {
  5353. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5354. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5355. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5356. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5357. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5358. } else if (e.data.tools && e.data.tools == "1E") {
  5359. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5360. } else if (e.data.tools && e.data.tools == "3E") {
  5361. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5362. } else if (e.data.tools && e.data.tools == "57y") {
  5363. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5364. } else if (e.data.tools && e.data.tools == "57u") {
  5365. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5366. } else if (e.data.tools && e.data.tools == "57teacher") {
  5367. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5368. } else if (e.data.tools && e.data.tools == "64") {
  5369. U.MD.D.I.openApplication("AIChat")
  5370. } else if (e.data.tools && e.data.tools == "66") {
  5371. U.MD.D.I.openApplication("formulaEdi")
  5372. } else if (e.data.tools && e.data.tools == "67") {
  5373. U.MD.D.I.openApplication("molStr")
  5374. } else if (e.data.tools && e.data.tools == "68") {
  5375. U.MD.D.I.openApplication("timeAxis")
  5376. } else if (e.data.tools && e.data.tools == "openCourse") {
  5377. let _data = {
  5378. typea: e.data.typea || '',
  5379. typeb: e.data.typeb || '',
  5380. typed: e.data.typed || '',
  5381. }
  5382. U.MD.D.I.openInApplication("index", _data)
  5383. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5384. let _data = {
  5385. classid: e.data.classid || '',
  5386. }
  5387. U.MD.D.I.openInApplication("dataClass", _data)
  5388. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5389. let _data = {
  5390. cid: e.data.cid || '',
  5391. gid: e.data.gid || '',
  5392. }
  5393. U.MD.D.I.openInApplication("opencCscl", _data)
  5394. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5395. U.MD.D.I.openApplication("dataBoardTest")
  5396. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5397. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5398. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5399. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5400. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5401. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5402. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5403. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5404. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5405. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5406. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5407. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5408. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5409. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5410. } else if (e.data.tools && e.data.tools == "loginSz") {
  5411. U.MD.D.I.openInApplication("loginSz")
  5412. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5413. if ($('#classroom_observation_board')[0]) {
  5414. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5415. }
  5416. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5417. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5418. if ($('#classroom_observation_ob_comment')[0]) {
  5419. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5420. }
  5421. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5422. } else if (e.data.tools && e.data.tools == "logout") {
  5423. U.MD.U.LO.logoutSystem()
  5424. } else if (e.data.tools && e.data.tools == "getLogin") {
  5425. let _iframe = $('#UI_Login')[0];
  5426. if (_iframe) {
  5427. var userInfo = US.userInfo;
  5428. var type = 2
  5429. if (userInfo && userInfo.userid) {
  5430. type = 1
  5431. }
  5432. _contentWindow = _iframe.contentWindow;
  5433. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5434. }
  5435. }
  5436. });
  5437. U.MD.D.I.selectUser = function () {
  5438. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5439. if (res.value[0].length > 0) {
  5440. US.userInfo = res.value[0][0];
  5441. $(".userName")[0].innerHTML = US.userInfo.username;
  5442. }
  5443. }, [], { "type": "GET", "withCredentials": true });
  5444. }
  5445. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5446. var _userinfo = US.userInfo, //登录用户信息
  5447. _userid = US.userInfo.userid, //登录用户id
  5448. _oid = _userinfo.organizeid,
  5449. _type = US.userInfo.type,
  5450. _org = US.userInfo.org,
  5451. _role = US.userInfo.role,
  5452. _classId = US.userInfo.classid;
  5453. if (_type == 4) {
  5454. tType = 4
  5455. }
  5456. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5457. if (opArray.includes(str)) {
  5458. let _str = str
  5459. if (str == 'appStore') {
  5460. _str = "cocoFlow"
  5461. } else if (str == "futureClass") {
  5462. _str = "cocoNote"
  5463. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5464. _str = "IntelligentForm"
  5465. } else if (str == "testStudent" || str == "testStudentSies") {
  5466. _str = "TeacherCenter"
  5467. }
  5468. try {
  5469. if (data) {
  5470. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5471. } else {
  5472. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5473. }
  5474. } catch (error) {
  5475. console.log(error);
  5476. }
  5477. }
  5478. switch (str) {
  5479. case "studyDetailNT": //无终端模式
  5480. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5481. setTimeout(() => {
  5482. U.MD.U.L.login();
  5483. }, 2000);
  5484. } else {
  5485. _formdiv = new U.UF.UI.form(
  5486. "课程详情",
  5487. $$("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 }), {
  5488. "id": "studyDetailNT",
  5489. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //创建窗体
  5494. _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); } }
  5495. break;
  5496. }
  5497. case "studyDetail":
  5498. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5499. setTimeout(() => {
  5500. U.MD.U.L.login();
  5501. }, 2000);
  5502. } else {
  5503. _formdiv = new U.UF.UI.form(
  5504. "课程详情",
  5505. $$("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 }), {
  5506. "id": "studyDetail",
  5507. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5513. break;
  5514. }
  5515. case "studyDetailTrain":
  5516. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5517. setTimeout(() => {
  5518. U.MD.U.L.login();
  5519. }, 2000);
  5520. } else {
  5521. _formdiv = new U.UF.UI.form(
  5522. "培训详情",
  5523. $$("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 }), {
  5524. "id": "studyDetailTrain",
  5525. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5526. "onresize": function () { }
  5527. }, {
  5528. closecallback: function () { }
  5529. }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. _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); } }
  5531. break;
  5532. }
  5533. case "studyDetailS":
  5534. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5535. setTimeout(() => {
  5536. U.MD.U.L.login();
  5537. }, 2000);
  5538. } else {
  5539. _formdiv = new U.UF.UI.form(
  5540. "项目详情",
  5541. $$("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 }), {
  5542. "id": "studyDetailS",
  5543. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. }
  5551. case "studyDetailStudio":
  5552. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5553. setTimeout(() => {
  5554. U.MD.U.L.login();
  5555. }, 2000);
  5556. } else {
  5557. _formdiv = new U.UF.UI.form(
  5558. "工作详情",
  5559. $$("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 }), {
  5560. "id": "studyDetailStudio",
  5561. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5562. "onresize": function () { }
  5563. }, {
  5564. closecallback: function () { }
  5565. }, { "style": { "height": "36px" } }).form; //创建窗体
  5566. _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); } }
  5567. break;
  5568. }
  5569. case "studyDetailS5":
  5570. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5571. setTimeout(() => {
  5572. U.MD.U.L.login();
  5573. }, 2000);
  5574. } else {
  5575. _formdiv = new U.UF.UI.form(
  5576. "项目详情",
  5577. $$("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 }), {
  5578. "id": "studyDetailS",
  5579. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. }
  5587. case "studyDetailGM":
  5588. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5589. setTimeout(() => {
  5590. U.MD.U.L.login();
  5591. }, 2000);
  5592. } else {
  5593. _formdiv = new U.UF.UI.form(
  5594. "课程详情",
  5595. $$("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 }), {
  5596. "id": "studyDetail",
  5597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5598. "onresize": function () { }
  5599. }, {
  5600. closecallback: function () { }
  5601. }, { "style": { "height": "36px" } }).form; //创建窗体
  5602. _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); } }
  5603. break;
  5604. }
  5605. case "hanUrl":
  5606. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5607. setTimeout(() => {
  5608. U.MD.U.L.login();
  5609. }, 2000);
  5610. } else {
  5611. _formdiv = new U.UF.UI.form(
  5612. "汉字宫",
  5613. $$("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" }), {
  5614. "id": "hanUrl",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5621. break;
  5622. }
  5623. case "index":
  5624. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5625. setTimeout(() => {
  5626. U.MD.U.L.login();
  5627. }, 2000);
  5628. } else {
  5629. _formdiv = new U.UF.UI.form(
  5630. "课程中心",
  5631. $$("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 }), {
  5632. "id": "study",
  5633. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5639. break;
  5640. }
  5641. case "dataClass":
  5642. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5643. setTimeout(() => {
  5644. U.MD.U.L.login();
  5645. }, 2000);
  5646. } else {
  5647. _formdiv = new U.UF.UI.form(
  5648. "数据报告",
  5649. $$("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 }), {
  5650. "id": "dataClass",
  5651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5657. break;
  5658. }
  5659. case "opencCscl":
  5660. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5661. setTimeout(() => {
  5662. U.MD.U.L.login();
  5663. }, 2000);
  5664. } else {
  5665. _formdiv = new U.UF.UI.form(
  5666. "协同建构",
  5667. $$("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 }), {
  5668. "id": "futureClass",
  5669. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5673. }, { "style": { "height": "36px" } }).form; //创建窗体
  5674. _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); } }
  5675. break;
  5676. }
  5677. case "openCourseUpdate":
  5678. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5679. setTimeout(() => {
  5680. U.MD.U.L.login();
  5681. }, 2000);
  5682. } else {
  5683. _formdiv = new U.UF.UI.form(
  5684. "课程管理",
  5685. $$("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 }), {
  5686. "id": "openCourseUpdate",
  5687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. break;
  5693. }
  5694. case "openNewCourseUpdate":
  5695. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5696. setTimeout(() => {
  5697. U.MD.U.L.login();
  5698. }, 2000);
  5699. } else {
  5700. _formdiv = new U.UF.UI.form(
  5701. "课程管理",
  5702. $$("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 }), {
  5703. "id": "openCourseUpdate",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. break;
  5710. }
  5711. case "openCoursePptUpdate":
  5712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5713. setTimeout(() => {
  5714. U.MD.U.L.login();
  5715. }, 2000);
  5716. } else {
  5717. _formdiv = new U.UF.UI.form(
  5718. "课程管理",
  5719. $$("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/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5720. "id": "openCourseUpdate",
  5721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. break;
  5727. }
  5728. case "openCourseEUpdate":
  5729. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5730. setTimeout(() => {
  5731. U.MD.U.L.login();
  5732. }, 2000);
  5733. } else {
  5734. _formdiv = new U.UF.UI.form(
  5735. "课程管理",
  5736. $$("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 }), {
  5737. "id": "openCourseUpdate",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. break;
  5744. }
  5745. case "openCourseAiUpdate":
  5746. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5747. setTimeout(() => {
  5748. U.MD.U.L.login();
  5749. }, 2000);
  5750. } else {
  5751. _formdiv = new U.UF.UI.form(
  5752. "课程管理",
  5753. $$("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 }), {
  5754. "id": "openCourseUpdate",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. break;
  5761. }
  5762. case "openCourseAiUpdate2":
  5763. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5764. setTimeout(() => {
  5765. U.MD.U.L.login();
  5766. }, 2000);
  5767. } else {
  5768. _formdiv = new U.UF.UI.form(
  5769. "课程管理",
  5770. $$("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 }), {
  5771. "id": "openCourseUpdate",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //创建窗体
  5777. break;
  5778. }
  5779. case "openCourseNewUpdate":
  5780. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5781. setTimeout(() => {
  5782. U.MD.U.L.login();
  5783. }, 2000);
  5784. } else {
  5785. _formdiv = new U.UF.UI.form(
  5786. "课程管理",
  5787. $$("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 }), {
  5788. "id": "openCourseUpdate",
  5789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. break;
  5795. }
  5796. case "inviteLoginSz":
  5797. _formdiv = new U.UF.UI.form(
  5798. "随机码登录",
  5799. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5800. "id": "loginSz",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. break;
  5807. case "loginSz":
  5808. _formdiv = new U.UF.UI.form(
  5809. "教师登录",
  5810. $$("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" }), {
  5811. "id": "loginSz",
  5812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //创建窗体
  5817. break;
  5818. case "teacher":
  5819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5820. setTimeout(() => {
  5821. U.MD.U.L.login();
  5822. }, 2000);
  5823. } else {
  5824. _formdiv = new U.UF.UI.form(
  5825. "教师管理",
  5826. $$("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 }), {
  5827. "id": "teacher",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. break;
  5834. }
  5835. case "dataBoardSZArea":
  5836. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5837. setTimeout(() => {
  5838. U.MD.U.L.login();
  5839. }, 2000);
  5840. } else {
  5841. _formdiv = new U.UF.UI.form(
  5842. "综合数据看板",
  5843. $$("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 }), {
  5844. "id": "dataBoardSZArea",
  5845. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. break;
  5851. }
  5852. case "dataBoardSZCity":
  5853. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5854. setTimeout(() => {
  5855. U.MD.U.L.login();
  5856. }, 2000);
  5857. } else {
  5858. _formdiv = new U.UF.UI.form(
  5859. "综合数据看板",
  5860. $$("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 }), {
  5861. "id": "dataBoardSZCity",
  5862. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5863. "onresize": function () { }
  5864. }, {
  5865. closecallback: function () { }
  5866. }, { "style": { "height": "36px" } }).form; //创建窗体
  5867. break;
  5868. }
  5869. case "classroom_observation_board":
  5870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5871. setTimeout(() => {
  5872. U.MD.U.L.login();
  5873. }, 2000);
  5874. } else {
  5875. _formdiv = new U.UF.UI.form(
  5876. "课堂观察",
  5877. $$("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 }), {
  5878. "id": "classroom_observation_board",
  5879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. break;
  5885. }
  5886. case "classroom_observation_ob_comment":
  5887. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5888. setTimeout(() => {
  5889. U.MD.U.L.login();
  5890. }, 2000);
  5891. } else {
  5892. _formdiv = new U.UF.UI.form(
  5893. "课堂审核",
  5894. $$("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 }), {
  5895. "id": "classroom_observation_ob_comment",
  5896. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //创建窗体
  5901. break;
  5902. }
  5903. case "gptConfig":
  5904. _formdiv = new U.UF.UI.form(
  5905. data.name ? data.name : "应用中心",
  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": data.url }), {
  5907. "id": "gptConfig" + data.id,
  5908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. break;
  5914. case "testDetail":
  5915. _formdiv = new U.UF.UI.form(
  5916. "表单填写",
  5917. $$("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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5918. "id": "testDetail" + data,
  5919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. break;
  5925. }
  5926. }
  5927. U.MD.D.I.openApplication = function (str, obj, info) {
  5928. obj = obj || {};
  5929. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5930. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5931. _userinfo = US.userInfo, //登录用户信息
  5932. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5933. _oid = obj.organizeid || _userinfo.organizeid,
  5934. _type = US.userInfo.type,
  5935. _org = obj.org || US.userInfo.org,
  5936. _role = US.userInfo.role,
  5937. _classId = US.userInfo.classid,
  5938. _TscreenType = 1
  5939. _screenType = 2,
  5940. _SscreenType = 3;
  5941. let iframeBool = true
  5942. if (U.UF.UI.form.allForm[str]) {
  5943. iframeBool = false
  5944. }
  5945. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5946. return;
  5947. }
  5948. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5949. if (opArray.includes(str)) {
  5950. let _str = str
  5951. if (str == 'appStore') {
  5952. _str = "cocoFlow"
  5953. } else if (str == "futureClass") {
  5954. _str = "cocoNote"
  5955. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5956. _str = "IntelligentForm"
  5957. } else if (str == "testStudent" || str == "testStudentSies") {
  5958. _str = "TeacherCenter"
  5959. }
  5960. try {
  5961. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5962. } catch (error) {
  5963. console.log(error);
  5964. }
  5965. }
  5966. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5967. switch (str) {
  5968. case "studnetProject": //好友打开
  5969. _formdiv = new U.UF.UI.form(
  5970. "我的项目",
  5971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5972. "id": "studnetProject",
  5973. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5979. break;
  5980. case "studentEvaluate": //好友打开
  5981. _formdiv = new U.UF.UI.form(
  5982. "我的评价",
  5983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5984. "id": "studentEvaluate",
  5985. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _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); } }
  5991. break;
  5992. case "my":
  5993. _formdiv = new U.UF.UI.form(
  5994. "我的资料",
  5995. $$("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 }), {
  5996. "id": "my",
  5997. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _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); } }
  6003. break;
  6004. case "program":
  6005. _formdiv = new U.UF.UI.form(
  6006. "编程平台",
  6007. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6008. "id": "program",
  6009. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _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); } }
  6015. break;
  6016. case "library":
  6017. _formdiv = new U.UF.UI.form(
  6018. "素材库",
  6019. $$("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 }), {
  6020. "id": "library",
  6021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _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); } }
  6027. break;
  6028. case "whiteboard":
  6029. _formdiv = new U.UF.UI.form(
  6030. "电子白板",
  6031. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6032. "id": "whiteboard",
  6033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _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); } }
  6039. break;
  6040. case "investigation":
  6041. _formdiv = new U.UF.UI.form(
  6042. "问卷调查",
  6043. $$("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 }), {
  6044. "id": "investigation",
  6045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _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); } }
  6051. break;
  6052. case "note":
  6053. _formdiv = new U.UF.UI.form(
  6054. "便签分类",
  6055. $$("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 }), {
  6056. "id": "note",
  6057. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. // case "score":
  6065. // _formdiv = new U.UF.UI.form(
  6066. // "量规评分",
  6067. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6068. // "id": "score",
  6069. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6070. // "onresize": function() {}
  6071. // }, {
  6072. // closecallback: function() {}
  6073. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. // _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); } }
  6075. // break;
  6076. case "mind":
  6077. _formdiv = new U.UF.UI.form(
  6078. "思维导图",
  6079. $$("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"
  6080. "id": "mind",
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6087. break;
  6088. case "doc":
  6089. // U.MD.D.I.isRoom();
  6090. _formdiv = new U.UF.UI.form(
  6091. "协同文档",
  6092. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6093. "id": "doc",
  6094. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6095. "onresize": function () { }
  6096. }, {
  6097. closecallback: function () { }
  6098. }, { "style": { "height": "36px" } }).form; //创建窗体
  6099. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6100. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6101. // })
  6102. _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); } }
  6103. break;
  6104. case "studentStudy":
  6105. _formdiv = new U.UF.UI.form(
  6106. "课程中心",
  6107. $$("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
  6108. "id": "studentStudy",
  6109. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6115. break;
  6116. case "train": //好友打开
  6117. _formdiv = new U.UF.UI.form(
  6118. "训练平台",
  6119. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6120. "id": "train",
  6121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6127. break;
  6128. case "mindNetwork": //好友打开
  6129. _formdiv = new U.UF.UI.form(
  6130. "思维网格",
  6131. $$("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 }), {
  6132. "id": "mindNetwork",
  6133. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //创建窗体
  6138. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6139. break;
  6140. case "studentClassRoom": //好友打开
  6141. _formdiv = new U.UF.UI.form(
  6142. "实时课堂",
  6143. $$("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 }), {
  6144. "id": "studentClassRoom",
  6145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6151. setTimeout(() => {
  6152. U.UF.F.windowZooming(_formdiv)
  6153. }, 0);
  6154. break;
  6155. }
  6156. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6157. switch (str) {
  6158. case "studnetProject": //好友打开
  6159. _formdiv = new U.UF.UI.form(
  6160. "我的项目",
  6161. $$("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 }), {
  6162. "id": "studnetProject",
  6163. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //创建窗体
  6168. _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); } }
  6169. break;
  6170. case "studentEvaluate": //好友打开
  6171. _formdiv = new U.UF.UI.form(
  6172. "我的评价",
  6173. $$("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 }), {
  6174. "id": "studentEvaluate",
  6175. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6176. "onresize": function () { }
  6177. }, {
  6178. closecallback: function () { }
  6179. }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. _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); } }
  6181. break;
  6182. case "my":
  6183. _formdiv = new U.UF.UI.form(
  6184. "我的资料",
  6185. $$("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 }), {
  6186. "id": "my",
  6187. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6188. "onresize": function () { }
  6189. }, {
  6190. closecallback: function () { }
  6191. }, { "style": { "height": "36px" } }).form; //创建窗体
  6192. _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); } }
  6193. break;
  6194. case "program":
  6195. _formdiv = new U.UF.UI.form(
  6196. "编程平台",
  6197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6198. "id": "program",
  6199. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _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); } }
  6205. break;
  6206. case "library":
  6207. _formdiv = new U.UF.UI.form(
  6208. "素材库",
  6209. $$("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 }), {
  6210. "id": "library",
  6211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _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); } }
  6217. break;
  6218. case "whiteboard":
  6219. _formdiv = new U.UF.UI.form(
  6220. "电子白板",
  6221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6222. "id": "whiteboard",
  6223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _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); } }
  6229. break;
  6230. case "investigation":
  6231. _formdiv = new U.UF.UI.form(
  6232. "问卷调查",
  6233. $$("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 }), {
  6234. "id": "investigation",
  6235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _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); } }
  6241. break;
  6242. case "note":
  6243. _formdiv = new U.UF.UI.form(
  6244. "便签分类",
  6245. $$("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 }), {
  6246. "id": "note",
  6247. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _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); } }
  6253. break;
  6254. // case "score":
  6255. // _formdiv = new U.UF.UI.form(
  6256. // "量规评分",
  6257. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6258. // "id": "score",
  6259. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6260. // "onresize": function() {}
  6261. // }, {
  6262. // closecallback: function() {}
  6263. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6264. // _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); } }
  6265. // break;
  6266. case "mind":
  6267. _formdiv = new U.UF.UI.form(
  6268. "思维导图",
  6269. $$("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"
  6270. "id": "mind",
  6271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //创建窗体
  6276. _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); } }
  6277. break;
  6278. case "doc":
  6279. // U.MD.D.I.isRoom();
  6280. _formdiv = new U.UF.UI.form(
  6281. "协同文档",
  6282. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6283. "id": "doc",
  6284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //创建窗体
  6289. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6290. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6291. })
  6292. _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); } }
  6293. break;
  6294. case "train": //好友打开
  6295. _formdiv = new U.UF.UI.form(
  6296. "训练平台",
  6297. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6298. "id": "train",
  6299. "style": { "width": "90%", "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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6305. break;
  6306. case "studentStudy":
  6307. _formdiv = new U.UF.UI.form(
  6308. "课程中心",
  6309. $$("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
  6310. "id": "studentStudy",
  6311. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6317. break;
  6318. case "mindNetwork": //好友打开
  6319. _formdiv = new U.UF.UI.form(
  6320. "思维网格",
  6321. $$("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 }), {
  6322. "id": "mindNetwork",
  6323. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6329. break;
  6330. case "studentClassRoom": //好友打开
  6331. _formdiv = new U.UF.UI.form(
  6332. "实时课堂",
  6333. $$("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 }), {
  6334. "id": "studentClassRoom",
  6335. "style": { "width": "90%", "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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6341. setTimeout(() => {
  6342. U.UF.F.windowZooming(_formdiv)
  6343. }, 0);
  6344. break;
  6345. }
  6346. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6347. //选择应用处理
  6348. switch (str) {
  6349. case "project": //好友打开
  6350. _formdiv = new U.UF.UI.form(
  6351. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6352. $$("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 }), {
  6353. "id": "project",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. case "student":
  6362. _formdiv = new U.UF.UI.form(
  6363. "学生管理",
  6364. $$("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 }), {
  6365. "id": "student",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _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); } }
  6372. break;
  6373. case "evaluate":
  6374. _formdiv = new U.UF.UI.form(
  6375. "学生评价",
  6376. $$("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 }), {
  6377. "id": "evaluate",
  6378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _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); } }
  6384. break;
  6385. case "sys":
  6386. _formdiv = new U.UF.UI.form(
  6387. "目标管理",
  6388. $$("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 }), {
  6389. "id": "sys",
  6390. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _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); } }
  6396. break;
  6397. case "courseDesign":
  6398. _formdiv = new U.UF.UI.form(
  6399. "项目设计",
  6400. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6401. "id": "courseDesign",
  6402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //创建窗体
  6407. _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); } }
  6408. break;
  6409. case "program":
  6410. _formdiv = new U.UF.UI.form(
  6411. "编程平台",
  6412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6413. "id": "program",
  6414. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //创建窗体
  6419. _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); } }
  6420. break;
  6421. case "class":
  6422. _formdiv = new U.UF.UI.form(
  6423. "班级管理",
  6424. $$("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 }), {
  6425. "id": "class",
  6426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //创建窗体
  6431. _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); } }
  6432. break;
  6433. case "Grade":
  6434. _formdiv = new U.UF.UI.form(
  6435. "年级管理",
  6436. $$("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 }), {
  6437. "id": "Grade",
  6438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6439. "onresize": function () { }
  6440. }, {
  6441. closecallback: function () { }
  6442. }, { "style": { "height": "36px" } }).form; //创建窗体
  6443. _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); } }
  6444. break;
  6445. case "teacherOffice":
  6446. _formdiv = new U.UF.UI.form(
  6447. "教研室",
  6448. $$("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 }), {
  6449. "id": "teacherOffice",
  6450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6451. "onresize": function () { }
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //创建窗体
  6455. _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); } }
  6456. break;
  6457. case "my":
  6458. _formdiv = new U.UF.UI.form(
  6459. "我的资料",
  6460. $$("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 }), {
  6461. "id": "my",
  6462. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. _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); } }
  6468. break;
  6469. case "notice":
  6470. _formdiv = new U.UF.UI.form(
  6471. "通知公告",
  6472. $$("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 }), {
  6473. "id": "notice",
  6474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _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); } }
  6480. break;
  6481. case "library":
  6482. _formdiv = new U.UF.UI.form(
  6483. "素材库",
  6484. $$("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 }), {
  6485. "id": "library",
  6486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6487. "onresize": function () { }
  6488. }, {
  6489. closecallback: function () { }
  6490. }, { "style": { "height": "36px" } }).form; //创建窗体
  6491. _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); } }
  6492. break;
  6493. case "whiteboard":
  6494. _formdiv = new U.UF.UI.form(
  6495. "电子白板",
  6496. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6497. "id": "whiteboard",
  6498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6499. "onresize": function () { }
  6500. }, {
  6501. closecallback: function () { }
  6502. }, { "style": { "height": "36px" } }).form; //创建窗体
  6503. _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); } }
  6504. break;
  6505. case "investigation":
  6506. _formdiv = new U.UF.UI.form(
  6507. "问卷调查",
  6508. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6509. "id": "investigation",
  6510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6511. "onresize": function () { }
  6512. }, {
  6513. closecallback: function () { }
  6514. }, { "style": { "height": "36px" } }).form; //创建窗体
  6515. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6516. break;
  6517. case "note":
  6518. _formdiv = new U.UF.UI.form(
  6519. "便签分类",
  6520. $$("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 }), {
  6521. "id": "note",
  6522. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6523. "onresize": function () { }
  6524. }, {
  6525. closecallback: function () { }
  6526. }, { "style": { "height": "36px" } }).form; //创建窗体
  6527. _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); } }
  6528. break;
  6529. // case "score":
  6530. // _formdiv = new U.UF.UI.form(
  6531. // "量规评分",
  6532. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6533. // "id": "score",
  6534. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6535. // "onresize": function() {}
  6536. // }, {
  6537. // closecallback: function() {}
  6538. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6539. // _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); } }
  6540. // break;
  6541. case "mind":
  6542. _formdiv = new U.UF.UI.form(
  6543. "思维导图",
  6544. $$("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"
  6545. "id": "mind",
  6546. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6547. "onresize": function () { }
  6548. }, {
  6549. closecallback: function () { }
  6550. }, { "style": { "height": "36px" } }).form; //创建窗体
  6551. _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); } }
  6552. break;
  6553. case "doc":
  6554. // U.MD.D.I.isRoom();
  6555. _formdiv = new U.UF.UI.form(
  6556. "协同文档",
  6557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6558. "id": "doc",
  6559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () { }
  6563. }, { "style": { "height": "36px" } }).form; //创建窗体
  6564. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6565. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6566. })
  6567. _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); } }
  6568. break;
  6569. case "study":
  6570. _formdiv = new U.UF.UI.form(
  6571. "课程中心",
  6572. $$("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
  6573. "id": "study",
  6574. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //创建窗体
  6579. _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); } }
  6580. break;
  6581. case "mindNetwork": //好友打开
  6582. _formdiv = new U.UF.UI.form(
  6583. "思维网格",
  6584. $$("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 }), {
  6585. "id": "mindNetwork",
  6586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //创建窗体
  6591. _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); } }
  6592. break;
  6593. case "train": //好友打开
  6594. _formdiv = new U.UF.UI.form(
  6595. "训练平台",
  6596. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6597. "id": "mindNetwork",
  6598. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _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); } }
  6604. break;
  6605. case "teacherClassRoom": //好友打开
  6606. _formdiv = new U.UF.UI.form(
  6607. "实时课堂",
  6608. $$("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 }), {
  6609. "id": "teacherClassRoom",
  6610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6611. "onresize": function () { }
  6612. }, {
  6613. closecallback: function () { }
  6614. }, { "style": { "height": "36px" } }).form; //创建窗体
  6615. _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); } }
  6616. setTimeout(() => {
  6617. U.UF.F.windowZooming(_formdiv)
  6618. }, 0);
  6619. break;
  6620. }
  6621. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6622. switch (str) {
  6623. case "project": //好友打开
  6624. _formdiv = new U.UF.UI.form(
  6625. "课程管理",
  6626. $$("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 }), {
  6627. "id": "project",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6634. break;
  6635. case "evaluate":
  6636. _formdiv = new U.UF.UI.form(
  6637. "学生评价",
  6638. $$("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 }), {
  6639. "id": "evaluate",
  6640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6646. break;
  6647. case "notice":
  6648. _formdiv = new U.UF.UI.form(
  6649. "通知公告",
  6650. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6651. "id": "notice",
  6652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6658. break;
  6659. case "stuLibrary":
  6660. _formdiv = new U.UF.UI.form(
  6661. "学习资料",
  6662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6663. "id": "stuLibrary",
  6664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6670. break;
  6671. case "program":
  6672. _formdiv = new U.UF.UI.form(
  6673. "编程平台",
  6674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6675. "id": "program",
  6676. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6682. break;
  6683. case "whiteboard":
  6684. _formdiv = new U.UF.UI.form(
  6685. "电子白板",
  6686. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6687. "id": "whiteboard",
  6688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "investigation":
  6696. _formdiv = new U.UF.UI.form(
  6697. "问卷调查",
  6698. $$("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 }), {
  6699. "id": "investigation",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "mind":
  6708. _formdiv = new U.UF.UI.form(
  6709. "思维导图",
  6710. $$("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"
  6711. "id": "mind",
  6712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "doc":
  6720. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  6724. "id": "doc",
  6725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6731. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6732. })
  6733. _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); } }
  6734. break;
  6735. case "study":
  6736. _formdiv = new U.UF.UI.form(
  6737. "课程中心",
  6738. $$("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
  6739. "id": "study",
  6740. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () { }
  6744. }, { "style": { "height": "36px" } }).form; //创建窗体
  6745. _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); } }
  6746. break;
  6747. case "mindNetwork": //好友打开
  6748. _formdiv = new U.UF.UI.form(
  6749. "思维网格",
  6750. $$("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 }), {
  6751. "id": "mindNetwork",
  6752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //创建窗体
  6757. _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); } }
  6758. break;
  6759. case "train": //好友打开
  6760. _formdiv = new U.UF.UI.form(
  6761. "训练平台",
  6762. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6763. "id": "train",
  6764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () { }
  6768. }, { "style": { "height": "36px" } }).form; //创建窗体
  6769. _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); } }
  6770. break;
  6771. case "sys":
  6772. _formdiv = new U.UF.UI.form(
  6773. "目标管理",
  6774. $$("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 }), {
  6775. "id": "sys",
  6776. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6777. "onresize": function () { }
  6778. }, {
  6779. closecallback: function () { }
  6780. }, { "style": { "height": "36px" } }).form; //创建窗体
  6781. _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); } }
  6782. break;
  6783. case "courseDesign":
  6784. _formdiv = new U.UF.UI.form(
  6785. "项目设计",
  6786. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6787. "id": "courseDesign",
  6788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6794. break;
  6795. }
  6796. } else if (!_type) {
  6797. switch (str) {
  6798. case "my":
  6799. _formdiv = new U.UF.UI.form(
  6800. "我的资料",
  6801. $$("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 }), {
  6802. "id": "my",
  6803. "style": { "width": "42%", "height": "90%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6809. break;
  6810. }
  6811. }
  6812. switch (str) {
  6813. // AIprogram2 AI体验 aihub.cocorobo.cn
  6814. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6815. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6816. case "formulaEdi": //公式编辑
  6817. _formdiv = new U.UF.UI.form(
  6818. "公式编辑",
  6819. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6820. "id": "formulaEdi",
  6821. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //创建窗体
  6826. _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); } }
  6827. break;
  6828. case "molStr": //分子结构
  6829. _formdiv = new U.UF.UI.form(
  6830. "分子结构",
  6831. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6832. "id": "molStr",
  6833. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //创建窗体
  6838. _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); } }
  6839. break;
  6840. case "timeAxis": //时间轴
  6841. _formdiv = new U.UF.UI.form(
  6842. "时间轴",
  6843. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6844. "id": "timeAxis",
  6845. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, { "style": { "height": "36px" } }).form; //创建窗体
  6850. _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); } }
  6851. break;
  6852. case "AIprogram2": //AI体验
  6853. _formdiv = new U.UF.UI.form(
  6854. "AI体验",
  6855. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6856. "id": "AIprogram2",
  6857. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //创建窗体
  6862. _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); } }
  6863. break;
  6864. case "Pythonprogram": //python编程
  6865. _formdiv = new U.UF.UI.form(
  6866. "Python编程",
  6867. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6868. "id": "Pythonprogram",
  6869. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //创建窗体
  6874. _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); } }
  6875. break;
  6876. case "AIprogram": //ai编程
  6877. _formdiv = new U.UF.UI.form(
  6878. "AI编程平台",
  6879. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6880. "id": "AIprogram",
  6881. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //创建窗体
  6886. _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); } }
  6887. break;
  6888. case "CocoPi": //CocoPi
  6889. _formdiv = new U.UF.UI.form(
  6890. "CocoPi",
  6891. $$("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" }), {
  6892. "id": "CocoPi",
  6893. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, { "style": { "height": "36px" } }).form; //创建窗体
  6898. _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); } }
  6899. break;
  6900. case "Wood": //Wood
  6901. _formdiv = new U.UF.UI.form(
  6902. "海龟编程",
  6903. $$("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/" }), {
  6904. "id": "Wood",
  6905. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //创建窗体
  6910. _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); } }
  6911. break;
  6912. case "car": //模拟驾驶
  6913. _formdiv = new U.UF.UI.form(
  6914. "模拟驾驶",
  6915. $$("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/" }), {
  6916. "id": "car",
  6917. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //创建窗体
  6922. _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); } }
  6923. break;
  6924. case "lineSearch": //路径搜索
  6925. _formdiv = new U.UF.UI.form(
  6926. "路径搜索",
  6927. $$("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/" }), {
  6928. "id": "lineSearch",
  6929. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6930. "onresize": function () { }
  6931. }, {
  6932. closecallback: function () { }
  6933. }, { "style": { "height": "36px" } }).form; //创建窗体
  6934. _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); } }
  6935. break;
  6936. case "deepLearning": //深度学习
  6937. _formdiv = new U.UF.UI.form(
  6938. "深度学习",
  6939. $$("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/#" }), {
  6940. "id": "deepLearning",
  6941. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6942. "onresize": function () { }
  6943. }, {
  6944. closecallback: function () { }
  6945. }, { "style": { "height": "36px" } }).form; //创建窗体
  6946. _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); } }
  6947. break;
  6948. case "allHistory": //深度学习
  6949. _formdiv = new U.UF.UI.form(
  6950. "全历史",
  6951. $$("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/" }), {
  6952. "id": "allHistory",
  6953. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6954. "onresize": function () { }
  6955. }, {
  6956. closecallback: function () { }
  6957. }, { "style": { "height": "36px" } }).form; //创建窗体
  6958. _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); } }
  6959. break;
  6960. case "chatPDF": //ai编程
  6961. _formdiv = new U.UF.UI.form(
  6962. "chatPDF",
  6963. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6964. "id": "chatPDF",
  6965. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6966. "onresize": function () { }
  6967. }, {
  6968. closecallback: function () { }
  6969. }, { "style": { "height": "36px" } }).form; //创建窗体
  6970. _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); } }
  6971. break;
  6972. case "resources": //国家教育
  6973. _formdiv = new U.UF.UI.form(
  6974. "国家教育",
  6975. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6976. "id": "resources",
  6977. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, { "style": { "height": "36px" } }).form; //创建窗体
  6982. _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); } }
  6983. break;
  6984. case "codeEdit": //源码编辑
  6985. _formdiv = new U.UF.UI.form(
  6986. "源码编辑",
  6987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6988. "id": "codeEdit",
  6989. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6990. "onresize": function () { }
  6991. }, {
  6992. closecallback: function () { }
  6993. }, { "style": { "height": "36px" } }).form; //创建窗体
  6994. _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); } }
  6995. break; //
  6996. case "MindMap": //MindMap
  6997. _formdiv = new U.UF.UI.form(
  6998. "MindMap",
  6999. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7000. "id": "MindMap",
  7001. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7002. "onresize": function () { }
  7003. }, {
  7004. closecallback: function () { }
  7005. }, { "style": { "height": "36px" } }).form; //创建窗体
  7006. _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); } }
  7007. break;
  7008. case "netWorkPanel": //netWorkPanel
  7009. _formdiv = new U.UF.UI.form(
  7010. "netWorkPanel",
  7011. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7012. "id": "netWorkPanel",
  7013. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7014. "onresize": function () { }
  7015. }, {
  7016. closecallback: function () { }
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. break;
  7020. case "GeoGebra": //GeoGebra
  7021. _formdiv = new U.UF.UI.form(
  7022. "GeoGebra",
  7023. $$("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" }), {
  7024. "id": "GeoGebra",
  7025. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _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); } }
  7031. break;
  7032. case "translation": //翻译
  7033. _formdiv = new U.UF.UI.form(
  7034. "翻译",
  7035. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7036. "id": "translation",
  7037. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _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); } }
  7043. break;
  7044. case "mohe": //魔盒
  7045. _formdiv = new U.UF.UI.form(
  7046. "魔盒识字",
  7047. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7048. "id": "mohe",
  7049. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //创建窗体
  7054. _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); } }
  7055. break;
  7056. case "24game": //24点
  7057. _formdiv = new U.UF.UI.form(
  7058. "24点",
  7059. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7060. "id": "24game",
  7061. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //创建窗体
  7066. _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); } }
  7067. break;
  7068. case "case":
  7069. _formdiv = new U.UF.UI.form(
  7070. "课程进展",
  7071. $$("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 }), {
  7072. "id": "case",
  7073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, { "style": { "height": "36px" } }).form; //创建窗体
  7078. _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); } }
  7079. break;
  7080. case "snf":
  7081. _formdiv = new U.UF.UI.form(
  7082. "赛诺梵",
  7083. $$("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" }), {
  7084. "id": "snf",
  7085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7086. "onresize": function () { }
  7087. }, {
  7088. closecallback: function () { }
  7089. }, { "style": { "height": "36px" } }).form; //创建窗体
  7090. _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); } }
  7091. break;
  7092. case "hanFamily":
  7093. _formdiv = new U.UF.UI.form(
  7094. "汉字家族",
  7095. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7096. "id": "hanFamily",
  7097. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, { "style": { "height": "36px" } }).form; //创建窗体
  7102. _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); } }
  7103. break;
  7104. case "hanClassics":
  7105. _formdiv = new U.UF.UI.form(
  7106. "国学经典",
  7107. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7108. "id": "hanClassics",
  7109. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7110. "onresize": function () { }
  7111. }, {
  7112. closecallback: function () { }
  7113. }, { "style": { "height": "36px" } }).form; //创建窗体
  7114. _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); } }
  7115. break;
  7116. case "hanTraining":
  7117. _formdiv = new U.UF.UI.form(
  7118. "笔画训练",
  7119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7120. "id": "hanTraining",
  7121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7122. "onresize": function () { }
  7123. }, {
  7124. closecallback: function () { }
  7125. }, { "style": { "height": "36px" } }).form; //创建窗体
  7126. _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); } }
  7127. break;
  7128. case "hanClass":
  7129. _formdiv = new U.UF.UI.form(
  7130. "书法课堂",
  7131. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7132. "id": "hanClass",
  7133. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7134. "onresize": function () { }
  7135. }, {
  7136. closecallback: function () { }
  7137. }, { "style": { "height": "36px" } }).form; //创建窗体
  7138. _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); } }
  7139. break;
  7140. case "han":
  7141. _formdiv = new U.UF.UI.form(
  7142. "汉字宫",
  7143. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7144. "id": "han",
  7145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7146. "onresize": function () { }
  7147. }, {
  7148. closecallback: function () { }
  7149. }, { "style": { "height": "36px" } }).form; //创建窗体
  7150. _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); } }
  7151. break;
  7152. case "projectGM": //课程管理
  7153. _formdiv = new U.UF.UI.form(
  7154. "课程管理",
  7155. $$("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 }), {
  7156. "id": "projectGM",
  7157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7158. "onresize": function () { }
  7159. }, {
  7160. closecallback: function () { }
  7161. }, { "style": { "height": "36px" } }).form; //创建窗体
  7162. _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); } }
  7163. break;
  7164. case "studyGM": //课程中心
  7165. _formdiv = new U.UF.UI.form(
  7166. "课程中心",
  7167. $$("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
  7168. "id": "study",
  7169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7170. "onresize": function () { }
  7171. }, {
  7172. closecallback: function () { }
  7173. }, { "style": { "height": "36px" } }).form; //创建窗体
  7174. _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); } }
  7175. break;
  7176. // studentGM
  7177. case "studentGM": //学生管理
  7178. _formdiv = new U.UF.UI.form(
  7179. "学生管理",
  7180. $$("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 }), {
  7181. "id": "studentGM",
  7182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7183. "onresize": function () { }
  7184. }, {
  7185. closecallback: function () { }
  7186. }, { "style": { "height": "36px" } }).form; //创建窗体
  7187. _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); } }
  7188. break;
  7189. case "evaluateGM": //学生评价
  7190. _formdiv = new U.UF.UI.form(
  7191. "学生评价",
  7192. $$("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 }), {
  7193. "id": "evaluateGM",
  7194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, { "style": { "height": "36px" } }).form; //创建窗体
  7199. _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); } }
  7200. break;
  7201. // classGM
  7202. case "classGM": //班级管理
  7203. _formdiv = new U.UF.UI.form(
  7204. "班级管理",
  7205. $$("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 }), {
  7206. "id": "classGM",
  7207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7208. "onresize": function () { }
  7209. }, {
  7210. closecallback: function () { }
  7211. }, { "style": { "height": "36px" } }).form; //创建窗体
  7212. _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); } }
  7213. break;
  7214. // dataGM
  7215. case "dataGM":
  7216. _formdiv = new U.UF.UI.form(
  7217. "我的资料",
  7218. $$("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 }), {
  7219. "id": "dataGM",
  7220. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7221. "onresize": function () { }
  7222. }, {
  7223. closecallback: function () { }
  7224. }, { "style": { "height": "36px" } }).form; //创建窗体
  7225. _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); } }
  7226. break;
  7227. // caseGM
  7228. case "caseGM": //课程进展
  7229. _formdiv = new U.UF.UI.form(
  7230. "课程进展",
  7231. $$("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 }), {
  7232. "id": "caseGM",
  7233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7234. "onresize": function () { }
  7235. }, {
  7236. closecallback: function () { }
  7237. }, { "style": { "height": "36px" } }).form; //创建窗体
  7238. _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); } }
  7239. break;
  7240. // meterialGM
  7241. case "meterialGM": //素材库
  7242. _formdiv = new U.UF.UI.form(
  7243. "素材库",
  7244. $$("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 }), {
  7245. "id": "meterialGM",
  7246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _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); } }
  7252. break;
  7253. // evaluateSGM
  7254. case "evaluateSGM": //我的评价
  7255. _formdiv = new U.UF.UI.form(
  7256. "我的评价",
  7257. $$("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 }), {
  7258. "id": "evaluateSGM",
  7259. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7260. "onresize": function () { }
  7261. }, {
  7262. closecallback: function () { }
  7263. }, { "style": { "height": "36px" } }).form; //创建窗体
  7264. _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); } }
  7265. break;
  7266. case "jupyter": //jupyter
  7267. _formdiv = new U.UF.UI.form(
  7268. "jupyter",
  7269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7270. "id": "jupyter",
  7271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7272. "onresize": function () { }
  7273. }, {
  7274. closecallback: function () { }
  7275. }, { "style": { "height": "36px" } }).form; //创建窗体
  7276. _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); } }
  7277. break;
  7278. case "number": //数字实验室
  7279. _formdiv = new U.UF.UI.form(
  7280. "数字实验室",
  7281. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7282. "id": "number",
  7283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7284. "onresize": function () { }
  7285. }, {
  7286. closecallback: function () { }
  7287. }, { "style": { "height": "36px" } }).form; //创建窗体
  7288. _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); } }
  7289. break;
  7290. case "studentCourse": //项目管理 学生
  7291. _formdiv = new U.UF.UI.form(
  7292. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7293. $$("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 }), {
  7294. "id": "studentCourse",
  7295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7296. "onresize": function () { }
  7297. }, {
  7298. closecallback: function () { }
  7299. }, { "style": { "height": "36px" } }).form; //创建窗体
  7300. _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); } }
  7301. break;
  7302. case "studentCourseS": //项目管理 老师
  7303. _formdiv = new U.UF.UI.form(
  7304. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7305. $$("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 }), {
  7306. "id": "studentCourseS",
  7307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7308. "onresize": function () { }
  7309. }, {
  7310. closecallback: function () { }
  7311. }, { "style": { "height": "36px" } }).form; //创建窗体
  7312. _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); } }
  7313. break;
  7314. case "studentIndex": //项目中心
  7315. _formdiv = new U.UF.UI.form(
  7316. "项目中心",
  7317. $$("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 }), {
  7318. "id": "studentIndex",
  7319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7320. "onresize": function () { }
  7321. }, {
  7322. closecallback: function () { }
  7323. }, { "style": { "height": "36px" } }).form; //创建窗体
  7324. _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); } }
  7325. break;
  7326. case "CaseDesignS":
  7327. _formdiv = new U.UF.UI.form(
  7328. "项目进展",
  7329. $$("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 }), {
  7330. "id": "case",
  7331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7332. "onresize": function () { }
  7333. }, {
  7334. closecallback: function () { }
  7335. }, { "style": { "height": "36px" } }).form; //创建窗体
  7336. _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); } }
  7337. break;
  7338. case "tcStudent": //腾讯学生管理
  7339. _formdiv = new U.UF.UI.form(
  7340. "学生管理",
  7341. $$("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 }), {
  7342. "id": "tcStudent",
  7343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7344. "onresize": function () { }
  7345. }, {
  7346. closecallback: function () { }
  7347. }, { "style": { "height": "36px" } }).form; //创建窗体
  7348. _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); } }
  7349. break;
  7350. case "tcSchool": //腾讯学校管理
  7351. _formdiv = new U.UF.UI.form(
  7352. "学校管理",
  7353. $$("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 }), {
  7354. "id": "tcSchool",
  7355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, { "style": { "height": "36px" } }).form; //创建窗体
  7360. _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); } }
  7361. break;
  7362. case "tcTeacher": //腾讯学校管理
  7363. _formdiv = new U.UF.UI.form(
  7364. "教师管理",
  7365. $$("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 }), {
  7366. "id": "tcTeacher",
  7367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, { "style": { "height": "36px" } }).form; //创建窗体
  7372. _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); } }
  7373. break;
  7374. case "teacher":
  7375. _formdiv = new U.UF.UI.form(
  7376. "教师管理",
  7377. $$("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 }), {
  7378. "id": "teacher",
  7379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7380. "onresize": function () { }
  7381. }, {
  7382. closecallback: function () { }
  7383. }, { "style": { "height": "36px" } }).form; //创建窗体
  7384. _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); } }
  7385. break;
  7386. case "tcData": //腾讯我的资料
  7387. _formdiv = new U.UF.UI.form(
  7388. "我的资料",
  7389. $$("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 }), {
  7390. "id": "tcData",
  7391. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7392. "onresize": function () { }
  7393. }, {
  7394. closecallback: function () { }
  7395. }, { "style": { "height": "36px" } }).form; //创建窗体
  7396. _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); } }
  7397. break;
  7398. case "tcNotice": //腾讯消息通知
  7399. _formdiv = new U.UF.UI.form(
  7400. "消息通知",
  7401. $$("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 }), {
  7402. "id": "tcNotice",
  7403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7404. "onresize": function () { }
  7405. }, {
  7406. closecallback: function () { }
  7407. }, { "style": { "height": "36px" } }).form; //创建窗体
  7408. _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); } }
  7409. break;
  7410. case "myReport": //好友打开
  7411. _formdiv = new U.UF.UI.form(
  7412. "我的评价",
  7413. $$("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 }), {
  7414. "id": "myReport",
  7415. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7416. "onresize": function () { }
  7417. }, {
  7418. closecallback: function () { }
  7419. }, { "style": { "height": "36px" } }).form; //创建窗体
  7420. _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); } }
  7421. break;
  7422. case "learnAna": //好友打开
  7423. _formdiv = new U.UF.UI.form(
  7424. "学习分析",
  7425. $$("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 }), {
  7426. "id": "learnAna",
  7427. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7428. "onresize": function () { }
  7429. }, {
  7430. closecallback: function () { }
  7431. }, { "style": { "height": "36px" } }).form; //创建窗体
  7432. _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); } }
  7433. break;
  7434. case "AIChat": //AI共创
  7435. _formdiv = new U.UF.UI.form(
  7436. "AI共创",
  7437. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7438. "id": "AIChat",
  7439. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7440. "onresize": function () { }
  7441. }, {
  7442. istop: true,
  7443. closecallback: function () { $("#aichat_icon").remove(); },
  7444. narrowcallback: function () {
  7445. if (!$("#aichat_icon")[0]) {
  7446. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7447. }
  7448. },
  7449. }, { "style": { "height": "36px" } }).form; //创建窗体
  7450. _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); } }
  7451. break;
  7452. case "ainew": //AI共创
  7453. _formdiv = new U.UF.UI.form(
  7454. "AI协同",
  7455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7456. "id": "ainew",
  7457. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7458. "onresize": function () { }
  7459. }, {
  7460. closecallback: function () { }
  7461. }, { "style": { "height": "36px" } }).form; //创建窗体
  7462. _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); } }
  7463. break;
  7464. case "gpt4": //gpt4
  7465. _formdiv = new U.UF.UI.form(
  7466. "AI助手",
  7467. $$("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 }), {
  7468. "id": "gpt4",
  7469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7470. "onresize": function () { }
  7471. }, {
  7472. closecallback: function () { }
  7473. }, { "style": { "height": "36px" } }).form; //创建窗体
  7474. _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); } }
  7475. break;
  7476. case "aigpt": //gpt4
  7477. _formdiv = new U.UF.UI.form(
  7478. "AI助手+",
  7479. $$("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 }), {
  7480. "id": "aigpt",
  7481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7482. "onresize": function () { }
  7483. }, {
  7484. closecallback: function () {
  7485. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7486. }
  7487. }, { "style": { "height": "36px" } }).form; //创建窗体
  7488. _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); } }
  7489. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7490. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7491. })
  7492. break;
  7493. case "aiKnowledge": //aiKnowledge
  7494. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7495. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7496. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7497. }
  7498. _formdiv = new U.UF.UI.form(
  7499. "知识建构",
  7500. $$("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 }), {
  7501. "id": "aiKnowledge",
  7502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7503. "onresize": function () { }
  7504. }, {
  7505. closecallback: function () { }
  7506. }, { "style": { "height": "36px" } }).form; //创建窗体
  7507. _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); } }
  7508. break;
  7509. case "futureClass": //AI共创
  7510. _formdiv = new U.UF.UI.form(
  7511. "协同建构",
  7512. $$("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
  7513. "id": "synergyCourse",
  7514. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () {
  7518. $("iframe", _formdiv)[0].contentWindow.loginout();
  7519. }
  7520. }, { "style": { "height": "36px" } }).form; //创建窗体
  7521. _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); } }
  7522. break;
  7523. case "aiagent": //ai agent
  7524. _formdiv = new U.UF.UI.form(
  7525. "AI Agent",
  7526. $$("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" }), {
  7527. "id": "AIAgent",
  7528. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7529. "onresize": function () { }
  7530. }, {
  7531. closecallback: function () { }
  7532. }, { "style": { "height": "36px" } }).form; //创建窗体
  7533. _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); } }
  7534. break;
  7535. case "dataBoard": //数据看板
  7536. _formdiv = new U.UF.UI.form(
  7537. "数据看板",
  7538. $$("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 }), {
  7539. "id": "dataBoard",
  7540. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7541. "onresize": function () { }
  7542. }, {
  7543. closecallback: function () { }
  7544. }, { "style": { "height": "36px" } }).form; //创建窗体
  7545. _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); } }
  7546. break;
  7547. case "dataBoardSies": //数据融合
  7548. _formdiv = new U.UF.UI.form(
  7549. "数据融合",
  7550. $$("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 }), {
  7551. "id": "dataBoardSies",
  7552. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7553. "onresize": function () { }
  7554. }, {
  7555. closecallback: function () { }
  7556. }, { "style": { "height": "36px" } }).form; //创建窗体
  7557. _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); } }
  7558. break;
  7559. case "dataBoardNew": //数据看板
  7560. _formdiv = new U.UF.UI.form(
  7561. "综合看板",
  7562. $$("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 }), {
  7563. "id": "dataBoardNew",
  7564. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //创建窗体
  7569. _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); } }
  7570. break;
  7571. case "dataBoardTest": //数据看板
  7572. _formdiv = new U.UF.UI.form(
  7573. "评测看板",
  7574. $$("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 }), {
  7575. "id": "dataBoardTest",
  7576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, { "style": { "height": "36px" } }).form; //创建窗体
  7581. _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); } }
  7582. break;
  7583. case "AIAnalyse": //AI共创
  7584. _formdiv = new U.UF.UI.form(
  7585. "AI分析",
  7586. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7587. "id": "AIAnalyse",
  7588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7589. "onresize": function () { }
  7590. }, {
  7591. closecallback: function () { }
  7592. }, { "style": { "height": "36px" } }).form; //创建窗体
  7593. _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); } }
  7594. break;
  7595. case "studioCourse": //AI共创
  7596. _formdiv = new U.UF.UI.form(
  7597. "工作管理",
  7598. $$("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 }), {
  7599. "id": "studioCourse",
  7600. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7601. "onresize": function () { }
  7602. }, {
  7603. closecallback: function () { }
  7604. }, { "style": { "height": "36px" } }).form; //创建窗体
  7605. _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); } }
  7606. break;
  7607. case "studioIndex": //AI共创
  7608. _formdiv = new U.UF.UI.form(
  7609. "工作中心",
  7610. $$("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 }), {
  7611. "id": "studioIndex",
  7612. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7613. "onresize": function () { }
  7614. }, {
  7615. closecallback: function () { }
  7616. }, { "style": { "height": "36px" } }).form; //创建窗体
  7617. _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); } }
  7618. break;
  7619. case "source":
  7620. _formdiv = new U.UF.UI.form(
  7621. "教学资源",
  7622. $$("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 }), {
  7623. "id": "source",
  7624. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7625. "onresize": function () { }
  7626. }, {
  7627. closecallback: function () { }
  7628. }, { "style": { "height": "36px" } }).form; //创建窗体
  7629. _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); } }
  7630. break;
  7631. case "testTeacher":
  7632. _formdiv = new U.UF.UI.form(
  7633. "智能表单",
  7634. $$("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 }), {
  7635. "id": "testTeacher",
  7636. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7637. "onresize": function () { }
  7638. }, {
  7639. closecallback: function () { }
  7640. }, { "style": { "height": "36px" } }).form; //创建窗体
  7641. _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); } }
  7642. break;
  7643. case "testStudent":
  7644. _formdiv = new U.UF.UI.form(
  7645. "教师中心",
  7646. $$("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 }), {
  7647. "id": "testStudent",
  7648. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7649. "onresize": function () { }
  7650. }, {
  7651. closecallback: function () { }
  7652. }, { "style": { "height": "36px" } }).form; //创建窗体
  7653. _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); } }
  7654. break;
  7655. case "testTeacherSies":
  7656. _formdiv = new U.UF.UI.form(
  7657. "教师管理",
  7658. $$("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 }), {
  7659. "id": "testTeacherSies",
  7660. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7661. "onresize": function () { }
  7662. }, {
  7663. closecallback: function () { }
  7664. }, { "style": { "height": "36px" } }).form; //创建窗体
  7665. _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); } }
  7666. break;
  7667. case "testStudentSies":
  7668. _formdiv = new U.UF.UI.form(
  7669. "教师中心",
  7670. $$("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 }), {
  7671. "id": "testStudentSies",
  7672. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7673. "onresize": function () { }
  7674. }, {
  7675. closecallback: function () { }
  7676. }, { "style": { "height": "36px" } }).form; //创建窗体
  7677. _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); } }
  7678. break;
  7679. case "ytpbl": //消息通知
  7680. _formdiv = new U.UF.UI.form(
  7681. "案例征集",
  7682. $$("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 }), {
  7683. "id": "ytpbl",
  7684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7685. "onresize": function () { }
  7686. }, {
  7687. closecallback: function () { }
  7688. }, { "style": { "height": "36px" } }).form; //创建窗体
  7689. _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); } }
  7690. // 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");
  7691. break;
  7692. case "aiCourseResource": //人工智能窗体
  7693. _formdiv = new U.UF.UI.form(
  7694. false,
  7695. $$("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 }), {
  7696. "id": "aiCourseResource",
  7697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7698. "onresize": function () { },
  7699. "isdrag": false,
  7700. }, {
  7701. closecallback: function () { }
  7702. }, { "style": { "height": "36px" } }).form; //创建窗体
  7703. _taskbar = ''
  7704. break;
  7705. case "szdjgCocooroboX": //图形化编程
  7706. _formdiv = new U.UF.UI.form(
  7707. "图形化编程",
  7708. $$("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" }), {
  7709. "id": "szdjgCocooroboX",
  7710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7711. "onresize": function () { }
  7712. }, {
  7713. closecallback: function () { }
  7714. }, { "style": { "height": "36px" } }).form; //创建窗体
  7715. _taskbar = ''
  7716. break;
  7717. case "szdjgPython": //python编程
  7718. _formdiv = new U.UF.UI.form(
  7719. "Python编程",
  7720. $$("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" }), {
  7721. "id": "szdjgPython",
  7722. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7723. "onresize": function () { }
  7724. }, {
  7725. closecallback: function () { }
  7726. }, { "style": { "height": "36px" } }).form; //创建窗体
  7727. _taskbar = ''
  7728. break;
  7729. case "Record":
  7730. _formdiv = new U.UF.UI.form(
  7731. "观察记录",
  7732. $$("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 }), {
  7733. "id": "Record",
  7734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7735. "onresize": function () { }
  7736. }, {
  7737. closecallback: function () { }
  7738. }, { "style": { "height": "36px" } }).form; //创建窗体
  7739. _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); } }
  7740. break;
  7741. case "aigptCourse":
  7742. _formdiv = new U.UF.UI.form(
  7743. "AI智能体",
  7744. $$("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' }), {
  7745. "id": "aigptCourse",
  7746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7747. "onresize": function () { }
  7748. }, {
  7749. closecallback: function () { }
  7750. }, { "style": { "height": "36px" } }).form; //创建窗体
  7751. _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); } }
  7752. break;
  7753. case "classroomObservation":
  7754. _formdiv = new U.UF.UI.form(
  7755. "课堂观察",
  7756. $$("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 }), {
  7757. "id": "classroomObservation",
  7758. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7759. "onresize": function () { }
  7760. }, {
  7761. closecallback: function () { }
  7762. }, { "style": { "height": "36px" } }).form; //创建窗体
  7763. _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); } }
  7764. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7765. break;
  7766. case "pblCourse":
  7767. _formdiv = new U.UF.UI.form(
  7768. "学生PBL",
  7769. $$("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 }), {
  7770. "id": "pblCourse",
  7771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7772. "onresize": function () { }
  7773. }, {
  7774. closecallback: function () { }
  7775. }, { "style": { "height": "36px" } }).form; //创建窗体
  7776. _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); } }
  7777. break;
  7778. case "appStore":
  7779. U.MD.D.addOp('', 'cocoflowOpen', '')
  7780. _formdiv = new U.UF.UI.form(
  7781. "CocoFlow",
  7782. $$("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.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7783. "id": "appStore",
  7784. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7785. "onresize": function () { }
  7786. }, {
  7787. closecallback: function () { }
  7788. }, { "style": { "height": "36px" } }).form; //创建窗体
  7789. _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); } }
  7790. break;
  7791. case "sassPlatform":
  7792. _formdiv = new U.UF.UI.form(
  7793. "Sass通用后台管理",
  7794. $$("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 }), {
  7795. "id": "sassPlatform",
  7796. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7797. "onresize": function () { }
  7798. }, {
  7799. closecallback: function () { }
  7800. }, { "style": { "height": "36px" } }).form; //创建窗体
  7801. _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); } }
  7802. break;
  7803. case "EDU":
  7804. _formdiv = new U.UF.UI.form(
  7805. "EDU",
  7806. $$("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" }), {
  7807. "id": "EDU",
  7808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7809. "onresize": function () { }
  7810. }, {
  7811. closecallback: function () { }
  7812. }, { "style": { "height": "36px" } }).form; //创建窗体
  7813. _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); } }
  7814. break;
  7815. case "knowledge":
  7816. _formdiv = new U.UF.UI.form(
  7817. "知识库",
  7818. $$("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 }), {
  7819. "id": "knowledge",
  7820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7821. "onresize": function () { }
  7822. }, {
  7823. closecallback: function () { }
  7824. }, { "style": { "height": "36px" } }).form; //创建窗体
  7825. _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); } }
  7826. break;
  7827. case "userExamine":
  7828. _formdiv = new U.UF.UI.form(
  7829. "账号申请",
  7830. $$("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" }), {
  7831. "id": "userExamine",
  7832. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7833. "onresize": function () { }
  7834. }, {
  7835. closecallback: function () { }
  7836. }, { "style": { "height": "36px" } }).form; //创建窗体
  7837. break;
  7838. case "cocoflowDeskTop": //cocoflowDeskTop
  7839. _formdiv = new U.UF.UI.form(
  7840. false,
  7841. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7842. "id": "cocoflowDeskTop",
  7843. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7844. "onresize": function () { },
  7845. }, {
  7846. closecallback: function () { },
  7847. "isdrag": false,
  7848. }, { "style": { "height": "36px" } }).form; //创建窗体
  7849. _taskbar = ''
  7850. break;
  7851. case "liyuanLogin": //liyuanLogin
  7852. _formdiv = new U.UF.UI.form(
  7853. false,
  7854. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7855. "id": "liyuanLogin",
  7856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7857. "onresize": function () { },
  7858. }, {
  7859. closecallback: function () { },
  7860. isdrag: false,
  7861. isstretching: false,
  7862. isenlarge: false,
  7863. isnarrow: false
  7864. }, { "style": { "height": "36px" } }).form; //创建窗体
  7865. _taskbar = ''
  7866. break;
  7867. case "updatePaDialog":
  7868. _formdiv = new U.UF.UI.form(
  7869. "密码修改",
  7870. $$("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://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7871. "id": "updatePaDialog",
  7872. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7873. "onresize": function () { },
  7874. }, {
  7875. closecallback: function () { },
  7876. isclose: false,
  7877. isdrag: false,
  7878. isstretching: false,
  7879. isenlarge: false,
  7880. isnarrow: false
  7881. }, { "style": { "height": "36px" } }).form; //创建窗体
  7882. break;
  7883. }
  7884. //U.MD.D.I.openClick(str);
  7885. //如果有任务栏信息
  7886. if (_taskbar) {
  7887. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7888. }
  7889. if (iframeBool) {
  7890. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7891. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7892. // console.log("iframe进入");
  7893. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7894. // };
  7895. setTimeout(() => {
  7896. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7897. }, 2000);
  7898. }
  7899. }
  7900. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7901. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7902. _userinfo = US.userInfo, //登录用户信息
  7903. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7904. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7905. let iframeBool = true;
  7906. let queryString = ''
  7907. if (array && array.length) {
  7908. const paramsMap = {
  7909. userid: _userid,
  7910. org: _org,
  7911. oid: _oid,
  7912. type: _type,
  7913. role: _role,
  7914. classId: _classId,
  7915. TscreenType: _TscreenType,
  7916. SscreenType: _SscreenType
  7917. };
  7918. const canshu = array
  7919. .filter(param => paramsMap[param] !== undefined)
  7920. .map(param => `${param}=${paramsMap[param]}`);
  7921. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7922. }
  7923. let _url = url + queryString
  7924. if (U.UF.UI.form.allForm[id]) {
  7925. iframeBool = false
  7926. }
  7927. _formdiv = new U.UF.UI.form(
  7928. false,
  7929. $$("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 }),
  7930. {
  7931. "id": id,
  7932. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  7933. "onresize": function () { },
  7934. },
  7935. {
  7936. closecallback: function () { },
  7937. isdrag: false,
  7938. isstretching: false,
  7939. isenlarge: false,
  7940. isnarrow: false
  7941. },
  7942. { "style": { "height": "36px" } },
  7943. undefined,
  7944. undefined,
  7945. dom
  7946. ).form
  7947. }
  7948. // U.MD.D.I.openClick = function(str){
  7949. // var click = '';
  7950. // switch(str){
  7951. // case 'friend':
  7952. // click = '我的好友';
  7953. // break;
  7954. // case 'domain':
  7955. // click = '域名管理';
  7956. // break;
  7957. // case 'disk':
  7958. // click = '我的云盘';
  7959. // break;
  7960. // case 'word':
  7961. // click = 'Word';
  7962. // break;
  7963. // case 'excel':
  7964. // click = 'Execl';
  7965. // break;
  7966. // case 'txt':
  7967. // click = '文本文件';
  7968. // break;
  7969. // case 'lookupFriend':
  7970. // click = '查找好友';
  7971. // break;
  7972. // case 'ftp':
  7973. // click = 'FTP';
  7974. // break;
  7975. // case 'group':
  7976. // click = '群组';
  7977. // break;
  7978. // case 'set':
  7979. // click = '我的设置';
  7980. // break;
  7981. // case 'systemSet':
  7982. // click = '系统设置';
  7983. // break;
  7984. // case 'boomYun':
  7985. // click = '互联办公';
  7986. // break;
  7987. // case 'xz':
  7988. // click = '云端下载';
  7989. // break;
  7990. // case 'client':
  7991. // click = '有思浏览器';
  7992. // break;
  7993. // case 'backEndProgramming':
  7994. // click = '在线后台编程';
  7995. // break;
  7996. // case 'frontEndProgramming':
  7997. // click = '在线前端编程';
  7998. // break;
  7999. // default: break;
  8000. // }
  8001. // if(U.MD.D.I.Ip && click){
  8002. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8003. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8004. // })
  8005. // }
  8006. // }
  8007. /**
  8008. *函数作用:ajax简易函数,使用post格式
  8009. *@param url {data} 后台地址
  8010. *@param data {data} 参数json
  8011. *@param fn {data} 回调函数
  8012. *
  8013. */
  8014. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8015. // var xhr = new XMLHttpRequest();
  8016. // xhr.open("GET",url,true);
  8017. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8018. // xhr.onreadystatechange = function(){
  8019. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8020. // fn.call(this,xhr.responseText);
  8021. // }
  8022. // };
  8023. // xhr.send();
  8024. // }
  8025. /*判断是否是内网IP*/
  8026. // U.MD.D.I.isInnerIPFn = function(str){
  8027. // var curPageUrl = str;
  8028. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8029. // curPageUrl =curPageUrl.replace(reg1,'');
  8030. // // console.log('curPageUrl-1 '+curPageUrl);
  8031. // var reg2 = /\:+/g;//替换冒号为一点
  8032. // curPageUrl =curPageUrl.replace(reg2,'.');
  8033. // // console.log('curPageUrl-2 '+curPageUrl);
  8034. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8035. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8036. // if(curPageUrl[2] != '16'){
  8037. // return ipAddress;
  8038. // }else{
  8039. // return false;
  8040. // }
  8041. // }
  8042. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8043. // //compatibility for firefox and chrome
  8044. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8045. // var pc = new myPeerConnection({
  8046. // iceServers: []
  8047. // }),
  8048. // noop = function() {},
  8049. // localIPs = {},
  8050. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8051. // key;
  8052. // function iterateIP(ip) {
  8053. // if (!localIPs[ip]) onNewIP(ip);
  8054. // localIPs[ip] = true;
  8055. // }
  8056. // //create a bogus data channel
  8057. // pc.createDataChannel("");
  8058. // // create offer and set local description
  8059. // pc.createOffer().then(function(sdp) {
  8060. // sdp.sdp.split('\n').forEach(function(line) {
  8061. // if (line.indexOf('candidate') < 0) return;
  8062. // line.match(ipRegex).forEach(iterateIP);
  8063. // });
  8064. // pc.setLocalDescription(sdp, noop, noop);
  8065. // }).catch(function(reason) {
  8066. // // An error occurred, so handle the failure to connect
  8067. // });
  8068. // //sten for candidate events
  8069. // pc.onicecandidate = function(ice) {
  8070. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8071. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8072. // };
  8073. // }
  8074. // U.MD.D.I.getUserIpBool = function(callback){
  8075. // U.MD.D.I.getUserIP(function(ip){
  8076. // alert("Got IP! :" + ip);
  8077. // });
  8078. //}
  8079. //#endregion
  8080. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8081. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8082. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8083. _userinfo = US.userInfo, //登录用户信息
  8084. _userid = US.userInfo.userid //登录用户id
  8085. let _iframe;
  8086. let _cid = cid,
  8087. _stage = stage,
  8088. _task = task,
  8089. _tool = tool;
  8090. var _jie = $$("div", {
  8091. "style": {
  8092. "position": "absolute",
  8093. "bottom": "50px",
  8094. "right": "50px",
  8095. "zIndex": "9999",
  8096. "backgroundColor": "#2268bc",
  8097. "color": "#fff",
  8098. "padding": "12px 20px",
  8099. "cursor": "pointer",
  8100. "borderRadius": "4px",
  8101. },
  8102. "innerHTML": "提交作业"
  8103. })
  8104. let aTool = ''
  8105. let _loading = document.createElement('div')
  8106. _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;"
  8107. // _loading.id = "";
  8108. let _lchild = document.createElement('div')
  8109. let _limg = document.createElement('img')
  8110. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8111. _limg.style = "width: 26px;margin-right: 10px;"
  8112. _lchild.appendChild(_limg)
  8113. let _lspan = document.createElement('span')
  8114. _lspan.innerHTML = "上传中..."
  8115. _lchild.appendChild(_lspan)
  8116. _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%);"
  8117. _loading.appendChild(_lchild)
  8118. var _box = $$('div', {
  8119. "style": {
  8120. "position": "relative",
  8121. "width": "100%",
  8122. "height": "100%",
  8123. },
  8124. })
  8125. _box.appendChild(_loading)
  8126. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8127. switch (str) {
  8128. case "whiteboard":
  8129. aTool = 1;
  8130. _iframe = $$("iframe", {
  8131. "frameborder": "no",
  8132. "border": "0",
  8133. "scrolling ": "no",
  8134. "style": {
  8135. "cssText": "border:0;width:100%;height:100%"
  8136. },
  8137. "src": "https://beta.iwb.cocorobo.cn/"
  8138. })
  8139. _box.appendChild(_iframe);
  8140. _box.appendChild(_jie);
  8141. _formdiv = new U.UF.UI.form(
  8142. "电子白板",
  8143. _box, {
  8144. "id": "whiteboard" + cid + stage + task + tool,
  8145. "style": {
  8146. "width": "90%",
  8147. "height": "90%",
  8148. "overflow": 'hidden'
  8149. },
  8150. "onresize": function () { }
  8151. }, {
  8152. closecallback: function () { }
  8153. }, {
  8154. "style": {
  8155. "height": "36px"
  8156. }
  8157. }).form; //创建窗体
  8158. _taskbar = {
  8159. "id": str + _formdiv.id,
  8160. "style": {
  8161. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8162. },
  8163. "name": "电子白板",
  8164. "forms": _formdiv,
  8165. "click": function () {
  8166. U.MD.D.I.openApplication(str, obj, info);
  8167. }
  8168. }
  8169. break;
  8170. case "mind":
  8171. aTool = 3;
  8172. _iframe = $$("iframe", {
  8173. "frameborder": "no",
  8174. "border": "0",
  8175. "scrolling ": "no",
  8176. "style": {
  8177. "cssText": "border:0;width:100%;height:100%"
  8178. },
  8179. "src": "/kityminder-editor/dist/index.html"
  8180. })
  8181. _box.appendChild(_iframe);
  8182. _box.appendChild(_jie);
  8183. _formdiv = new U.UF.UI.form(
  8184. "思维导图",
  8185. _box, { //"/jsmind/example/demo.html"
  8186. "id": "mind" + cid + stage + task + tool,
  8187. "style": {
  8188. "width": "90%",
  8189. "height": "90%",
  8190. "overflow": 'hidden'
  8191. },
  8192. "onresize": function () { }
  8193. }, {
  8194. closecallback: function () { }
  8195. }, {
  8196. "style": {
  8197. "height": "36px"
  8198. }
  8199. }).form; //创建窗体
  8200. _taskbar = {
  8201. "id": str + _formdiv.id,
  8202. "style": {
  8203. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8204. },
  8205. "name": "思维导图",
  8206. "forms": _formdiv,
  8207. "click": function () {
  8208. U.MD.D.I.openApplication(str, obj, info);
  8209. }
  8210. }
  8211. break;
  8212. case "MindMap":
  8213. aTool = 3;
  8214. _iframe = $$("iframe", {
  8215. "frameborder": "no",
  8216. "border": "0",
  8217. "scrolling ": "no",
  8218. "style": {
  8219. "cssText": "border:0;width:100%;height:100%"
  8220. },
  8221. "src": "//cloud.cocorobo.cn/mind/"
  8222. })
  8223. _box.appendChild(_iframe);
  8224. _box.appendChild(_jie);
  8225. _formdiv = new U.UF.UI.form(
  8226. "思维导图",
  8227. _box, { //"/jsmind/example/demo.html"
  8228. "id": "mind" + cid + stage + task + tool,
  8229. "style": {
  8230. "width": "90%",
  8231. "height": "90%",
  8232. "overflow": 'hidden'
  8233. },
  8234. "onresize": function () { }
  8235. }, {
  8236. closecallback: function () { }
  8237. }, {
  8238. "style": {
  8239. "height": "36px"
  8240. }
  8241. }).form; //创建窗体
  8242. _taskbar = {
  8243. "id": str + _formdiv.id,
  8244. "style": {
  8245. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8246. },
  8247. "name": "思维导图",
  8248. "forms": _formdiv,
  8249. "click": function () {
  8250. U.MD.D.I.openApplication(str, obj, info);
  8251. }
  8252. }
  8253. break;
  8254. case "doc":
  8255. aTool = 6;
  8256. _iframe = $$("iframe", {
  8257. "frameborder": "no",
  8258. "border": "0",
  8259. "scrolling ": "no",
  8260. "style": {
  8261. "cssText": "border:0;width:100%;height:100%"
  8262. },
  8263. "src": "/Office/Word/WordEditArea.htm"
  8264. })
  8265. _box.appendChild(_iframe);
  8266. _box.appendChild(_jie);
  8267. _formdiv = new U.UF.UI.form(
  8268. "协同文档",
  8269. _box, {
  8270. "id": "doc" + cid + stage + task + tool,
  8271. "style": {
  8272. "width": "90%",
  8273. "height": "90%",
  8274. "overflow": 'hidden'
  8275. },
  8276. "onresize": function () { }
  8277. }, {
  8278. closecallback: function () { }
  8279. }, {
  8280. "style": {
  8281. "height": "36px"
  8282. }
  8283. }).form; //创建窗体
  8284. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8285. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8286. })
  8287. _taskbar = {
  8288. "id": str + _formdiv.id,
  8289. "style": {
  8290. "backgroundImage": "url(/img/icon/doc.png)"
  8291. },
  8292. "name": "协同文档",
  8293. "forms": _formdiv,
  8294. "click": function () {
  8295. U.MD.D.I.openApplication(str, obj, info);
  8296. }
  8297. }
  8298. break;
  8299. case "mindNetwork": //好友打开
  8300. aTool = 7;
  8301. _iframe = $$("iframe", {
  8302. "webkitallowfullscreen": "",
  8303. "mozallowfullscreen": "",
  8304. "allowfullscreen": "",
  8305. "frameborder": "no",
  8306. "border": "0",
  8307. "scrolling ": "no",
  8308. "style": {
  8309. "cssText": "border:0; width:100%; height:100%;"
  8310. },
  8311. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8312. })
  8313. _box.appendChild(_iframe);
  8314. _box.appendChild(_jie);
  8315. _formdiv = new U.UF.UI.form(
  8316. "思维网格",
  8317. _box, {
  8318. "id": "mindNetwork" + cid + stage + task + tool,
  8319. "style": {
  8320. "width": "90%",
  8321. "height": "90%",
  8322. "overflow": 'hidden'
  8323. },
  8324. "onresize": function () { }
  8325. }, {
  8326. closecallback: function () { }
  8327. }, {
  8328. "style": {
  8329. "height": "36px"
  8330. }
  8331. }).form; //创建窗体
  8332. _taskbar = {
  8333. "id": str + _formdiv.id,
  8334. "style": {
  8335. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8336. },
  8337. "name": "思维网格",
  8338. "forms": _formdiv,
  8339. "click": function () {
  8340. U.MD.D.I.openApplication(str, obj, info);
  8341. }
  8342. }
  8343. break;
  8344. case "courseDesign":
  8345. _iframe = $$("iframe", {
  8346. "webkitallowfullscreen": "",
  8347. "mozallowfullscreen": "",
  8348. "allowfullscreen": "",
  8349. "frameborder": "no",
  8350. "border": "0",
  8351. "scrolling ": "no",
  8352. "style": {
  8353. "cssText": "border:0; width:100%; height:100%;"
  8354. },
  8355. "src": "/course-design-vue"
  8356. })
  8357. _box.appendChild(_iframe);
  8358. _box.appendChild(_jie);
  8359. _formdiv = new U.UF.UI.form(
  8360. "项目设计",
  8361. _box, {
  8362. "id": "courseDesign" + cid + stage + task + tool,
  8363. "style": {
  8364. "width": "90%",
  8365. "height": "90%",
  8366. "overflow": 'hidden'
  8367. },
  8368. "onresize": function () { }
  8369. }, {
  8370. closecallback: function () { }
  8371. }, {
  8372. "style": {
  8373. "height": "36px"
  8374. }
  8375. }).form; //创建窗体
  8376. _taskbar = {
  8377. "id": str + _formdiv.id,
  8378. "style": {
  8379. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8380. },
  8381. "name": "项目设计",
  8382. "forms": _formdiv,
  8383. "click": function () {
  8384. U.MD.D.I.openApplication(str, obj, info);
  8385. }
  8386. }
  8387. break;
  8388. }
  8389. const script1 = document.createElement("script");
  8390. script1.type = "text/javascript";
  8391. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8392. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8393. const script2 = document.createElement("script");
  8394. script2.type = "text/javascript";
  8395. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8396. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8397. const script3 = document.createElement("script");
  8398. script3.type = "text/javascript";
  8399. script3.charset = "UTF-8";
  8400. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8401. const script4 = document.createElement("script");
  8402. script4.type = "text/javascript";
  8403. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8404. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8405. if (_iframe) {
  8406. if (str == 'doc') {
  8407. _iframe = _formdiv.querySelector('iframe')
  8408. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8409. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8410. _iframe.contentWindow.document.body.appendChild(script1);
  8411. _iframe.contentWindow.document.body.appendChild(script2);
  8412. // _iframe.contentWindow.document.body.appendChild(script3);
  8413. _iframe.contentWindow.document.body.appendChild(script4);
  8414. })
  8415. if (onloadListener) {
  8416. _iframe.contentDocument.location.reload()
  8417. } else {
  8418. _iframe.contentDocument.location.reload()
  8419. }
  8420. } else if (str == 'courseDesign') {
  8421. U.UF.DL.iframeLoad(_iframe, function () {
  8422. // _iframe.contentWindow.U.MD.O.W.load();
  8423. // _iframe.contentWindow.document.body.appendChild(script1);
  8424. _iframe.contentWindow.document.body.appendChild(script2);
  8425. _iframe.contentWindow.document.body.appendChild(script4);
  8426. })
  8427. } else if (str == 'mind') {
  8428. _iframe = _formdiv.querySelector('iframe')
  8429. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8430. //
  8431. _iframe.contentWindow.document.body.appendChild(script1);
  8432. _iframe.contentWindow.document.body.appendChild(script2);
  8433. _iframe.contentWindow.document.body.appendChild(script4);
  8434. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8435. })
  8436. if (onloadListener) {
  8437. _iframe.contentDocument.location.reload()
  8438. } else {
  8439. _iframe.contentDocument.location.reload()
  8440. }
  8441. } else if (str == 'whiteboard') {
  8442. _iframe = _formdiv.querySelector('iframe')
  8443. let onloadListener = _iframe.onload = () => {
  8444. _iframe.contentWindow.document.body.appendChild(script1);
  8445. _iframe.contentWindow.document.body.appendChild(script2);
  8446. _iframe.contentWindow.document.body.appendChild(script4);
  8447. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8448. };
  8449. // if (onloadListener) {
  8450. // try {
  8451. // _iframe.src += "?cocorobo="+new Date().getTime()
  8452. // _iframe.contentWindow.document.location.reload()
  8453. // } catch (error) {
  8454. // }
  8455. // } else {
  8456. // _iframe.contentDocument.location.reload()
  8457. // }
  8458. } else {
  8459. _iframe.onload = () => {
  8460. _iframe.contentWindow.document.body.appendChild(script1);
  8461. _iframe.contentWindow.document.body.appendChild(script2);
  8462. // _iframe.contentWindow.document.body.appendChild(script3);
  8463. _iframe.contentWindow.document.body.appendChild(script4);
  8464. };
  8465. }
  8466. _jie.onclick = async () => {
  8467. let text = ''
  8468. if (aTool == 1) {
  8469. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8470. } else if (aTool == 6) {
  8471. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8472. } else if (aTool == 3) {
  8473. text = await U.MD.D.I.getEditorContent(_iframe);
  8474. }
  8475. _loading.style.display = 'flex'
  8476. console.log(_loading);
  8477. var _ajs = _iframe.contentWindow.document.createElement("script");
  8478. _ajs.type = "text/javascript";
  8479. _ajs.innerHTML =
  8480. // 'console.log(' + _loading + ');\n' +
  8481. 'var _js = document.createElement("script");\n' +
  8482. '_js.type="text/javascript";\n' +
  8483. '_js.charset="UTF-8";\n' +
  8484. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8485. "_js.onload = function(){\n" +
  8486. ' var a = document.getElementsByTagName("img")\n' +
  8487. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8488. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8489. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8490. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8491. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8492. "beforeUpload_shishi(file," +
  8493. "'" +
  8494. _userid +
  8495. "'" +
  8496. ", " +
  8497. "'" +
  8498. _cid +
  8499. "'" +
  8500. ", " +
  8501. "'" +
  8502. _stage +
  8503. "'" +
  8504. ", " +
  8505. "'" +
  8506. _task +
  8507. "'" +
  8508. ", " +
  8509. "'" +
  8510. _tool +
  8511. "'" +
  8512. ", " +
  8513. "'" +
  8514. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8515. "'" +
  8516. ", " +
  8517. "'" +
  8518. aTool +
  8519. "'" +
  8520. ", " +
  8521. "`" +
  8522. text +
  8523. "`" +
  8524. ")\n" +
  8525. " });\n" +
  8526. "}\n" +
  8527. "document.head.appendChild(_js);\n";
  8528. _iframe.contentWindow.document.head.appendChild(_ajs);
  8529. }
  8530. }
  8531. //U.MD.D.I.openClick(str);
  8532. //如果有任务栏信息
  8533. // if (_taskbar) {
  8534. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8535. // }
  8536. }
  8537. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8538. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8539. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8540. _userinfo = US.userInfo, //登录用户信息
  8541. _userid = US.userInfo.userid //登录用户id
  8542. let _iframe;
  8543. let _cid = cid,
  8544. _stage = stage,
  8545. _task = task,
  8546. _tool = tool;
  8547. var _jie = $$("div", {
  8548. "style": {
  8549. "position": "absolute",
  8550. "bottom": "50px",
  8551. "right": "50px",
  8552. "zIndex": "9999",
  8553. "backgroundColor": "#2268bc",
  8554. "color": "#fff",
  8555. "padding": "12px 20px",
  8556. "cursor": "pointer",
  8557. "borderRadius": "4px",
  8558. },
  8559. "innerHTML": "提交作业"
  8560. })
  8561. let aTool = ''
  8562. let _loading = document.createElement('div')
  8563. _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;"
  8564. // _loading.id = "";
  8565. let _lchild = document.createElement('div')
  8566. let _limg = document.createElement('img')
  8567. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8568. _limg.style = "width: 26px;margin-right: 10px;"
  8569. _lchild.appendChild(_limg)
  8570. let _lspan = document.createElement('span')
  8571. _lspan.innerHTML = "上传中..."
  8572. _lchild.appendChild(_lspan)
  8573. _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%);"
  8574. _loading.appendChild(_lchild)
  8575. let _box = $$('div', {
  8576. "style": {
  8577. "position": "relative",
  8578. "width": "100%",
  8579. "height": "100%",
  8580. },
  8581. })
  8582. _box.appendChild(_loading)
  8583. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8584. switch (str) {
  8585. case "whiteboard":
  8586. aTool = 1;
  8587. _iframe = $$("iframe", {
  8588. "frameborder": "no",
  8589. "border": "0",
  8590. "scrolling ": "no",
  8591. "style": {
  8592. "cssText": "border:0;width:100%;height:100%"
  8593. },
  8594. "src": "https://beta.iwb.cocorobo.cn/"
  8595. })
  8596. _box.appendChild(_iframe);
  8597. _box.appendChild(_jie);
  8598. _formdiv = new U.UF.UI.form(
  8599. "电子白板",
  8600. _box, {
  8601. "id": "whiteboard" + cid + stage + task + tool,
  8602. "style": {
  8603. "width": "90%",
  8604. "height": "90%",
  8605. "overflow": 'hidden'
  8606. },
  8607. "onresize": function () { }
  8608. }, {
  8609. closecallback: function () { }
  8610. }, {
  8611. "style": {
  8612. "height": "36px"
  8613. }
  8614. }).form; //创建窗体
  8615. _taskbar = {
  8616. "id": str + _formdiv.id,
  8617. "style": {
  8618. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8619. },
  8620. "name": "电子白板",
  8621. "forms": _formdiv,
  8622. "click": function () {
  8623. U.MD.D.I.openApplication(str, obj, info);
  8624. }
  8625. }
  8626. break;
  8627. case "mind":
  8628. aTool = 3;
  8629. _iframe = $$("iframe", {
  8630. "frameborder": "no",
  8631. "border": "0",
  8632. "scrolling ": "no",
  8633. "style": {
  8634. "cssText": "border:0;width:100%;height:100%"
  8635. },
  8636. "src": "/kityminder-editor/dist/index.html"
  8637. })
  8638. _box.appendChild(_iframe);
  8639. _box.appendChild(_jie);
  8640. _formdiv = new U.UF.UI.form(
  8641. "思维导图",
  8642. _box, { //"/jsmind/example/demo.html"
  8643. "id": "mind" + cid + stage + task + tool,
  8644. "style": {
  8645. "width": "90%",
  8646. "height": "90%",
  8647. "overflow": 'hidden'
  8648. },
  8649. "onresize": function () { }
  8650. }, {
  8651. closecallback: function () { }
  8652. }, {
  8653. "style": {
  8654. "height": "36px"
  8655. }
  8656. }).form; //创建窗体
  8657. _taskbar = {
  8658. "id": str + _formdiv.id,
  8659. "style": {
  8660. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8661. },
  8662. "name": "思维导图",
  8663. "forms": _formdiv,
  8664. "click": function () {
  8665. U.MD.D.I.openApplication(str, obj, info);
  8666. }
  8667. }
  8668. break;
  8669. case "MindMap":
  8670. aTool = 3;
  8671. _iframe = $$("iframe", {
  8672. "frameborder": "no",
  8673. "border": "0",
  8674. "scrolling ": "no",
  8675. "style": {
  8676. "cssText": "border:0;width:100%;height:100%"
  8677. },
  8678. "src": "//cloud.cocorobo.cn/mind/"
  8679. })
  8680. _box.appendChild(_iframe);
  8681. _box.appendChild(_jie);
  8682. _formdiv = new U.UF.UI.form(
  8683. "思维导图",
  8684. _box, { //"/jsmind/example/demo.html"
  8685. "id": "mind" + cid + stage + task + tool,
  8686. "style": {
  8687. "width": "90%",
  8688. "height": "90%",
  8689. "overflow": 'hidden'
  8690. },
  8691. "onresize": function () { }
  8692. }, {
  8693. closecallback: function () { }
  8694. }, {
  8695. "style": {
  8696. "height": "36px"
  8697. }
  8698. }).form; //创建窗体
  8699. _taskbar = {
  8700. "id": str + _formdiv.id,
  8701. "style": {
  8702. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8703. },
  8704. "name": "思维导图",
  8705. "forms": _formdiv,
  8706. "click": function () {
  8707. U.MD.D.I.openApplication(str, obj, info);
  8708. }
  8709. }
  8710. break;
  8711. case "doc":
  8712. aTool = 6;
  8713. _iframe = $$("iframe", {
  8714. "frameborder": "no",
  8715. "border": "0",
  8716. "scrolling ": "no",
  8717. "style": {
  8718. "cssText": "border:0;width:100%;height:100%"
  8719. },
  8720. "src": "/Office/Word/WordEditArea.htm"
  8721. })
  8722. _box.appendChild(_iframe);
  8723. _box.appendChild(_jie);
  8724. _formdiv = new U.UF.UI.form(
  8725. "协同文档",
  8726. _box, {
  8727. "id": "doc" + cid + stage + task + tool,
  8728. "style": {
  8729. "width": "90%",
  8730. "height": "90%",
  8731. "overflow": 'hidden'
  8732. },
  8733. "onresize": function () { }
  8734. }, {
  8735. closecallback: function () { }
  8736. }, {
  8737. "style": {
  8738. "height": "36px"
  8739. }
  8740. }).form; //创建窗体
  8741. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8742. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8743. })
  8744. _taskbar = {
  8745. "id": str + _formdiv.id,
  8746. "style": {
  8747. "backgroundImage": "url(/img/icon/doc.png)"
  8748. },
  8749. "name": "协同文档",
  8750. "forms": _formdiv,
  8751. "click": function () {
  8752. U.MD.D.I.openApplication(str, obj, info);
  8753. }
  8754. }
  8755. break;
  8756. case "mindNetwork": //好友打开
  8757. aTool = 7;
  8758. _iframe = $$("iframe", {
  8759. "webkitallowfullscreen": "",
  8760. "mozallowfullscreen": "",
  8761. "allowfullscreen": "",
  8762. "frameborder": "no",
  8763. "border": "0",
  8764. "scrolling ": "no",
  8765. "style": {
  8766. "cssText": "border:0; width:100%; height:100%;"
  8767. },
  8768. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8769. })
  8770. _box.appendChild(_iframe);
  8771. _box.appendChild(_jie);
  8772. _formdiv = new U.UF.UI.form(
  8773. "思维网格",
  8774. _box, {
  8775. "id": "mindNetwork" + cid + stage + task + tool,
  8776. "style": {
  8777. "width": "90%",
  8778. "height": "90%",
  8779. "overflow": 'hidden'
  8780. },
  8781. "onresize": function () { }
  8782. }, {
  8783. closecallback: function () { }
  8784. }, {
  8785. "style": {
  8786. "height": "36px"
  8787. }
  8788. }).form; //创建窗体
  8789. _taskbar = {
  8790. "id": str + _formdiv.id,
  8791. "style": {
  8792. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8793. },
  8794. "name": "思维网格",
  8795. "forms": _formdiv,
  8796. "click": function () {
  8797. U.MD.D.I.openApplication(str, obj, info);
  8798. }
  8799. }
  8800. break;
  8801. case "courseDesign":
  8802. _iframe = $$("iframe", {
  8803. "webkitallowfullscreen": "",
  8804. "mozallowfullscreen": "",
  8805. "allowfullscreen": "",
  8806. "frameborder": "no",
  8807. "border": "0",
  8808. "scrolling ": "no",
  8809. "style": {
  8810. "cssText": "border:0; width:100%; height:100%;"
  8811. },
  8812. "src": "/course-design-vue"
  8813. })
  8814. _box.appendChild(_iframe);
  8815. _box.appendChild(_jie);
  8816. _formdiv = new U.UF.UI.form(
  8817. "项目设计",
  8818. _box, {
  8819. "id": "courseDesign" + cid + stage + task + tool,
  8820. "style": {
  8821. "width": "90%",
  8822. "height": "90%",
  8823. "overflow": 'hidden'
  8824. },
  8825. "onresize": function () { }
  8826. }, {
  8827. closecallback: function () { }
  8828. }, {
  8829. "style": {
  8830. "height": "36px"
  8831. }
  8832. }).form; //创建窗体
  8833. _taskbar = {
  8834. "id": str + _formdiv.id,
  8835. "style": {
  8836. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8837. },
  8838. "name": "项目设计",
  8839. "forms": _formdiv,
  8840. "click": function () {
  8841. U.MD.D.I.openApplication(str, obj, info);
  8842. }
  8843. }
  8844. break;
  8845. }
  8846. const script1 = document.createElement("script");
  8847. script1.type = "text/javascript";
  8848. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8849. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8850. const script2 = document.createElement("script");
  8851. script2.type = "text/javascript";
  8852. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8853. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8854. const script3 = document.createElement("script");
  8855. script3.type = "text/javascript";
  8856. script3.charset = "UTF-8";
  8857. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8858. const script4 = document.createElement("script");
  8859. script4.type = "text/javascript";
  8860. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8861. script4.src = window.origin + "/js/Common/jietu2E.js";
  8862. if (_iframe) {
  8863. if (str == 'doc') {
  8864. _iframe = _formdiv.querySelector('iframe')
  8865. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8866. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8867. _iframe.contentWindow.document.body.appendChild(script1);
  8868. _iframe.contentWindow.document.body.appendChild(script2);
  8869. // _iframe.contentWindow.document.body.appendChild(script3);
  8870. _iframe.contentWindow.document.body.appendChild(script4);
  8871. })
  8872. if (onloadListener) {
  8873. _iframe.contentDocument.location.reload()
  8874. } else {
  8875. _iframe.contentDocument.location.reload()
  8876. }
  8877. } else if (str == 'courseDesign') {
  8878. U.UF.DL.iframeLoad(_iframe, function () {
  8879. // _iframe.contentWindow.U.MD.O.W.load();
  8880. // _iframe.contentWindow.document.body.appendChild(script1);
  8881. _iframe.contentWindow.document.body.appendChild(script2);
  8882. _iframe.contentWindow.document.body.appendChild(script4);
  8883. })
  8884. } else if (str == 'mind') {
  8885. _iframe = _formdiv.querySelector('iframe')
  8886. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8887. //
  8888. _iframe.contentWindow.document.body.appendChild(script1);
  8889. _iframe.contentWindow.document.body.appendChild(script2);
  8890. _iframe.contentWindow.document.body.appendChild(script4);
  8891. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8892. })
  8893. if (onloadListener) {
  8894. _iframe.contentDocument.location.reload()
  8895. } else {
  8896. _iframe.contentDocument.location.reload()
  8897. }
  8898. } else if (str == 'whiteboard') {
  8899. _iframe = _formdiv.querySelector('iframe')
  8900. let onloadListener = _iframe.onload = () => {
  8901. _iframe.contentWindow.document.body.appendChild(script1);
  8902. _iframe.contentWindow.document.body.appendChild(script2);
  8903. _iframe.contentWindow.document.body.appendChild(script4);
  8904. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8905. };
  8906. // if (onloadListener) {
  8907. // try {
  8908. // _iframe.src += "?cocorobo="+new Date().getTime()
  8909. // _iframe.contentWindow.document.location.reload()
  8910. // } catch (error) {
  8911. // }
  8912. // } else {
  8913. // _iframe.contentDocument.location.reload()
  8914. // }
  8915. } else {
  8916. _iframe.onload = () => {
  8917. _iframe.contentWindow.document.body.appendChild(script1);
  8918. _iframe.contentWindow.document.body.appendChild(script2);
  8919. // _iframe.contentWindow.document.body.appendChild(script3);
  8920. _iframe.contentWindow.document.body.appendChild(script4);
  8921. };
  8922. }
  8923. _jie.onclick = async () => {
  8924. let text = ''
  8925. if (aTool == 1) {
  8926. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8927. } else if (aTool == 6) {
  8928. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8929. } else if (aTool == 3) {
  8930. text = await U.MD.D.I.getEditorContent(_iframe);
  8931. }
  8932. _loading.style.display = 'flex'
  8933. console.log(_loading);
  8934. var _ajs = _iframe.contentWindow.document.createElement("script");
  8935. _ajs.type = "text/javascript";
  8936. _ajs.innerHTML =
  8937. // 'console.log(' + _loading + ');\n' +
  8938. 'var _js = document.createElement("script");\n' +
  8939. '_js.type="text/javascript";\n' +
  8940. '_js.charset="UTF-8";\n' +
  8941. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8942. "_js.onload = function(){\n" +
  8943. ' var a = document.getElementsByTagName("img")\n' +
  8944. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8945. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8946. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8947. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8948. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8949. "beforeUpload_shishi(file," +
  8950. "'" +
  8951. _userid +
  8952. "'" +
  8953. ", " +
  8954. "'" +
  8955. _cid +
  8956. "'" +
  8957. ", " +
  8958. "'" +
  8959. _stage +
  8960. "'" +
  8961. ", " +
  8962. "'" +
  8963. _task +
  8964. "'" +
  8965. ", " +
  8966. "'" +
  8967. _tool +
  8968. "'" +
  8969. ", " +
  8970. "'" +
  8971. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8972. "'" +
  8973. ", " +
  8974. "'" +
  8975. aTool +
  8976. "'" +
  8977. ", " +
  8978. "`" +
  8979. text +
  8980. "`" +
  8981. ")\n" +
  8982. " });\n" +
  8983. "}\n" +
  8984. "document.head.appendChild(_js);\n";
  8985. _iframe.contentWindow.document.head.appendChild(_ajs);
  8986. }
  8987. }
  8988. //U.MD.D.I.openClick(str);
  8989. //如果有任务栏信息
  8990. // if (_taskbar) {
  8991. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8992. // }
  8993. }
  8994. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8995. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8996. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8997. _userid = student.userid, //登录用户id
  8998. _username = student.student //用户名字
  8999. let _iframe;
  9000. let _cid = cid,
  9001. _stage = stage,
  9002. _task = task,
  9003. _tool = tool;
  9004. var _jie = $$("div", {
  9005. "style": {
  9006. "position": "absolute",
  9007. "bottom": "50px",
  9008. "right": "50px",
  9009. "zIndex": "9999",
  9010. "backgroundColor": "#2268bc",
  9011. "color": "#fff",
  9012. "padding": "12px 20px",
  9013. "cursor": "pointer",
  9014. "borderRadius": "4px",
  9015. },
  9016. "innerHTML": "提交作业"
  9017. })
  9018. let aTool = ''
  9019. let _loading = document.createElement('div')
  9020. _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;"
  9021. // _loading.id = "";
  9022. let _lchild = document.createElement('div')
  9023. let _limg = document.createElement('img')
  9024. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9025. _limg.style = "width: 26px;margin-right: 10px;"
  9026. _lchild.appendChild(_limg)
  9027. let _lspan = document.createElement('span')
  9028. _lspan.innerHTML = "上传中..."
  9029. _lchild.appendChild(_lspan)
  9030. _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%);"
  9031. _loading.appendChild(_lchild)
  9032. var _box = $$('div', {
  9033. "style": {
  9034. "position": "relative",
  9035. "width": "100%",
  9036. "height": "100%",
  9037. },
  9038. })
  9039. _box.appendChild(_loading)
  9040. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9041. switch (str) {
  9042. case "whiteboard":
  9043. aTool = 1;
  9044. _iframe = $$("iframe", {
  9045. "frameborder": "no",
  9046. "border": "0",
  9047. "scrolling ": "no",
  9048. "style": {
  9049. "cssText": "border:0;width:100%;height:100%"
  9050. },
  9051. "src": "https://beta.iwb.cocorobo.cn/"
  9052. })
  9053. _box.appendChild(_iframe);
  9054. _box.appendChild(_jie);
  9055. _formdiv = new U.UF.UI.form(
  9056. "电子白板-" + _username,
  9057. _box, {
  9058. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9059. "style": {
  9060. "width": "90%",
  9061. "height": "90%",
  9062. "overflow": 'hidden'
  9063. },
  9064. "onresize": function () { }
  9065. }, {
  9066. closecallback: function () { }
  9067. }, {
  9068. "style": {
  9069. "height": "36px"
  9070. }
  9071. }).form; //创建窗体
  9072. _taskbar = {
  9073. "id": str + _formdiv.id,
  9074. "style": {
  9075. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9076. },
  9077. "name": "电子白板",
  9078. "forms": _formdiv,
  9079. "click": function () {
  9080. U.MD.D.I.openApplication(str, obj, info);
  9081. }
  9082. }
  9083. break;
  9084. case "mind":
  9085. aTool = 3;
  9086. _iframe = $$("iframe", {
  9087. "frameborder": "no",
  9088. "border": "0",
  9089. "scrolling ": "no",
  9090. "style": {
  9091. "cssText": "border:0;width:100%;height:100%"
  9092. },
  9093. "src": "/kityminder-editor/dist/index.html"
  9094. })
  9095. _box.appendChild(_iframe);
  9096. _box.appendChild(_jie);
  9097. _formdiv = new U.UF.UI.form(
  9098. "思维导图-" + _username,
  9099. _box, { //"/jsmind/example/demo.html"
  9100. "id": "mind" + cid + stage + task + tool + _userid,
  9101. "style": {
  9102. "width": "90%",
  9103. "height": "90%",
  9104. "overflow": 'hidden'
  9105. },
  9106. "onresize": function () { }
  9107. }, {
  9108. closecallback: function () { }
  9109. }, {
  9110. "style": {
  9111. "height": "36px"
  9112. }
  9113. }).form; //创建窗体
  9114. _taskbar = {
  9115. "id": str + _formdiv.id,
  9116. "style": {
  9117. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9118. },
  9119. "name": "思维导图",
  9120. "forms": _formdiv,
  9121. "click": function () {
  9122. U.MD.D.I.openApplication(str, obj, info);
  9123. }
  9124. }
  9125. break;
  9126. case "MindMap":
  9127. aTool = 3;
  9128. _iframe = $$("iframe", {
  9129. "frameborder": "no",
  9130. "border": "0",
  9131. "scrolling ": "no",
  9132. "style": {
  9133. "cssText": "border:0;width:100%;height:100%"
  9134. },
  9135. "src": "//cloud.cocorobo.cn/mind/"
  9136. })
  9137. _box.appendChild(_iframe);
  9138. _box.appendChild(_jie);
  9139. _formdiv = new U.UF.UI.form(
  9140. "思维导图-" + _username,
  9141. _box, { //"/jsmind/example/demo.html"
  9142. "id": "mind" + cid + stage + task + tool + _userid,
  9143. "style": {
  9144. "width": "90%",
  9145. "height": "90%",
  9146. "overflow": 'hidden'
  9147. },
  9148. "onresize": function () { }
  9149. }, {
  9150. closecallback: function () { }
  9151. }, {
  9152. "style": {
  9153. "height": "36px"
  9154. }
  9155. }).form; //创建窗体
  9156. _taskbar = {
  9157. "id": str + _formdiv.id,
  9158. "style": {
  9159. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9160. },
  9161. "name": "思维导图",
  9162. "forms": _formdiv,
  9163. "click": function () {
  9164. U.MD.D.I.openApplication(str, obj, info);
  9165. }
  9166. }
  9167. break;
  9168. case "doc":
  9169. aTool = 6;
  9170. _iframe = $$("iframe", {
  9171. "frameborder": "no",
  9172. "border": "0",
  9173. "scrolling ": "no",
  9174. "style": {
  9175. "cssText": "border:0;width:100%;height:100%"
  9176. },
  9177. "src": "/Office/Word/WordEditArea.htm"
  9178. })
  9179. _box.appendChild(_iframe);
  9180. _box.appendChild(_jie);
  9181. _formdiv = new U.UF.UI.form(
  9182. "协同文档-" + _username,
  9183. _box, {
  9184. "id": "doc" + cid + stage + task + tool + _userid,
  9185. "style": {
  9186. "width": "90%",
  9187. "height": "90%",
  9188. "overflow": 'hidden'
  9189. },
  9190. "onresize": function () { }
  9191. }, {
  9192. closecallback: function () { }
  9193. }, {
  9194. "style": {
  9195. "height": "36px"
  9196. }
  9197. }).form; //创建窗体
  9198. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9199. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9200. })
  9201. _taskbar = {
  9202. "id": str + _formdiv.id,
  9203. "style": {
  9204. "backgroundImage": "url(/img/icon/doc.png)"
  9205. },
  9206. "name": "协同文档",
  9207. "forms": _formdiv,
  9208. "click": function () {
  9209. U.MD.D.I.openApplication(str, obj, info);
  9210. }
  9211. }
  9212. break;
  9213. case "mindNetwork": //好友打开
  9214. aTool = 7;
  9215. _iframe = $$("iframe", {
  9216. "webkitallowfullscreen": "",
  9217. "mozallowfullscreen": "",
  9218. "allowfullscreen": "",
  9219. "frameborder": "no",
  9220. "border": "0",
  9221. "scrolling ": "no",
  9222. "style": {
  9223. "cssText": "border:0; width:100%; height:100%;"
  9224. },
  9225. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9226. })
  9227. _box.appendChild(_iframe);
  9228. _box.appendChild(_jie);
  9229. _formdiv = new U.UF.UI.form(
  9230. "思维网格-" + _username,
  9231. _box, {
  9232. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9233. "style": {
  9234. "width": "90%",
  9235. "height": "90%",
  9236. "overflow": 'hidden'
  9237. },
  9238. "onresize": function () { }
  9239. }, {
  9240. closecallback: function () { }
  9241. }, {
  9242. "style": {
  9243. "height": "36px"
  9244. }
  9245. }).form; //创建窗体
  9246. _taskbar = {
  9247. "id": str + _formdiv.id,
  9248. "style": {
  9249. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9250. },
  9251. "name": "思维网格",
  9252. "forms": _formdiv,
  9253. "click": function () {
  9254. U.MD.D.I.openApplication(str, obj, info);
  9255. }
  9256. }
  9257. break;
  9258. case "courseDesign":
  9259. _iframe = $$("iframe", {
  9260. "webkitallowfullscreen": "",
  9261. "mozallowfullscreen": "",
  9262. "allowfullscreen": "",
  9263. "frameborder": "no",
  9264. "border": "0",
  9265. "scrolling ": "no",
  9266. "style": {
  9267. "cssText": "border:0; width:100%; height:100%;"
  9268. },
  9269. "src": "/course-design-vue"
  9270. })
  9271. _box.appendChild(_iframe);
  9272. _box.appendChild(_jie);
  9273. _formdiv = new U.UF.UI.form(
  9274. "项目设计-" + _username,
  9275. _box, {
  9276. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9277. "style": {
  9278. "width": "90%",
  9279. "height": "90%",
  9280. "overflow": 'hidden'
  9281. },
  9282. "onresize": function () { }
  9283. }, {
  9284. closecallback: function () { }
  9285. }, {
  9286. "style": {
  9287. "height": "36px"
  9288. }
  9289. }).form; //创建窗体
  9290. _taskbar = {
  9291. "id": str + _formdiv.id,
  9292. "style": {
  9293. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9294. },
  9295. "name": "项目设计",
  9296. "forms": _formdiv,
  9297. "click": function () {
  9298. U.MD.D.I.openApplication(str, obj, info);
  9299. }
  9300. }
  9301. break;
  9302. }
  9303. const script1 = document.createElement("script");
  9304. script1.type = "text/javascript";
  9305. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9306. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9307. const script2 = document.createElement("script");
  9308. script2.type = "text/javascript";
  9309. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9310. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9311. const script3 = document.createElement("script");
  9312. script3.type = "text/javascript";
  9313. script3.charset = "UTF-8";
  9314. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9315. const script4 = document.createElement("script");
  9316. script4.type = "text/javascript";
  9317. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9318. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9319. if (_iframe) {
  9320. if (str == 'doc') {
  9321. _iframe = _formdiv.querySelector('iframe')
  9322. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9323. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9324. _iframe.contentWindow.document.body.appendChild(script1);
  9325. _iframe.contentWindow.document.body.appendChild(script2);
  9326. // _iframe.contentWindow.document.body.appendChild(script3);
  9327. _iframe.contentWindow.document.body.appendChild(script4);
  9328. })
  9329. if (onloadListener) {
  9330. _iframe.contentDocument.location.reload()
  9331. } else {
  9332. _iframe.contentDocument.location.reload()
  9333. }
  9334. } else if (str == 'courseDesign') {
  9335. U.UF.DL.iframeLoad(_iframe, function () {
  9336. // _iframe.contentWindow.U.MD.O.W.load();
  9337. // _iframe.contentWindow.document.body.appendChild(script1);
  9338. _iframe.contentWindow.document.body.appendChild(script2);
  9339. _iframe.contentWindow.document.body.appendChild(script4);
  9340. })
  9341. } else if (str == 'mind') {
  9342. _iframe = _formdiv.querySelector('iframe')
  9343. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9344. //
  9345. _iframe.contentWindow.document.body.appendChild(script1);
  9346. _iframe.contentWindow.document.body.appendChild(script2);
  9347. _iframe.contentWindow.document.body.appendChild(script4);
  9348. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9349. })
  9350. if (onloadListener) {
  9351. _iframe.contentDocument.location.reload()
  9352. } else {
  9353. _iframe.contentDocument.location.reload()
  9354. }
  9355. } else if (str == 'whiteboard') {
  9356. _iframe = _formdiv.querySelector('iframe')
  9357. let onloadListener = _iframe.onload = () => {
  9358. _iframe.contentWindow.document.body.appendChild(script1);
  9359. _iframe.contentWindow.document.body.appendChild(script2);
  9360. _iframe.contentWindow.document.body.appendChild(script4);
  9361. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9362. };
  9363. // if (onloadListener) {
  9364. // try {
  9365. // _iframe.src += "?cocorobo="+new Date().getTime()
  9366. // _iframe.contentWindow.document.location.reload()
  9367. // } catch (error) {
  9368. // }
  9369. // } else {
  9370. // _iframe.contentDocument.location.reload()
  9371. // }
  9372. } else {
  9373. _iframe.onload = () => {
  9374. _iframe.contentWindow.document.body.appendChild(script1);
  9375. _iframe.contentWindow.document.body.appendChild(script2);
  9376. // _iframe.contentWindow.document.body.appendChild(script3);
  9377. _iframe.contentWindow.document.body.appendChild(script4);
  9378. };
  9379. }
  9380. _jie.onclick = async () => {
  9381. let text = ''
  9382. if (aTool == 1) {
  9383. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9384. } else if (aTool == 6) {
  9385. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9386. } else if (aTool == 3) {
  9387. text = await U.MD.D.I.getEditorContent(_iframe);
  9388. }
  9389. _loading.style.display = 'flex'
  9390. console.log(_loading);
  9391. var _ajs = _iframe.contentWindow.document.createElement("script");
  9392. _ajs.type = "text/javascript";
  9393. _ajs.innerHTML =
  9394. // 'console.log(' + _loading + ');\n' +
  9395. 'var _js = document.createElement("script");\n' +
  9396. '_js.type="text/javascript";\n' +
  9397. '_js.charset="UTF-8";\n' +
  9398. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9399. "_js.onload = function(){\n" +
  9400. ' var a = document.getElementsByTagName("img")\n' +
  9401. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9402. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9403. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9404. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9405. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9406. "beforeUpload_shishi(file," +
  9407. "'" +
  9408. _userid +
  9409. "'" +
  9410. ", " +
  9411. "'" +
  9412. _cid +
  9413. "'" +
  9414. ", " +
  9415. "'" +
  9416. _stage +
  9417. "'" +
  9418. ", " +
  9419. "'" +
  9420. _task +
  9421. "'" +
  9422. ", " +
  9423. "'" +
  9424. _tool +
  9425. "'" +
  9426. ", " +
  9427. "'" +
  9428. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9429. "'" +
  9430. ", " +
  9431. "'" +
  9432. aTool +
  9433. "'" +
  9434. ", " +
  9435. "`" +
  9436. text +
  9437. "`" +
  9438. ")\n" +
  9439. " });\n" +
  9440. "}\n" +
  9441. "document.head.appendChild(_js);\n";
  9442. _iframe.contentWindow.document.head.appendChild(_ajs);
  9443. }
  9444. }
  9445. }
  9446. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9447. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9448. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9449. _userid = student.userid, //登录用户id
  9450. _username = student.student //用户名字
  9451. let _iframe;
  9452. let _cid = cid,
  9453. _stage = stage,
  9454. _task = task,
  9455. _tool = tool;
  9456. var _jie = $$("div", {
  9457. "style": {
  9458. "position": "absolute",
  9459. "bottom": "50px",
  9460. "right": "50px",
  9461. "zIndex": "9999",
  9462. "backgroundColor": "#2268bc",
  9463. "color": "#fff",
  9464. "padding": "12px 20px",
  9465. "cursor": "pointer",
  9466. "borderRadius": "4px",
  9467. },
  9468. "innerHTML": "提交作业"
  9469. })
  9470. let aTool = ''
  9471. let _loading = document.createElement('div')
  9472. _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;"
  9473. // _loading.id = "";
  9474. let _lchild = document.createElement('div')
  9475. let _limg = document.createElement('img')
  9476. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9477. _limg.style = "width: 26px;margin-right: 10px;"
  9478. _lchild.appendChild(_limg)
  9479. let _lspan = document.createElement('span')
  9480. _lspan.innerHTML = "上传中..."
  9481. _lchild.appendChild(_lspan)
  9482. _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%);"
  9483. _loading.appendChild(_lchild)
  9484. var _box = $$('div', {
  9485. "style": {
  9486. "position": "relative",
  9487. "width": "100%",
  9488. "height": "100%",
  9489. },
  9490. })
  9491. _box.appendChild(_loading)
  9492. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9493. switch (str) {
  9494. case "whiteboard":
  9495. aTool = 1;
  9496. _iframe = $$("iframe", {
  9497. "frameborder": "no",
  9498. "border": "0",
  9499. "scrolling ": "no",
  9500. "style": {
  9501. "cssText": "border:0;width:100%;height:100%"
  9502. },
  9503. "src": "https://beta.iwb.cocorobo.cn/"
  9504. })
  9505. _box.appendChild(_iframe);
  9506. _box.appendChild(_jie);
  9507. _formdiv = new U.UF.UI.form(
  9508. "电子白板-" + _username,
  9509. _box, {
  9510. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9511. "style": {
  9512. "width": "90%",
  9513. "height": "90%",
  9514. "overflow": 'hidden'
  9515. },
  9516. "onresize": function () { }
  9517. }, {
  9518. closecallback: function () { }
  9519. }, {
  9520. "style": {
  9521. "height": "36px"
  9522. }
  9523. }).form; //创建窗体
  9524. _taskbar = {
  9525. "id": str + _formdiv.id,
  9526. "style": {
  9527. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9528. },
  9529. "name": "电子白板",
  9530. "forms": _formdiv,
  9531. "click": function () {
  9532. U.MD.D.I.openApplication(str, obj, info);
  9533. }
  9534. }
  9535. break;
  9536. case "mind":
  9537. aTool = 3;
  9538. _iframe = $$("iframe", {
  9539. "frameborder": "no",
  9540. "border": "0",
  9541. "scrolling ": "no",
  9542. "style": {
  9543. "cssText": "border:0;width:100%;height:100%"
  9544. },
  9545. "src": "/kityminder-editor/dist/index.html"
  9546. })
  9547. _box.appendChild(_iframe);
  9548. _box.appendChild(_jie);
  9549. _formdiv = new U.UF.UI.form(
  9550. "思维导图-" + _username,
  9551. _box, { //"/jsmind/example/demo.html"
  9552. "id": "mind" + cid + stage + task + tool + _userid,
  9553. "style": {
  9554. "width": "90%",
  9555. "height": "90%",
  9556. "overflow": 'hidden'
  9557. },
  9558. "onresize": function () { }
  9559. }, {
  9560. closecallback: function () { }
  9561. }, {
  9562. "style": {
  9563. "height": "36px"
  9564. }
  9565. }).form; //创建窗体
  9566. _taskbar = {
  9567. "id": str + _formdiv.id,
  9568. "style": {
  9569. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9570. },
  9571. "name": "思维导图",
  9572. "forms": _formdiv,
  9573. "click": function () {
  9574. U.MD.D.I.openApplication(str, obj, info);
  9575. }
  9576. }
  9577. break;
  9578. case "MindMap":
  9579. aTool = 3;
  9580. _iframe = $$("iframe", {
  9581. "frameborder": "no",
  9582. "border": "0",
  9583. "scrolling ": "no",
  9584. "style": {
  9585. "cssText": "border:0;width:100%;height:100%"
  9586. },
  9587. "src": "//cloud.cocorobo.cn/mind/"
  9588. })
  9589. _box.appendChild(_iframe);
  9590. _box.appendChild(_jie);
  9591. _formdiv = new U.UF.UI.form(
  9592. "思维导图-" + _username,
  9593. _box, { //"/jsmind/example/demo.html"
  9594. "id": "mind" + cid + stage + task + tool + _userid,
  9595. "style": {
  9596. "width": "90%",
  9597. "height": "90%",
  9598. "overflow": 'hidden'
  9599. },
  9600. "onresize": function () { }
  9601. }, {
  9602. closecallback: function () { }
  9603. }, {
  9604. "style": {
  9605. "height": "36px"
  9606. }
  9607. }).form; //创建窗体
  9608. _taskbar = {
  9609. "id": str + _formdiv.id,
  9610. "style": {
  9611. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9612. },
  9613. "name": "思维导图",
  9614. "forms": _formdiv,
  9615. "click": function () {
  9616. U.MD.D.I.openApplication(str, obj, info);
  9617. }
  9618. }
  9619. break;
  9620. case "doc":
  9621. aTool = 6;
  9622. _iframe = $$("iframe", {
  9623. "frameborder": "no",
  9624. "border": "0",
  9625. "scrolling ": "no",
  9626. "style": {
  9627. "cssText": "border:0;width:100%;height:100%"
  9628. },
  9629. "src": "/Office/Word/WordEditArea.htm"
  9630. })
  9631. _box.appendChild(_iframe);
  9632. _box.appendChild(_jie);
  9633. _formdiv = new U.UF.UI.form(
  9634. "协同文档-" + _username,
  9635. _box, {
  9636. "id": "doc" + cid + stage + task + tool + _userid,
  9637. "style": {
  9638. "width": "90%",
  9639. "height": "90%",
  9640. "overflow": 'hidden'
  9641. },
  9642. "onresize": function () { }
  9643. }, {
  9644. closecallback: function () { }
  9645. }, {
  9646. "style": {
  9647. "height": "36px"
  9648. }
  9649. }).form; //创建窗体
  9650. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9651. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9652. })
  9653. _taskbar = {
  9654. "id": str + _formdiv.id,
  9655. "style": {
  9656. "backgroundImage": "url(/img/icon/doc.png)"
  9657. },
  9658. "name": "协同文档",
  9659. "forms": _formdiv,
  9660. "click": function () {
  9661. U.MD.D.I.openApplication(str, obj, info);
  9662. }
  9663. }
  9664. break;
  9665. case "mindNetwork": //好友打开
  9666. aTool = 7;
  9667. _iframe = $$("iframe", {
  9668. "webkitallowfullscreen": "",
  9669. "mozallowfullscreen": "",
  9670. "allowfullscreen": "",
  9671. "frameborder": "no",
  9672. "border": "0",
  9673. "scrolling ": "no",
  9674. "style": {
  9675. "cssText": "border:0; width:100%; height:100%;"
  9676. },
  9677. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9678. })
  9679. _box.appendChild(_iframe);
  9680. _box.appendChild(_jie);
  9681. _formdiv = new U.UF.UI.form(
  9682. "思维网格-" + _username,
  9683. _box, {
  9684. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9685. "style": {
  9686. "width": "90%",
  9687. "height": "90%",
  9688. "overflow": 'hidden'
  9689. },
  9690. "onresize": function () { }
  9691. }, {
  9692. closecallback: function () { }
  9693. }, {
  9694. "style": {
  9695. "height": "36px"
  9696. }
  9697. }).form; //创建窗体
  9698. _taskbar = {
  9699. "id": str + _formdiv.id,
  9700. "style": {
  9701. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9702. },
  9703. "name": "思维网格",
  9704. "forms": _formdiv,
  9705. "click": function () {
  9706. U.MD.D.I.openApplication(str, obj, info);
  9707. }
  9708. }
  9709. break;
  9710. case "courseDesign":
  9711. _iframe = $$("iframe", {
  9712. "webkitallowfullscreen": "",
  9713. "mozallowfullscreen": "",
  9714. "allowfullscreen": "",
  9715. "frameborder": "no",
  9716. "border": "0",
  9717. "scrolling ": "no",
  9718. "style": {
  9719. "cssText": "border:0; width:100%; height:100%;"
  9720. },
  9721. "src": "/course-design-vue"
  9722. })
  9723. _box.appendChild(_iframe);
  9724. _box.appendChild(_jie);
  9725. _formdiv = new U.UF.UI.form(
  9726. "项目设计-" + _username,
  9727. _box, {
  9728. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9729. "style": {
  9730. "width": "90%",
  9731. "height": "90%",
  9732. "overflow": 'hidden'
  9733. },
  9734. "onresize": function () { }
  9735. }, {
  9736. closecallback: function () { }
  9737. }, {
  9738. "style": {
  9739. "height": "36px"
  9740. }
  9741. }).form; //创建窗体
  9742. _taskbar = {
  9743. "id": str + _formdiv.id,
  9744. "style": {
  9745. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9746. },
  9747. "name": "项目设计",
  9748. "forms": _formdiv,
  9749. "click": function () {
  9750. U.MD.D.I.openApplication(str, obj, info);
  9751. }
  9752. }
  9753. break;
  9754. }
  9755. const script1 = document.createElement("script");
  9756. script1.type = "text/javascript";
  9757. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9758. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9759. const script2 = document.createElement("script");
  9760. script2.type = "text/javascript";
  9761. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9762. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9763. const script3 = document.createElement("script");
  9764. script3.type = "text/javascript";
  9765. script3.charset = "UTF-8";
  9766. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9767. const script4 = document.createElement("script");
  9768. script4.type = "text/javascript";
  9769. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9770. script4.src = window.origin + "/js/Common/jietu2E.js";
  9771. if (_iframe) {
  9772. if (str == 'doc') {
  9773. _iframe = _formdiv.querySelector('iframe')
  9774. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9775. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9776. _iframe.contentWindow.document.body.appendChild(script1);
  9777. _iframe.contentWindow.document.body.appendChild(script2);
  9778. // _iframe.contentWindow.document.body.appendChild(script3);
  9779. _iframe.contentWindow.document.body.appendChild(script4);
  9780. })
  9781. if (onloadListener) {
  9782. _iframe.contentDocument.location.reload()
  9783. } else {
  9784. _iframe.contentDocument.location.reload()
  9785. }
  9786. } else if (str == 'courseDesign') {
  9787. U.UF.DL.iframeLoad(_iframe, function () {
  9788. // _iframe.contentWindow.U.MD.O.W.load();
  9789. // _iframe.contentWindow.document.body.appendChild(script1);
  9790. _iframe.contentWindow.document.body.appendChild(script2);
  9791. _iframe.contentWindow.document.body.appendChild(script4);
  9792. })
  9793. } else if (str == 'mind') {
  9794. _iframe = _formdiv.querySelector('iframe')
  9795. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9796. //
  9797. _iframe.contentWindow.document.body.appendChild(script1);
  9798. _iframe.contentWindow.document.body.appendChild(script2);
  9799. _iframe.contentWindow.document.body.appendChild(script4);
  9800. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9801. })
  9802. if (onloadListener) {
  9803. _iframe.contentDocument.location.reload()
  9804. } else {
  9805. _iframe.contentDocument.location.reload()
  9806. }
  9807. } else if (str == 'whiteboard') {
  9808. _iframe = _formdiv.querySelector('iframe')
  9809. let onloadListener = _iframe.onload = () => {
  9810. _iframe.contentWindow.document.body.appendChild(script1);
  9811. _iframe.contentWindow.document.body.appendChild(script2);
  9812. _iframe.contentWindow.document.body.appendChild(script4);
  9813. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9814. };
  9815. // if (onloadListener) {
  9816. // try {
  9817. // _iframe.src += "?cocorobo="+new Date().getTime()
  9818. // _iframe.contentWindow.document.location.reload()
  9819. // } catch (error) {
  9820. // }
  9821. // } else {
  9822. // _iframe.contentDocument.location.reload()
  9823. // }
  9824. } else {
  9825. _iframe.onload = () => {
  9826. _iframe.contentWindow.document.body.appendChild(script1);
  9827. _iframe.contentWindow.document.body.appendChild(script2);
  9828. // _iframe.contentWindow.document.body.appendChild(script3);
  9829. _iframe.contentWindow.document.body.appendChild(script4);
  9830. };
  9831. }
  9832. _jie.onclick = async () => {
  9833. let text = ''
  9834. if (aTool == 1) {
  9835. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9836. } else if (aTool == 6) {
  9837. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9838. } else if (aTool == 3) {
  9839. text = await U.MD.D.I.getEditorContent(_iframe);
  9840. }
  9841. _loading.style.display = 'flex'
  9842. console.log(_loading);
  9843. var _ajs = _iframe.contentWindow.document.createElement("script");
  9844. _ajs.type = "text/javascript";
  9845. _ajs.innerHTML =
  9846. // 'console.log(' + _loading + ');\n' +
  9847. 'var _js = document.createElement("script");\n' +
  9848. '_js.type="text/javascript";\n' +
  9849. '_js.charset="UTF-8";\n' +
  9850. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9851. "_js.onload = function(){\n" +
  9852. ' var a = document.getElementsByTagName("img")\n' +
  9853. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9854. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9855. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9856. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9857. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9858. "beforeUpload_shishi(file," +
  9859. "'" +
  9860. _userid +
  9861. "'" +
  9862. ", " +
  9863. "'" +
  9864. _cid +
  9865. "'" +
  9866. ", " +
  9867. "'" +
  9868. _stage +
  9869. "'" +
  9870. ", " +
  9871. "'" +
  9872. _task +
  9873. "'" +
  9874. ", " +
  9875. "'" +
  9876. _tool +
  9877. "'" +
  9878. ", " +
  9879. "'" +
  9880. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9881. "'" +
  9882. ", " +
  9883. "'" +
  9884. aTool +
  9885. "'" +
  9886. ", " +
  9887. "`" +
  9888. text +
  9889. "`" +
  9890. ")\n" +
  9891. " });\n" +
  9892. "}\n" +
  9893. "document.head.appendChild(_js);\n";
  9894. _iframe.contentWindow.document.head.appendChild(_ajs);
  9895. }
  9896. }
  9897. }
  9898. U.MD.D.I.getEditorContent = function (iframe) {
  9899. return new Promise((resolve, reject) => {
  9900. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9901. console.log(content);
  9902. resolve(content)
  9903. });
  9904. });
  9905. }
  9906. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9907. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9908. // if (res.value[0].length > 0) {
  9909. // // resolve(res.value[0][0].text);
  9910. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9911. // $(fileInput).val('');
  9912. // });
  9913. // }
  9914. // }, [], { "type": "GET", "withCredentials": true });
  9915. var xmlhttp;
  9916. var Mac, Sn, DeviceId
  9917. if (window.XMLHttpRequest) {
  9918. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9919. xmlhttp = new XMLHttpRequest();
  9920. } else {
  9921. // IE6, IE5 浏览器执行代码
  9922. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9923. }
  9924. xmlhttp.onreadystatechange = function () {
  9925. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9926. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9927. // resolve(res.value[0][0].text);
  9928. if (type == '2') {
  9929. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9930. } else if (type == '3') {
  9931. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9932. }
  9933. } else {
  9934. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9935. }
  9936. }
  9937. }
  9938. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9939. xmlhttp.send();
  9940. }
  9941. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9942. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9943. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9944. _userinfo = US.userInfo, //登录用户信息
  9945. _userid = US.userInfo.userid //登录用户id
  9946. let _iframe;
  9947. let _cid = cid,
  9948. _stage = stage,
  9949. _task = task,
  9950. _tool = tool;
  9951. var _jie = $$("div", {
  9952. "style": {
  9953. "position": "absolute",
  9954. "bottom": "50px",
  9955. "right": "50px",
  9956. "zIndex": "9999",
  9957. "backgroundColor": "#2268bc",
  9958. "color": "#fff",
  9959. "padding": "12px 20px",
  9960. "cursor": "pointer",
  9961. "borderRadius": "4px",
  9962. },
  9963. "innerHTML": "确认并提交"
  9964. })
  9965. let aTool = ''
  9966. let _loading = document.createElement('div')
  9967. _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;"
  9968. // _loading.id = "";
  9969. let _lchild = document.createElement('div')
  9970. let _limg = document.createElement('img')
  9971. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9972. _limg.style = "width: 26px;margin-right: 10px;"
  9973. _lchild.appendChild(_limg)
  9974. let _lspan = document.createElement('span')
  9975. _lspan.innerHTML = "上传中..."
  9976. _lchild.appendChild(_lspan)
  9977. _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%);"
  9978. _loading.appendChild(_lchild)
  9979. var _box = $$('div', {
  9980. "style": {
  9981. "position": "relative",
  9982. "width": "100%",
  9983. "height": "100%",
  9984. },
  9985. })
  9986. _box.appendChild(_loading)
  9987. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9988. switch (str) {
  9989. case "whiteboard":
  9990. aTool = 1;
  9991. _iframe = $$("iframe", {
  9992. "frameborder": "no",
  9993. "border": "0",
  9994. "scrolling ": "no",
  9995. "style": {
  9996. "cssText": "border:0;width:100%;height:100%"
  9997. },
  9998. "src": "https://beta.iwb.cocorobo.cn/"
  9999. })
  10000. _box.appendChild(_iframe);
  10001. _box.appendChild(_jie);
  10002. _formdiv = new U.UF.UI.form(
  10003. "电子白板",
  10004. _box, {
  10005. "id": "whiteboards" + cid + stage + task + tool,
  10006. "style": {
  10007. "width": "90%",
  10008. "height": "90%",
  10009. "overflow": 'hidden'
  10010. },
  10011. "onresize": function () { }
  10012. }, {
  10013. closecallback: function () { }
  10014. }, {
  10015. "style": {
  10016. "height": "36px"
  10017. }
  10018. }).form; //创建窗体
  10019. _taskbar = {
  10020. "id": str + _formdiv.id,
  10021. "style": {
  10022. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10023. },
  10024. "name": "电子白板",
  10025. "forms": _formdiv,
  10026. "click": function () {
  10027. U.MD.D.I.openApplication(str, obj, info);
  10028. }
  10029. }
  10030. break;
  10031. case "mind":
  10032. aTool = 3;
  10033. _iframe = $$("iframe", {
  10034. "frameborder": "no",
  10035. "border": "0",
  10036. "scrolling ": "no",
  10037. "style": {
  10038. "cssText": "border:0;width:100%;height:100%"
  10039. },
  10040. "src": "/kityminder-editor/dist/index.html"
  10041. });
  10042. _box.appendChild(_iframe);
  10043. _box.appendChild(_jie);
  10044. _formdiv = new U.UF.UI.form(
  10045. "思维导图",
  10046. _box, { //"/jsmind/example/demo.html"
  10047. "id": "minds" + cid + stage + task + tool,
  10048. "style": {
  10049. "width": "90%",
  10050. "height": "90%",
  10051. "overflow": 'hidden'
  10052. },
  10053. "onresize": function () { }
  10054. }, {
  10055. closecallback: function () { }
  10056. }, {
  10057. "style": {
  10058. "height": "36px"
  10059. }
  10060. }).form; //创建窗体
  10061. _taskbar = {
  10062. "id": str + _formdiv.id,
  10063. "style": {
  10064. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10065. },
  10066. "name": "思维导图",
  10067. "forms": _formdiv,
  10068. "click": function () {
  10069. U.MD.D.I.openApplication(str, obj, info);
  10070. }
  10071. }
  10072. break;
  10073. case "doc":
  10074. aTool = 6;
  10075. _iframe = $$("iframe", {
  10076. "frameborder": "no",
  10077. "border": "0",
  10078. "scrolling ": "no",
  10079. "style": {
  10080. "cssText": "border:0;width:100%;height:100%"
  10081. },
  10082. "src": "/Office/Word/WordEditArea.htm"
  10083. })
  10084. _box.appendChild(_iframe);
  10085. _box.appendChild(_jie);
  10086. _formdiv = new U.UF.UI.form(
  10087. "协同文档",
  10088. _box, {
  10089. "id": "docs" + cid + stage + task + tool,
  10090. "style": {
  10091. "width": "90%",
  10092. "height": "90%",
  10093. "overflow": 'hidden'
  10094. },
  10095. "onresize": function () { }
  10096. }, {
  10097. closecallback: function () { }
  10098. }, {
  10099. "style": {
  10100. "height": "36px"
  10101. }
  10102. }).form; //创建窗体
  10103. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10104. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10105. })
  10106. _taskbar = {
  10107. "id": str + _formdiv.id,
  10108. "style": {
  10109. "backgroundImage": "url(/img/icon/doc.png)"
  10110. },
  10111. "name": "协同文档",
  10112. "forms": _formdiv,
  10113. "click": function () {
  10114. U.MD.D.I.openApplication(str, obj, info);
  10115. }
  10116. }
  10117. break;
  10118. }
  10119. const script1 = document.createElement("script");
  10120. script1.type = "text/javascript";
  10121. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10122. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10123. const script2 = document.createElement("script");
  10124. script2.type = "text/javascript";
  10125. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10126. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10127. const script3 = document.createElement("script");
  10128. script3.type = "text/javascript";
  10129. script3.charset = "UTF-8";
  10130. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10131. const script4 = document.createElement("script");
  10132. script4.type = "text/javascript";
  10133. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10134. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10135. if (_iframe) {
  10136. if (str == 'doc') {
  10137. _iframe = _formdiv.querySelector('iframe')
  10138. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10139. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10140. _iframe.contentWindow.document.body.appendChild(script1);
  10141. _iframe.contentWindow.document.body.appendChild(script2);
  10142. // _iframe.contentWindow.document.body.appendChild(script3);
  10143. _iframe.contentWindow.document.body.appendChild(script4);
  10144. })
  10145. if (onloadListener) {
  10146. _iframe.contentDocument.location.reload()
  10147. } else {
  10148. _iframe.contentDocument.location.reload()
  10149. }
  10150. } else if (str == 'mind') {
  10151. _iframe = _formdiv.querySelector('iframe')
  10152. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10153. _iframe.contentWindow.document.body.appendChild(script1);
  10154. _iframe.contentWindow.document.body.appendChild(script2);
  10155. _iframe.contentWindow.document.body.appendChild(script4);
  10156. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10157. })
  10158. if (onloadListener) {
  10159. _iframe.contentDocument.location.reload()
  10160. } else {
  10161. _iframe.contentDocument.location.reload()
  10162. }
  10163. } else {
  10164. _iframe.onload = () => {
  10165. _iframe.contentWindow.document.body.appendChild(script1);
  10166. _iframe.contentWindow.document.body.appendChild(script2);
  10167. // _iframe.contentWindow.document.body.appendChild(script3);
  10168. _iframe.contentWindow.document.body.appendChild(script4);
  10169. };
  10170. }
  10171. _jie.onclick = async () => {
  10172. let text = ''
  10173. if (aTool == 6) {
  10174. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10175. } else if (aTool == 3) {
  10176. text = await U.MD.D.I.getEditorContent(_iframe);
  10177. }
  10178. _loading.style.display = 'flex'
  10179. console.log(_loading);
  10180. var _ajs = _iframe.contentWindow.document.createElement("script");
  10181. _ajs.type = "text/javascript";
  10182. _ajs.innerHTML =
  10183. // 'console.log(' + _loading + ');\n' +
  10184. 'var _js = document.createElement("script");\n' +
  10185. '_js.type="text/javascript";\n' +
  10186. '_js.charset="UTF-8";\n' +
  10187. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10188. "_js.onload = function(){\n" +
  10189. ' var a = document.getElementsByTagName("img")\n' +
  10190. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10191. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10192. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10193. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10194. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10195. "beforeUpload_shishi(file," +
  10196. "'" +
  10197. _userid +
  10198. "'" +
  10199. ", " +
  10200. "'" +
  10201. _cid +
  10202. "'" +
  10203. ", " +
  10204. "'" +
  10205. _stage +
  10206. "'" +
  10207. ", " +
  10208. "'" +
  10209. _task +
  10210. "'" +
  10211. ", " +
  10212. "'" +
  10213. _tool +
  10214. "'" +
  10215. ", " +
  10216. "'" +
  10217. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10218. "'" +
  10219. ", " +
  10220. "'" +
  10221. aTool +
  10222. "'" +
  10223. ", " +
  10224. "`" +
  10225. text +
  10226. "`" +
  10227. ")\n" +
  10228. " });\n" +
  10229. "}\n" +
  10230. "document.head.appendChild(_js);\n";
  10231. _iframe.contentWindow.document.head.appendChild(_ajs);
  10232. }
  10233. }
  10234. //U.MD.D.I.openClick(str);
  10235. //如果有任务栏信息
  10236. // if (_taskbar) {
  10237. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10238. // }
  10239. }
  10240. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10241. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10242. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10243. _userinfo = US.userInfo, //登录用户信息
  10244. _userid = US.userInfo.userid //登录用户id
  10245. let _iframe;
  10246. let _cid = cid,
  10247. _stage = stage,
  10248. _task = task,
  10249. _tool = tool;
  10250. var _jie = $$("div", {
  10251. "style": {
  10252. "position": "absolute",
  10253. "bottom": "50px",
  10254. "right": "50px",
  10255. "zIndex": "9999",
  10256. "backgroundColor": "#2268bc",
  10257. "color": "#fff",
  10258. "padding": "12px 20px",
  10259. "cursor": "pointer",
  10260. "borderRadius": "4px",
  10261. },
  10262. "innerHTML": "确认并提交"
  10263. })
  10264. let aTool = ''
  10265. let _loading = document.createElement('div')
  10266. _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;"
  10267. // _loading.id = "";
  10268. let _lchild = document.createElement('div')
  10269. let _limg = document.createElement('img')
  10270. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10271. _limg.style = "width: 26px;margin-right: 10px;"
  10272. _lchild.appendChild(_limg)
  10273. let _lspan = document.createElement('span')
  10274. _lspan.innerHTML = "上传中..."
  10275. _lchild.appendChild(_lspan)
  10276. _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%);"
  10277. _loading.appendChild(_lchild)
  10278. var _box = $$('div', {
  10279. "style": {
  10280. "position": "relative",
  10281. "width": "100%",
  10282. "height": "100%",
  10283. },
  10284. })
  10285. _box.appendChild(_loading)
  10286. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10287. switch (str) {
  10288. case "whiteboard":
  10289. aTool = 1;
  10290. _iframe = $$("iframe", {
  10291. "frameborder": "no",
  10292. "border": "0",
  10293. "scrolling ": "no",
  10294. "style": {
  10295. "cssText": "border:0;width:100%;height:100%"
  10296. },
  10297. "src": "https://beta.iwb.cocorobo.cn/"
  10298. })
  10299. _box.appendChild(_iframe);
  10300. _box.appendChild(_jie);
  10301. _formdiv = new U.UF.UI.form(
  10302. "电子白板",
  10303. _box, {
  10304. "id": "whiteboards" + cid + stage + task + tool,
  10305. "style": {
  10306. "width": "90%",
  10307. "height": "90%",
  10308. "overflow": 'hidden'
  10309. },
  10310. "onresize": function () { }
  10311. }, {
  10312. closecallback: function () { }
  10313. }, {
  10314. "style": {
  10315. "height": "36px"
  10316. }
  10317. }).form; //创建窗体
  10318. _taskbar = {
  10319. "id": str + _formdiv.id,
  10320. "style": {
  10321. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10322. },
  10323. "name": "电子白板",
  10324. "forms": _formdiv,
  10325. "click": function () {
  10326. U.MD.D.I.openApplication(str, obj, info);
  10327. }
  10328. }
  10329. break;
  10330. case "mind":
  10331. aTool = 3;
  10332. _iframe = $$("iframe", {
  10333. "frameborder": "no",
  10334. "border": "0",
  10335. "scrolling ": "no",
  10336. "style": {
  10337. "cssText": "border:0;width:100%;height:100%"
  10338. },
  10339. "src": "/kityminder-editor/dist/index.html"
  10340. });
  10341. _box.appendChild(_iframe);
  10342. _box.appendChild(_jie);
  10343. _formdiv = new U.UF.UI.form(
  10344. "思维导图",
  10345. _box, { //"/jsmind/example/demo.html"
  10346. "id": "minds" + cid + stage + task + tool,
  10347. "style": {
  10348. "width": "90%",
  10349. "height": "90%",
  10350. "overflow": 'hidden'
  10351. },
  10352. "onresize": function () { }
  10353. }, {
  10354. closecallback: function () { }
  10355. }, {
  10356. "style": {
  10357. "height": "36px"
  10358. }
  10359. }).form; //创建窗体
  10360. _taskbar = {
  10361. "id": str + _formdiv.id,
  10362. "style": {
  10363. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10364. },
  10365. "name": "思维导图",
  10366. "forms": _formdiv,
  10367. "click": function () {
  10368. U.MD.D.I.openApplication(str, obj, info);
  10369. }
  10370. }
  10371. break;
  10372. case "doc":
  10373. aTool = 6;
  10374. _iframe = $$("iframe", {
  10375. "frameborder": "no",
  10376. "border": "0",
  10377. "scrolling ": "no",
  10378. "style": {
  10379. "cssText": "border:0;width:100%;height:100%"
  10380. },
  10381. "src": "/Office/Word/WordEditArea.htm"
  10382. })
  10383. _box.appendChild(_iframe);
  10384. _box.appendChild(_jie);
  10385. _formdiv = new U.UF.UI.form(
  10386. "协同文档",
  10387. _box, {
  10388. "id": "docs" + cid + stage + task + tool,
  10389. "style": {
  10390. "width": "90%",
  10391. "height": "90%",
  10392. "overflow": 'hidden'
  10393. },
  10394. "onresize": function () { }
  10395. }, {
  10396. closecallback: function () { }
  10397. }, {
  10398. "style": {
  10399. "height": "36px"
  10400. }
  10401. }).form; //创建窗体
  10402. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10403. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10404. })
  10405. _taskbar = {
  10406. "id": str + _formdiv.id,
  10407. "style": {
  10408. "backgroundImage": "url(/img/icon/doc.png)"
  10409. },
  10410. "name": "协同文档",
  10411. "forms": _formdiv,
  10412. "click": function () {
  10413. U.MD.D.I.openApplication(str, obj, info);
  10414. }
  10415. }
  10416. break;
  10417. }
  10418. const script1 = document.createElement("script");
  10419. script1.type = "text/javascript";
  10420. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10421. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10422. const script2 = document.createElement("script");
  10423. script2.type = "text/javascript";
  10424. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10425. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10426. const script3 = document.createElement("script");
  10427. script3.type = "text/javascript";
  10428. script3.charset = "UTF-8";
  10429. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10430. const script4 = document.createElement("script");
  10431. script4.type = "text/javascript";
  10432. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10433. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10434. if (_iframe) {
  10435. if (str == 'doc') {
  10436. _iframe = _formdiv.querySelector('iframe')
  10437. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10438. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10439. _iframe.contentWindow.document.body.appendChild(script1);
  10440. _iframe.contentWindow.document.body.appendChild(script2);
  10441. // _iframe.contentWindow.document.body.appendChild(script3);
  10442. _iframe.contentWindow.document.body.appendChild(script4);
  10443. })
  10444. if (onloadListener) {
  10445. _iframe.contentDocument.location.reload()
  10446. } else {
  10447. _iframe.contentDocument.location.reload()
  10448. }
  10449. } else if (str == 'mind') {
  10450. _iframe = _formdiv.querySelector('iframe')
  10451. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10452. _iframe.contentWindow.document.body.appendChild(script1);
  10453. _iframe.contentWindow.document.body.appendChild(script2);
  10454. _iframe.contentWindow.document.body.appendChild(script4);
  10455. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10456. })
  10457. if (onloadListener) {
  10458. _iframe.contentDocument.location.reload()
  10459. } else {
  10460. _iframe.contentDocument.location.reload()
  10461. }
  10462. } else {
  10463. _iframe.onload = () => {
  10464. _iframe.contentWindow.document.body.appendChild(script1);
  10465. _iframe.contentWindow.document.body.appendChild(script2);
  10466. // _iframe.contentWindow.document.body.appendChild(script3);
  10467. _iframe.contentWindow.document.body.appendChild(script4);
  10468. };
  10469. }
  10470. _jie.onclick = async () => {
  10471. let text = ''
  10472. if (aTool == 6) {
  10473. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10474. } else if (aTool == 3) {
  10475. text = await U.MD.D.I.getEditorContent(_iframe);
  10476. }
  10477. _loading.style.display = 'flex'
  10478. console.log(_loading);
  10479. var _ajs = _iframe.contentWindow.document.createElement("script");
  10480. _ajs.type = "text/javascript";
  10481. _ajs.innerHTML =
  10482. // 'console.log(' + _loading + ');\n' +
  10483. 'var _js = document.createElement("script");\n' +
  10484. '_js.type="text/javascript";\n' +
  10485. '_js.charset="UTF-8";\n' +
  10486. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10487. "_js.onload = function(){\n" +
  10488. ' var a = document.getElementsByTagName("img")\n' +
  10489. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10490. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10491. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10492. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10493. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10494. "beforeUpload_shishi(file," +
  10495. "'" +
  10496. _userid +
  10497. "'" +
  10498. ", " +
  10499. "'" +
  10500. _cid +
  10501. "'" +
  10502. ", " +
  10503. "'" +
  10504. _stage +
  10505. "'" +
  10506. ", " +
  10507. "'" +
  10508. _task +
  10509. "'" +
  10510. ", " +
  10511. "'" +
  10512. _tool +
  10513. "'" +
  10514. ", " +
  10515. "'" +
  10516. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10517. "'" +
  10518. ", " +
  10519. "'" +
  10520. aTool +
  10521. "'" +
  10522. ", " +
  10523. "`" +
  10524. text +
  10525. "`" +
  10526. ")\n" +
  10527. " });\n" +
  10528. "}\n" +
  10529. "document.head.appendChild(_js);\n";
  10530. _iframe.contentWindow.document.head.appendChild(_ajs);
  10531. }
  10532. }
  10533. //U.MD.D.I.openClick(str);
  10534. //如果有任务栏信息
  10535. // if (_taskbar) {
  10536. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10537. // }
  10538. }
  10539. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10540. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10541. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10542. _userinfo = US.userInfo, //登录用户信息
  10543. _userid = US.userInfo.userid //登录用户id
  10544. let _iframe;
  10545. let _cid = cid,
  10546. _stage = stage,
  10547. _task = task,
  10548. _tool = tool;
  10549. var _jie = $$("div", {
  10550. "style": {
  10551. "position": "absolute",
  10552. "bottom": "50px",
  10553. "right": "50px",
  10554. "zIndex": "9999",
  10555. "backgroundColor": "#2268bc",
  10556. "color": "#fff",
  10557. "padding": "12px 20px",
  10558. "cursor": "pointer",
  10559. "borderRadius": "4px",
  10560. },
  10561. "innerHTML": "上传模板"
  10562. })
  10563. let aTool = ''
  10564. let _loading = document.createElement('div')
  10565. _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;"
  10566. // _loading.id = "";
  10567. let _lchild = document.createElement('div')
  10568. let _limg = document.createElement('img')
  10569. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10570. _limg.style = "width: 26px;margin-right: 10px;"
  10571. _lchild.appendChild(_limg)
  10572. let _lspan = document.createElement('span')
  10573. _lspan.innerHTML = "上传中..."
  10574. _lchild.appendChild(_lspan)
  10575. _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%);"
  10576. _loading.appendChild(_lchild)
  10577. var _box = $$('div', {
  10578. "style": {
  10579. "position": "relative",
  10580. "width": "100%",
  10581. "height": "100%",
  10582. },
  10583. })
  10584. _box.appendChild(_loading)
  10585. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10586. switch (str) {
  10587. case "whiteboard":
  10588. aTool = 1;
  10589. _iframe = $$("iframe", {
  10590. "frameborder": "no",
  10591. "border": "0",
  10592. "scrolling ": "no",
  10593. "style": {
  10594. "cssText": "border:0;width:100%;height:100%"
  10595. },
  10596. "src": "https://beta.iwb.cocorobo.cn/"
  10597. })
  10598. _box.appendChild(_iframe);
  10599. _box.appendChild(_jie);
  10600. _formdiv = new U.UF.UI.form(
  10601. "电子白板",
  10602. _box, {
  10603. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10604. "style": {
  10605. "width": "90%",
  10606. "height": "90%",
  10607. "overflow": 'hidden'
  10608. },
  10609. "onresize": function () { }
  10610. }, {
  10611. closecallback: function () { }
  10612. }, {
  10613. "style": {
  10614. "height": "36px"
  10615. }
  10616. }).form; //创建窗体
  10617. _taskbar = {
  10618. "id": str + _formdiv.id,
  10619. "style": {
  10620. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10621. },
  10622. "name": "电子白板",
  10623. "forms": _formdiv,
  10624. "click": function () {
  10625. U.MD.D.I.openApplication(str, obj, info);
  10626. }
  10627. }
  10628. break;
  10629. case "mind":
  10630. aTool = 3;
  10631. _iframe = $$("iframe", {
  10632. "frameborder": "no",
  10633. "border": "0",
  10634. "scrolling ": "no",
  10635. "style": {
  10636. "cssText": "border:0;width:100%;height:100%"
  10637. },
  10638. "src": "/kityminder-editor/dist/index.html"
  10639. });
  10640. _box.appendChild(_iframe);
  10641. _box.appendChild(_jie);
  10642. _formdiv = new U.UF.UI.form(
  10643. "思维导图",
  10644. _box, { //"/jsmind/example/demo.html"
  10645. "id": "minds_Yu" + cid + stage + task + tool,
  10646. "style": {
  10647. "width": "90%",
  10648. "height": "90%",
  10649. "overflow": 'hidden'
  10650. },
  10651. "onresize": function () { }
  10652. }, {
  10653. closecallback: function () { }
  10654. }, {
  10655. "style": {
  10656. "height": "36px"
  10657. }
  10658. }).form; //创建窗体
  10659. _taskbar = {
  10660. "id": str + _formdiv.id,
  10661. "style": {
  10662. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10663. },
  10664. "name": "思维导图",
  10665. "forms": _formdiv,
  10666. "click": function () {
  10667. U.MD.D.I.openApplication(str, obj, info);
  10668. }
  10669. }
  10670. break;
  10671. case "doc":
  10672. aTool = 6;
  10673. _iframe = $$("iframe", {
  10674. "frameborder": "no",
  10675. "border": "0",
  10676. "scrolling ": "no",
  10677. "style": {
  10678. "cssText": "border:0;width:100%;height:100%"
  10679. },
  10680. "src": "/Office/Word/WordEditArea.htm"
  10681. })
  10682. _box.appendChild(_iframe);
  10683. _box.appendChild(_jie);
  10684. _formdiv = new U.UF.UI.form(
  10685. "协同文档",
  10686. _box, {
  10687. "id": "docs_Yu" + cid + stage + task + tool,
  10688. "style": {
  10689. "width": "90%",
  10690. "height": "90%",
  10691. "overflow": 'hidden'
  10692. },
  10693. "onresize": function () { }
  10694. }, {
  10695. closecallback: function () { }
  10696. }, {
  10697. "style": {
  10698. "height": "36px"
  10699. }
  10700. }).form; //创建窗体
  10701. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10702. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10703. })
  10704. _taskbar = {
  10705. "id": str + _formdiv.id,
  10706. "style": {
  10707. "backgroundImage": "url(/img/icon/doc.png)"
  10708. },
  10709. "name": "协同文档",
  10710. "forms": _formdiv,
  10711. "click": function () {
  10712. U.MD.D.I.openApplication(str, obj, info);
  10713. }
  10714. }
  10715. break;
  10716. case "CocoPi":
  10717. aTool = 57;
  10718. _iframe = $$("iframe", {
  10719. "allowpaymentrequest": "allowpaymentrequest",
  10720. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10721. "webkitallowfullscreen": "",
  10722. "mozallowfullscreen": "",
  10723. "frameborder": "no",
  10724. "border": "0",
  10725. "scrolling ": "no",
  10726. "style": {
  10727. "cssText": "border:0;width:100%;height:100%"
  10728. },
  10729. "src": "https://pi.cocorobo.cn/"
  10730. })
  10731. _box.appendChild(_iframe);
  10732. _box.appendChild(_jie);
  10733. _formdiv = new U.UF.UI.form(
  10734. "CocoPi",
  10735. _box, {
  10736. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10737. "style": {
  10738. "width": "90%",
  10739. "height": "90%",
  10740. "overflow": 'hidden'
  10741. },
  10742. "onresize": function () { }
  10743. }, {
  10744. closecallback: function () { }
  10745. }, {
  10746. "style": {
  10747. "height": "36px"
  10748. }
  10749. }).form; //创建窗体
  10750. _taskbar = {
  10751. "id": str + _formdiv.id,
  10752. "style": {
  10753. "backgroundImage": "url(/img/icon/cocopi.png)"
  10754. },
  10755. "name": "CocoPi",
  10756. "forms": _formdiv,
  10757. "click": function () {
  10758. U.MD.D.I.openApplication(str, obj, info);
  10759. }
  10760. }
  10761. break;
  10762. case "ppt":
  10763. aTool = 73;
  10764. _iframe = $$("iframe", {
  10765. "frameborder": "no",
  10766. "border": "0",
  10767. "scrolling ": "no",
  10768. "style": {
  10769. "cssText": "border:0;width:100%;height:100%"
  10770. },
  10771. "src": "https://ppt.cocorobo.cn/"
  10772. });
  10773. _box.appendChild(_iframe);
  10774. _box.appendChild(_jie);
  10775. _formdiv = new U.UF.UI.form(
  10776. "PPT",
  10777. _box, { //"/jsmind/example/demo.html"
  10778. "id": "ppts_Yu" + cid + stage + task + tool,
  10779. "style": {
  10780. "width": "90%",
  10781. "height": "90%",
  10782. "overflow": 'hidden'
  10783. },
  10784. "onresize": function () { }
  10785. }, {
  10786. closecallback: function () { }
  10787. }, {
  10788. "style": {
  10789. "height": "36px"
  10790. }
  10791. }).form; //创建窗体
  10792. _taskbar = {
  10793. "id": str + _formdiv.id,
  10794. "style": {
  10795. "backgroundImage": "url(/img/icon/ppt.png)"
  10796. },
  10797. "name": "PPT",
  10798. "forms": _formdiv,
  10799. "click": function () {
  10800. U.MD.D.I.openApplication(str, obj, info);
  10801. }
  10802. }
  10803. break;
  10804. }
  10805. if (_iframe) {
  10806. if (str == 'doc') {
  10807. _iframe = _formdiv.querySelector('iframe')
  10808. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10809. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10810. })
  10811. if (onloadListener) {
  10812. _iframe.contentDocument.location.reload()
  10813. } else {
  10814. _iframe.contentDocument.location.reload()
  10815. }
  10816. } else if (str == 'mind') {
  10817. _iframe = _formdiv.querySelector('iframe')
  10818. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10819. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10820. })
  10821. if (onloadListener) {
  10822. _iframe.contentDocument.location.reload()
  10823. } else {
  10824. _iframe.contentDocument.location.reload()
  10825. }
  10826. } else if (str == 'whiteboard') {
  10827. _iframe = _formdiv.querySelector('iframe')
  10828. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10829. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10830. })
  10831. // if (onloadListener) {
  10832. // try {
  10833. // _iframe.src += "?cocorobo="+new Date().getTime()
  10834. // _iframe.contentWindow.document.location.reload()
  10835. // } catch (error) {
  10836. // }
  10837. // } else {
  10838. // _iframe.contentDocument.location.reload()
  10839. // }
  10840. } else if (str == 'CocoPi') {
  10841. _iframe = _formdiv.querySelector('iframe')
  10842. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10843. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10844. })
  10845. if (onloadListener) {
  10846. _iframe.contentDocument.location.reload()
  10847. } else {
  10848. _iframe.contentDocument.location.reload()
  10849. }
  10850. } else if (str == 'ppt') {
  10851. _iframe = _formdiv.querySelector('iframe')
  10852. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10853. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  10854. })
  10855. if (onloadListener) {
  10856. _iframe.contentDocument.location.reload()
  10857. } else {
  10858. _iframe.contentDocument.location.reload()
  10859. }
  10860. } else {
  10861. _iframe.onload = () => { };
  10862. }
  10863. _jie.onclick = async () => {
  10864. let text = ''
  10865. let type = '2'
  10866. if (aTool == 1) {
  10867. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10868. type = '3'
  10869. } else if (aTool == 6) {
  10870. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10871. type = '1'
  10872. } else if (aTool == 3) {
  10873. text = await U.MD.D.I.getEditorContent(_iframe);
  10874. type = '2'
  10875. } else if (aTool == 57) {
  10876. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10877. type = '4'
  10878. } else if (aTool == 73) {
  10879. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  10880. type = '5'
  10881. }
  10882. _loading.style.display = 'flex'
  10883. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10884. }
  10885. }
  10886. //U.MD.D.I.openClick(str);
  10887. //如果有任务栏信息
  10888. // if (_taskbar) {
  10889. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10890. // }
  10891. }
  10892. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10893. var xmlhttp;
  10894. var Mac, Sn, DeviceId
  10895. if (window.XMLHttpRequest) {
  10896. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10897. xmlhttp = new XMLHttpRequest();
  10898. } else {
  10899. // IE6, IE5 浏览器执行代码
  10900. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10901. }
  10902. xmlhttp.onreadystatechange = function () {
  10903. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10904. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10905. // resolve(res.value[0][0].text);
  10906. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10907. }
  10908. }
  10909. }
  10910. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10911. xmlhttp.send();
  10912. }
  10913. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10914. var xmlhttp;
  10915. var Mac, Sn, DeviceId
  10916. if (window.XMLHttpRequest) {
  10917. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10918. xmlhttp = new XMLHttpRequest();
  10919. } else {
  10920. // IE6, IE5 浏览器执行代码
  10921. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10922. }
  10923. xmlhttp.onreadystatechange = function () {
  10924. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10925. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10926. // resolve(res.value[0][0].text);
  10927. if (type == '2') {
  10928. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10929. } else if (type == '3') {
  10930. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10931. } else if (type == '4') {
  10932. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10933. } else if (type == '5') {
  10934. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  10935. }
  10936. } else {
  10937. if (type == '2') {
  10938. iframe.contentWindow.editor.minder.importData('json', '')
  10939. } else if (type == '3') {
  10940. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10941. } else if (type == '4') {
  10942. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10943. }
  10944. }
  10945. }
  10946. }
  10947. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10948. xmlhttp.send();
  10949. }
  10950. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10951. var xmlhttp;
  10952. var Mac, Sn, DeviceId
  10953. if (window.XMLHttpRequest) {
  10954. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10955. xmlhttp = new XMLHttpRequest();
  10956. } else {
  10957. // IE6, IE5 浏览器执行代码
  10958. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10959. }
  10960. xmlhttp.onreadystatechange = function () {
  10961. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10962. if (xmlhttp.response) {
  10963. // resolve(res.value[0][0].text);
  10964. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10965. // $(fileInput).val('');
  10966. // });
  10967. span.innerHTML = '上传成功'
  10968. setTimeout(() => {
  10969. loading.style.display = 'none'
  10970. }, 1000);
  10971. }
  10972. }
  10973. }
  10974. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10975. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10976. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10977. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10978. // 设置请求头,表示请求体的编码格式
  10979. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10980. // 设置请求体,使用url-encoded格式的数据
  10981. }
  10982. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10983. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10984. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10985. _userinfo = US.userInfo, //登录用户信息
  10986. _userid = US.userInfo.userid //登录用户id
  10987. let _iframe;
  10988. let _cid = cid,
  10989. _stage = stage,
  10990. _task = task,
  10991. _tool = tool;
  10992. var _jie = $$("div", {
  10993. "style": {
  10994. "position": "absolute",
  10995. "bottom": "50px",
  10996. "right": "50px",
  10997. "zIndex": "9999",
  10998. "backgroundColor": "#2268bc",
  10999. "color": "#fff",
  11000. "padding": "12px 20px",
  11001. "cursor": "pointer",
  11002. "borderRadius": "4px",
  11003. },
  11004. "innerHTML": "提交作业"
  11005. })
  11006. let aTool = ''
  11007. let _loading = document.createElement('div')
  11008. _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;"
  11009. // _loading.id = "";
  11010. let _lchild = document.createElement('div')
  11011. let _limg = document.createElement('img')
  11012. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11013. _limg.style = "width: 26px;margin-right: 10px;"
  11014. _lchild.appendChild(_limg)
  11015. let _lspan = document.createElement('span')
  11016. _lspan.innerHTML = "上传中..."
  11017. _lchild.appendChild(_lspan)
  11018. _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%);"
  11019. _loading.appendChild(_lchild)
  11020. var _box = $$('div', {
  11021. "style": {
  11022. "position": "relative",
  11023. "width": "100%",
  11024. "height": "100%",
  11025. },
  11026. })
  11027. _box.appendChild(_loading)
  11028. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11029. switch (str) {
  11030. case "CocoPi":
  11031. aTool = 57;
  11032. _iframe = $$("iframe", {
  11033. "allowpaymentrequest": "allowpaymentrequest",
  11034. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11035. "webkitallowfullscreen": "",
  11036. "mozallowfullscreen": "",
  11037. "frameborder": "no",
  11038. "border": "0",
  11039. "scrolling ": "no",
  11040. "style": {
  11041. "cssText": "border:0;width:100%;height:100%"
  11042. },
  11043. "src": "https://pi.cocorobo.cn/"
  11044. })
  11045. _box.appendChild(_iframe);
  11046. _box.appendChild(_jie);
  11047. _formdiv = new U.UF.UI.form(
  11048. "CocoPi",
  11049. _box, {
  11050. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11051. "style": {
  11052. "width": "90%",
  11053. "height": "90%",
  11054. "overflow": 'hidden'
  11055. },
  11056. "onresize": function () { }
  11057. }, {
  11058. closecallback: function () { }
  11059. }, {
  11060. "style": {
  11061. "height": "36px"
  11062. }
  11063. }).form; //创建窗体
  11064. _taskbar = {
  11065. "id": str + _formdiv.id,
  11066. "style": {
  11067. "backgroundImage": "url(/img/icon/cocopi.png)"
  11068. },
  11069. "name": "CocoPi",
  11070. "forms": _formdiv,
  11071. "click": function () {
  11072. U.MD.D.I.openApplication(str, obj, info);
  11073. }
  11074. }
  11075. break;
  11076. }
  11077. if (_iframe) {
  11078. if (str == 'CocoPi') {
  11079. _iframe = _formdiv.querySelector('iframe')
  11080. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11081. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11082. })
  11083. if (onloadListener) {
  11084. _iframe.contentDocument.location.reload()
  11085. } else {
  11086. _iframe.contentDocument.location.reload()
  11087. }
  11088. }
  11089. _jie.onclick = async () => {
  11090. let text = ''
  11091. if (aTool == 57) {
  11092. text = _iframe.contentWindow.getLoadXmlStr()
  11093. }
  11094. _loading.style.display = 'flex'
  11095. console.log(_loading);
  11096. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11097. _loading.style.display = 'none'
  11098. let _div = document.createElement('div')
  11099. _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;"
  11100. let _inner = document.createElement('div')
  11101. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11102. _inner.innerHTML = "上传成功"
  11103. _div.appendChild(_inner)
  11104. _iframe.contentWindow.window.document.body.appendChild(_div)
  11105. _div.onclick = () => {
  11106. _iframe.contentWindow.window.document.body.removeChild(_div)
  11107. }
  11108. setTimeout(() => {
  11109. _iframe.contentWindow.window.document.body.removeChild(_div)
  11110. }, 1000);
  11111. }, [], { "type": "POST", "withCredentials": true });
  11112. }
  11113. }
  11114. }
  11115. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11116. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11117. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11118. _userid = student.userid, //登录用户id
  11119. _username = student.student //用户名字
  11120. let _iframe;
  11121. let _cid = cid,
  11122. _stage = stage,
  11123. _task = task,
  11124. _tool = tool;
  11125. var _jie = $$("div", {
  11126. "style": {
  11127. "position": "absolute",
  11128. "bottom": "50px",
  11129. "right": "50px",
  11130. "zIndex": "9999",
  11131. "backgroundColor": "#2268bc",
  11132. "color": "#fff",
  11133. "padding": "12px 20px",
  11134. "cursor": "pointer",
  11135. "borderRadius": "4px",
  11136. },
  11137. "innerHTML": "提交作业"
  11138. })
  11139. let aTool = ''
  11140. let _loading = document.createElement('div')
  11141. _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;"
  11142. // _loading.id = "";
  11143. let _lchild = document.createElement('div')
  11144. let _limg = document.createElement('img')
  11145. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11146. _limg.style = "width: 26px;margin-right: 10px;"
  11147. _lchild.appendChild(_limg)
  11148. let _lspan = document.createElement('span')
  11149. _lspan.innerHTML = "上传中..."
  11150. _lchild.appendChild(_lspan)
  11151. _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%);"
  11152. _loading.appendChild(_lchild)
  11153. var _box = $$('div', {
  11154. "style": {
  11155. "position": "relative",
  11156. "width": "100%",
  11157. "height": "100%",
  11158. },
  11159. })
  11160. _box.appendChild(_loading)
  11161. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11162. switch (str) {
  11163. case "CocoPi":
  11164. aTool = 57;
  11165. _iframe = $$("iframe", {
  11166. "allowpaymentrequest": "allowpaymentrequest",
  11167. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11168. "webkitallowfullscreen": "",
  11169. "mozallowfullscreen": "",
  11170. "frameborder": "no",
  11171. "border": "0",
  11172. "scrolling ": "no",
  11173. "style": {
  11174. "cssText": "border:0;width:100%;height:100%"
  11175. },
  11176. "src": "https://pi.cocorobo.cn/"
  11177. })
  11178. _box.appendChild(_iframe);
  11179. _box.appendChild(_jie);
  11180. _formdiv = new U.UF.UI.form(
  11181. "CocoPi-" + _username,
  11182. _box, {
  11183. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11184. "style": {
  11185. "width": "90%",
  11186. "height": "90%",
  11187. "overflow": 'hidden'
  11188. },
  11189. "onresize": function () { }
  11190. }, {
  11191. closecallback: function () { }
  11192. }, {
  11193. "style": {
  11194. "height": "36px"
  11195. }
  11196. }).form; //创建窗体
  11197. _taskbar = {
  11198. "id": str + _formdiv.id,
  11199. "style": {
  11200. "backgroundImage": "url(/img/icon/cocopi.png)"
  11201. },
  11202. "name": "CocoPi",
  11203. "forms": _formdiv,
  11204. "click": function () {
  11205. U.MD.D.I.openApplication(str, obj, info);
  11206. }
  11207. }
  11208. break;
  11209. }
  11210. if (_iframe) {
  11211. if (str == 'CocoPi') {
  11212. _iframe = _formdiv.querySelector('iframe')
  11213. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11214. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11215. })
  11216. if (onloadListener) {
  11217. _iframe.contentDocument.location.reload()
  11218. } else {
  11219. _iframe.contentDocument.location.reload()
  11220. }
  11221. }
  11222. _jie.onclick = async () => {
  11223. let text = ''
  11224. if (aTool == 57) {
  11225. text = _iframe.contentWindow.getLoadXmlStr()
  11226. }
  11227. _loading.style.display = 'flex'
  11228. console.log(_loading);
  11229. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11230. _loading.style.display = 'none'
  11231. let _div = document.createElement('div')
  11232. _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;"
  11233. let _inner = document.createElement('div')
  11234. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11235. _inner.innerHTML = "上传成功"
  11236. _div.appendChild(_inner)
  11237. _iframe.contentWindow.window.document.body.appendChild(_div)
  11238. _div.onclick = () => {
  11239. _iframe.contentWindow.window.document.body.removeChild(_div)
  11240. }
  11241. setTimeout(() => {
  11242. _iframe.contentWindow.window.document.body.removeChild(_div)
  11243. }, 1000);
  11244. }, [], { "type": "POST", "withCredentials": true });
  11245. }
  11246. }
  11247. }
  11248. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11249. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11250. if (res.value[0].length > 0) {
  11251. if (atool == 57) {
  11252. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11253. }
  11254. } else {
  11255. if (atool == 57) {
  11256. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11257. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11258. }
  11259. }
  11260. }, [], { "type": "POST", "withCredentials": true });
  11261. }
  11262. U.MD.D.addOp = function (text, type, time) {
  11263. var userInfo = US.userInfo;
  11264. if (Object.keys(userInfo).length !== 0) {
  11265. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11266. }, [], { "type": "POST", "withCredentials": true });
  11267. }
  11268. }