DeskTop.js 723 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465
  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. ];
  717. //hk
  718. U.MD.D.I.tycyteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.ckcpsteacherDeskIcon = [
  744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  750. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  751. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  752. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  753. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  754. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  755. ];
  756. //hk
  757. U.MD.D.I.ckcpsStudentDeskIcon = [
  758. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  760. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  761. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  762. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  765. ];
  766. //hk
  767. U.MD.D.I.hkaceteacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  775. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  776. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  777. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  778. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  779. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  780. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  781. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  782. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  787. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  788. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  789. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  790. ];
  791. //hk
  792. U.MD.D.I.hkaceStudentDeskIcon = [
  793. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  796. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  797. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. ];
  800. //香海正覺蓮社佛教正覺中學
  801. U.MD.D.I.hkZJLSteacherDeskIcon = [
  802. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  803. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  804. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  811. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  812. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  813. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  815. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //香海正覺蓮社佛教正覺中學
  820. U.MD.D.I.hkZJLSStudentDeskIcon = [
  821. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. ];
  826. //云海
  827. U.MD.D.I.yunhaiTeacherDeskIcon = [
  828. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  829. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  830. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  831. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  832. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  833. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  834. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  835. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  836. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  837. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  838. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  839. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  842. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  843. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //福田
  848. U.MD.D.I.heyuanTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  857. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  860. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  861. ];
  862. //福田
  863. U.MD.D.I.heyuanAdminDeskIcon = [
  864. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  865. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  866. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  867. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  868. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  869. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  870. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  871. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  872. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  873. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  874. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  875. ];
  876. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  877. U.MD.D.I.szherTeacherDeskIcon = [
  878. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  879. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  885. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  886. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  888. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  889. ];
  890. //dsei
  891. U.MD.D.I.dseiTeacherDeskIcon = [
  892. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  893. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  894. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  895. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  896. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  897. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  898. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  899. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  900. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  901. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  902. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  903. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  904. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  905. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  906. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  907. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  908. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  909. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  910. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  911. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  912. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  913. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  914. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  915. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  916. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  917. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  918. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  919. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  920. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  921. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  922. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  923. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  924. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  925. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  926. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  927. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  928. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  929. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  930. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  932. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  933. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  934. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  935. ];
  936. //dsei
  937. U.MD.D.I.dseiAdminDeskIcon = [
  938. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  939. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  940. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  941. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  942. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  943. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  944. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  945. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  946. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  947. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  948. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  949. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  950. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  951. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  952. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  953. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  954. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  955. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  956. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  957. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  958. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  959. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  960. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  961. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  962. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  963. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  964. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  965. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  966. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  967. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  968. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  969. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  970. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  971. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  972. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  973. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  974. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  975. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  979. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  980. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  981. ];
  982. //dsei
  983. U.MD.D.I.dseiStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. ];
  991. //未来教育基地
  992. U.MD.D.I.szjkyTeacherDeskIcon = [
  993. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  994. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  995. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  996. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  997. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  998. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  999. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1000. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1001. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1002. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1003. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1004. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1005. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1006. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1007. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1009. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1010. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1011. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1012. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1013. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1014. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1015. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1016. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1017. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1018. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1019. ];
  1020. //未来教育基地
  1021. U.MD.D.I.szjkyAdminDeskIcon = [
  1022. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1023. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1027. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1028. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1029. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1030. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1041. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1042. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1043. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1044. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1045. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1046. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1047. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1048. ];
  1049. //未来教育基地
  1050. U.MD.D.I.szjkyStudentDeskIcon = [
  1051. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1056. ];
  1057. //成华教育局
  1058. U.MD.D.I.chjyjTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1064. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1069. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1070. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //成华教育局chjyj
  1075. U.MD.D.I.chjyjAdminDeskIcon = [
  1076. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1079. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1080. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1081. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1082. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1083. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1084. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //成华教育局chjyj
  1093. U.MD.D.I.chjyjStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //tpc
  1100. U.MD.D.I.tpcStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //tpc
  1107. U.MD.D.I.tpcTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1111. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1112. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //tpc
  1117. U.MD.D.I.tpcAdminDeskIcon = [
  1118. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1119. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1124. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1125. ];
  1126. //THU-IOE
  1127. U.MD.D.I.thuioeTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1138. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1139. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1140. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1141. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1142. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1143. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1144. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1145. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1146. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1147. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1148. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1149. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1150. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1151. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1152. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1153. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1154. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1155. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1156. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1157. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1158. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1159. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1160. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1161. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1162. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1163. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1166. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1167. ];
  1168. //THU-IOE
  1169. U.MD.D.I.thuioeStudentDeskIcon = [
  1170. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1174. ];
  1175. //jccssyl
  1176. U.MD.D.I.jccssylTeacherDeskIcon = [
  1177. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1178. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1179. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1180. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1181. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1182. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1183. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1184. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1185. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1186. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1187. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1188. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1189. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1190. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1191. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1193. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //jccssyl
  1198. U.MD.D.I.jccssylStudentDeskIcon = [
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1201. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //cale
  1205. U.MD.D.I.caleTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1209. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1210. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1215. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1216. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1217. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1219. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1220. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1225. ];
  1226. //cale
  1227. U.MD.D.I.caleStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. ];
  1233. //lqwmsgzs
  1234. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1235. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1236. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1237. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1238. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1239. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1242. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1243. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1244. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1245. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1246. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1247. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1248. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1249. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1250. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1251. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1252. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1253. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1254. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1255. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1256. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1257. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1258. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1259. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1260. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1261. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1262. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1263. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1264. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1265. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1266. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1267. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1268. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. ];
  1273. //lqwmsgzs
  1274. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1275. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1276. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1279. ];
  1280. //盐田区幼儿园
  1281. U.MD.D.I.ytyTeacherDeskIcon = [
  1282. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1283. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1284. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1285. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1286. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1287. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1288. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1289. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1290. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1291. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1292. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1293. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1294. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1295. ];
  1296. //盐田区幼儿园
  1297. U.MD.D.I.ytyStudentDeskIcon = [
  1298. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1304. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1305. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1309. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1310. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1311. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1312. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1313. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1314. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1315. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1316. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1319. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1320. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1321. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1322. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1323. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1324. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1325. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1326. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1327. ];
  1328. //scnuai
  1329. U.MD.D.I.scnuaiAdminDeskIcon = [
  1330. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1331. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1337. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1338. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1339. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1340. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1341. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1342. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1345. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1346. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1347. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1348. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1349. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1350. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1351. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1352. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1353. ];
  1354. //scnuai
  1355. U.MD.D.I.scnuaiStudentDeskIcon = [
  1356. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. ];
  1361. //cocobiz
  1362. U.MD.D.I.cocobizteacherDeskIcon = [
  1363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1365. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1366. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1367. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1368. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1369. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1370. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1371. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1372. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1373. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1374. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1376. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1377. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1379. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1381. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1382. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1383. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1384. ];
  1385. //cocobiz
  1386. U.MD.D.I.cocobizStudentDeskIcon = [
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1389. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1390. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1391. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1393. ];
  1394. //xxzjky
  1395. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1400. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1402. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1403. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1407. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1408. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1409. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1410. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1415. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1416. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1417. ];
  1418. //xxzjky
  1419. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1420. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1424. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //nsfx
  1428. U.MD.D.I.nsfxTeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1437. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1438. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1439. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1440. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1444. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1445. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1446. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1447. ];
  1448. //nsfx
  1449. U.MD.D.I.nsfxStudentDeskIcon = [
  1450. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1451. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1452. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. ];
  1455. //stia
  1456. U.MD.D.I.stiaTeacherDeskIcon = [
  1457. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1458. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1460. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1461. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1466. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1467. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1468. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1469. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1470. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1472. ];
  1473. //stia
  1474. U.MD.D.I.stiaStudentDeskIcon = [
  1475. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1476. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. ];
  1480. //szdjg
  1481. U.MD.D.I.szdjgTeacherDeskIcon = [
  1482. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1483. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1484. ];
  1485. //szdjg
  1486. U.MD.D.I.szdjgStudentDeskIcon = [
  1487. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //010607
  1493. U.MD.D.I.x010607TeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1497. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1498. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1501. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //010607
  1511. U.MD.D.I.x010607StudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //010608
  1518. U.MD.D.I.x010608TeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1522. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1523. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1526. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1528. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1529. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1530. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1531. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1532. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1533. ];
  1534. //010608
  1535. U.MD.D.I.x010608StudentDeskIcon = [
  1536. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1540. ];
  1541. //xhly
  1542. U.MD.D.I.xhlyTeacherDeskIcon = [
  1543. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1544. ];
  1545. //010608
  1546. U.MD.D.I.xhlyStudentDeskIcon = [
  1547. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. ];
  1549. //北师大
  1550. U.MD.D.I.BSDNSteacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1559. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1560. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1561. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1562. ];
  1563. //北师大
  1564. U.MD.D.I.BSDNSstudentDeskIcon = [
  1565. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1569. ];
  1570. //CUHK_EDU
  1571. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1572. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1573. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1575. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1576. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1580. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1582. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1583. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1584. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1585. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1586. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1587. ];
  1588. //CUHK_EDU
  1589. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1590. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. ];
  1595. //010503
  1596. U.MD.D.I.x010503TeacherDeskIcon = [
  1597. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1598. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1600. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1601. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1602. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1605. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1606. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1607. ];
  1608. //010503
  1609. U.MD.D.I.x010503StudentDeskIcon = [
  1610. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. ];
  1615. //SPROUT Lab
  1616. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1621. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1622. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1627. ];
  1628. //SPROUT Lab
  1629. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1634. ];
  1635. //010204
  1636. U.MD.D.I.x010204TeacherDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. ];
  1640. //010204
  1641. U.MD.D.I.x010204StudentDeskIcon = [
  1642. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1643. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1644. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. ];
  1647. //trail
  1648. U.MD.D.I.trailTeacherDeskIcon = [
  1649. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1650. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1652. ];
  1653. //trail
  1654. U.MD.D.I.trailStudentDeskIcon = [
  1655. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1658. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. ];
  1660. //trial
  1661. U.MD.D.I.trialTeacherDeskIcon = [
  1662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1667. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1668. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1669. ];
  1670. //trial
  1671. U.MD.D.I.trialStudentDeskIcon = [
  1672. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1675. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1676. ];
  1677. //010504
  1678. U.MD.D.I.x010504TeacherDeskIcon = [
  1679. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1680. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1681. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1682. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1690. ];
  1691. //010504
  1692. U.MD.D.I.x010504StudentDeskIcon = [
  1693. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1696. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. ];
  1698. //010505
  1699. U.MD.D.I.x010505TeacherDeskIcon = [
  1700. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1701. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1703. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1704. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1705. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1707. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1711. ];
  1712. //010505
  1713. U.MD.D.I.x010505StudentDeskIcon = [
  1714. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1717. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1718. ];
  1719. //SCNUET
  1720. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1721. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1722. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1725. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1727. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1728. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1729. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1730. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1731. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1732. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1733. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1734. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1735. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1738. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1739. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1740. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1741. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1742. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1745. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1746. ];
  1747. //SCNUET
  1748. U.MD.D.I.SCNUETAdminDeskIcon = [
  1749. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1750. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1751. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1754. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1755. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1756. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1757. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1758. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1759. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1760. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1761. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1762. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1763. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1765. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1767. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1768. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1769. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1772. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1773. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1774. ];
  1775. //SCNUET
  1776. U.MD.D.I.SCNUETStudentDeskIcon = [
  1777. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1778. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1779. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1780. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1781. ];
  1782. //x020201
  1783. U.MD.D.I.x020201TeacherDeskIcon = [
  1784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1788. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1789. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1790. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1794. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1795. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1796. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1797. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1798. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1799. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1800. ];
  1801. //x020201
  1802. U.MD.D.I.x020201AdminDeskIcon = [
  1803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1808. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1809. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1810. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1811. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1814. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1815. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1816. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1817. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1818. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1819. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1820. ];
  1821. //020201
  1822. U.MD.D.I.x020201StudentDeskIcon = [
  1823. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1825. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1827. ];
  1828. //010611
  1829. U.MD.D.I.x010611TeacherDeskIcon = [
  1830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1832. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1833. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1834. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1838. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1839. ];
  1840. //010611
  1841. U.MD.D.I.x010611StudentDeskIcon = [
  1842. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1843. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1844. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1846. ];
  1847. //010612
  1848. U.MD.D.I.x010612TeacherDeskIcon = [
  1849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1852. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1853. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1854. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1855. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1856. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1857. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1858. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1859. ];
  1860. //010612
  1861. U.MD.D.I.x010612StudentDeskIcon = [
  1862. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1863. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1864. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1865. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1866. ];
  1867. //tianyuan
  1868. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1869. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1870. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1872. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1873. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1874. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1875. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1876. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1877. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1878. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1879. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1880. ];
  1881. //010611
  1882. U.MD.D.I.tianyuanStudentDeskIcon = [
  1883. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1884. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1885. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1886. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1887. ];
  1888. //320101
  1889. U.MD.D.I.x320101TeacherDeskIcon = [
  1890. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1891. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1893. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1894. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1895. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1896. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1897. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1898. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1899. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1900. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1901. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1902. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1903. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1904. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1905. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1906. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1907. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1908. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1909. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1910. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1911. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1912. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1913. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1914. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1915. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1916. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1917. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1918. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1919. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1920. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1921. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1922. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1923. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1925. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1926. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1927. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1928. ];
  1929. //320101
  1930. U.MD.D.I.x320101StudentDeskIcon = [
  1931. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1932. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1935. ];
  1936. //szsy
  1937. U.MD.D.I.szsyTeacherDeskIcon = [
  1938. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1939. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1941. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1942. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1943. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1944. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1945. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1946. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1947. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1948. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1949. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1950. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1951. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1952. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1953. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1954. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1955. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1956. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1957. ];
  1958. //szsy
  1959. U.MD.D.I.szsyStudentDeskIcon = [
  1960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1961. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1962. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1964. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1965. ];
  1966. //010404
  1967. U.MD.D.I.x010404TeacherDeskIcon = [
  1968. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1969. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1970. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1971. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1972. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1973. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1974. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1975. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1976. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1977. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. ];
  1980. //010404
  1981. U.MD.D.I.x010404StudentDeskIcon = [
  1982. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1983. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1985. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1986. ];
  1987. //cocorobo demo
  1988. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1989. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1990. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1995. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1996. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1997. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1998. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1999. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2000. ];
  2001. //cocorobo demo
  2002. U.MD.D.I.demoCocoStudentDeskIcon = [
  2003. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2005. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2006. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2007. ];
  2008. //#region 桌面初始化a
  2009. /**
  2010. * 初始化桌面的起始函数
  2011. *
  2012. */
  2013. U.MD.D.I.init = function () {
  2014. if ($("#U_MD_D_K")[0]) {
  2015. //初始化桌面图标
  2016. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2017. // var clickUrl = ':12588/requestIp.php';
  2018. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2019. // U.MD.D.I.Ip = data;
  2020. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2021. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2022. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2023. // })
  2024. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2025. // })
  2026. }
  2027. }
  2028. /**
  2029. * 模式切换
  2030. *
  2031. */
  2032. U.MD.D.I.ModeCheck = function (type) {
  2033. if (US.Config.type == type) {
  2034. return
  2035. }
  2036. US.Config.type = type
  2037. $('.U_PBL_Check .active')[0].className = ''
  2038. if (type == 1) {
  2039. $('.U_PBL_Check div')[0].className = 'active'
  2040. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2041. } else {
  2042. $('.U_PBL_Check div')[1].className = 'active'
  2043. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2044. }
  2045. //初始化桌面图标
  2046. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2047. if (type == 2) {
  2048. U.MD.D.I.openApplication("project")
  2049. }
  2050. }
  2051. /**
  2052. * 隐藏任务栏
  2053. *
  2054. * @param {element} 桌面元素
  2055. */
  2056. U.MD.D.I.hiddenTaskbar = function (el) {
  2057. //任务栏位置变小
  2058. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2059. //桌面的位置变大
  2060. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2061. }
  2062. /**
  2063. * 隐藏任务栏
  2064. *
  2065. * @param {element} 桌面元素
  2066. */
  2067. U.MD.D.I.hiddenTaskbarout = function (el) {
  2068. //任务栏位置变小
  2069. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2070. //任务栏位置变化
  2071. U.selectEl(el).css({ "bottom": "-60px" });
  2072. //桌面的位置变大
  2073. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2074. }
  2075. }
  2076. /**
  2077. * 初始化打印桌面图标
  2078. *
  2079. * @param {element} 桌面元素
  2080. */
  2081. U.MD.D.I.initDesktopIcons = function (el, type) {
  2082. var i, //用于循环
  2083. _content, //桌面图标元素
  2084. _iconcontent, //桌面图标元素
  2085. _frag = $$("frag"), //定义一个碎片元素
  2086. _type = US.userInfo.type,
  2087. _org = US.userInfo.org,
  2088. _oid = US.userInfo.organizeid,
  2089. _role = US.userInfo.role,
  2090. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2091. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2092. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2093. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2094. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2095. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2096. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2097. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2098. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2099. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2100. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2101. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2102. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2103. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2104. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2105. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2106. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2107. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2108. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2109. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2110. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2111. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2112. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2113. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2114. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2115. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2116. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2117. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2118. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2119. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2120. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2121. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2122. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2123. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2124. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2125. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2126. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2127. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2128. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2129. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2130. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2131. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2132. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2133. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2134. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2135. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2136. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2137. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2138. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2139. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2140. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2141. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2142. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2143. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2144. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2145. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2146. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2147. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2148. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2149. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2150. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2151. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2152. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2153. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2154. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2155. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2156. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2157. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2158. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2159. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2160. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2161. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2162. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2163. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2164. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2165. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2166. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2167. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2168. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2169. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2170. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2171. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2172. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2173. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2174. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2175. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2176. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2177. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2178. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2179. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2180. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2181. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2182. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2183. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2184. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2185. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2186. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2187. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2188. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2189. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2190. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2191. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2192. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2193. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2194. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2195. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2196. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2197. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2198. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2199. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2200. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2201. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2202. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2203. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2204. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2205. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2206. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2207. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2208. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2209. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2210. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2211. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2212. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2213. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2214. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2215. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2216. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2217. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2218. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2219. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2220. 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'];
  2221. 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'];
  2222. 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",]
  2223. //清楚桌面图标
  2224. el.innerHTML = "";
  2225. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2226. _teacherDesktopIconInfo.push(
  2227. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2228. { "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)" } },
  2229. )
  2230. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2231. }
  2232. 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') {
  2233. _teacherDesktopIconInfo.push(
  2234. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2235. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2236. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2237. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2238. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2239. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2240. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2241. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2242. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2244. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2246. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2247. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2248. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2249. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2250. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2251. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2252. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2253. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2254. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2255. )
  2256. }
  2257. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2258. _teacherDesktopIconInfo.push(
  2259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2260. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2261. )
  2262. }
  2263. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2264. _nsfxTeacherDeskIconInfo.push(
  2265. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2266. )
  2267. }
  2268. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2269. // _teacherDesktopIconInfo.push(
  2270. // )
  2271. // }
  2272. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2273. _teacherDesktopIconInfo.push(
  2274. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2275. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. )
  2277. }
  2278. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2279. _teacherDesktopIconInfo.push(
  2280. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2281. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2282. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2283. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2284. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2285. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2286. )
  2287. _studentDesktopIconInfo.push(
  2288. )
  2289. }
  2290. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2291. _teacherDesktopIconInfo.push(
  2292. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2293. )
  2294. _studentDesktopIconInfo.push(
  2295. )
  2296. }
  2297. //010606 组织
  2298. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2299. _teacherDesktopIconInfo.push(
  2300. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2301. )
  2302. _studentDesktopIconInfo.push(
  2303. )
  2304. }
  2305. //麒麟二中 和 民新小学
  2306. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2307. _teacherDesktopIconInfo.push(
  2308. )
  2309. }
  2310. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2311. _teacherDesktopIconInfo.push(
  2312. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2313. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2314. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2315. )
  2316. }
  2317. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2318. _hkTeacherDeskIconInfo.push(
  2319. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2320. )
  2321. }
  2322. //北师大附中(010601)
  2323. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2324. // _teacherDesktopIconInfo.push(
  2325. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2326. // )
  2327. // _studentDesktopIconInfo.push(
  2328. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2329. // )
  2330. // }
  2331. //樂善堂余近卿中學
  2332. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2333. _teacherDesktopIconInfo.push(
  2334. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2335. )
  2336. }
  2337. // Education Artificial Intelligence
  2338. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2339. _teacherDesktopIconInfo.push(
  2340. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2341. )
  2342. }
  2343. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2344. _teacherDesktopIconInfo.push(
  2345. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2346. )
  2347. }
  2348. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2349. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2350. _teacherDesktopIconInfo.push(
  2351. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2352. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2353. )
  2354. }
  2355. //麒麟二中
  2356. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2357. _studentDesktopIconInfo.push(
  2358. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2360. )
  2361. }
  2362. //万科双语
  2363. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2364. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2365. if (el.Name == '项目管理') {
  2366. el.Name = 'PBL项目'
  2367. }
  2368. return el
  2369. })
  2370. _studentDesktopIconInfo3.push(
  2371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2372. )
  2373. }
  2374. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2375. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2376. return el.Name != '魔盒识字' && el.Name != '24点'
  2377. })
  2378. }
  2379. 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) {
  2380. _studentDesktopIconInfo.push(
  2381. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2382. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2383. )
  2384. }
  2385. //循环创建桌面图标
  2386. if (type == 1) {
  2387. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2388. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2389. _content = $$("div", {
  2390. className: "U_MD_D_KO",
  2391. "onmousedown": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_studentDesktopIconInfo[i]]),
  2395. "onclick": U.UF.C.closure(function (obj) {
  2396. //防止拖动图标即打开了桌面应用
  2397. U.MD.D.click(this, obj);
  2398. }, [_studentDesktopIconInfo[i]])
  2399. }, _frag); //
  2400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2403. }
  2404. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2405. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2406. _content = $$("div", {
  2407. className: "U_MD_D_KO",
  2408. "onmousedown": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2412. "onclick": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_hkZJLSStudentDeskIconInfo[i]])
  2416. }, _frag); //
  2417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2420. } //
  2421. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2422. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2423. _content = $$("div", {
  2424. className: "U_MD_D_KO",
  2425. "onmousedown": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_ytyStudentDeskIconInfo[i]]),
  2429. "onclick": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_ytyStudentDeskIconInfo[i]])
  2433. }, _frag); //
  2434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2437. } //
  2438. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2439. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2440. _content = $$("div", {
  2441. className: "U_MD_D_KO",
  2442. "onmousedown": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_jccssylStudentDeskIconInfo[i]]),
  2446. "onclick": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_jccssylStudentDeskIconInfo[i]])
  2450. }, _frag); //
  2451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2454. }
  2455. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2456. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2457. _content = $$("div", {
  2458. className: "U_MD_D_KO",
  2459. "onmousedown": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_scnuaiStudentDeskIconInfo[i]]),
  2463. "onclick": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_scnuaiStudentDeskIconInfo[i]])
  2467. }, _frag); //
  2468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2471. }
  2472. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2473. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2474. _content = $$("div", {
  2475. className: "U_MD_D_KO",
  2476. "onmousedown": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_caleStudentDeskIconInfo[i]]),
  2480. "onclick": U.UF.C.closure(function (obj) {
  2481. //防止拖动图标即打开了桌面应用
  2482. U.MD.D.click(this, obj);
  2483. }, [_caleStudentDeskIconInfo[i]])
  2484. }, _frag); //
  2485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2488. }
  2489. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2490. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2491. _content = $$("div", {
  2492. className: "U_MD_D_KO",
  2493. "onmousedown": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_thuioeStudentDeskIconInfo[i]]),
  2497. "onclick": U.UF.C.closure(function (obj) {
  2498. //防止拖动图标即打开了桌面应用
  2499. U.MD.D.click(this, obj);
  2500. }, [_thuioeStudentDeskIconInfo[i]])
  2501. }, _frag); //
  2502. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2505. }
  2506. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2507. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2508. _content = $$("div", {
  2509. className: "U_MD_D_KO",
  2510. "onmousedown": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_tpcStudentDeskIconInfo[i]]),
  2514. "onclick": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_tpcStudentDeskIconInfo[i]])
  2518. }, _frag); //
  2519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2522. } //
  2523. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2524. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2525. _content = $$("div", {
  2526. className: "U_MD_D_KO",
  2527. "onmousedown": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_chjyjStudentDeskIconInfo[i]]),
  2531. "onclick": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_chjyjStudentDeskIconInfo[i]])
  2535. }, _frag); //
  2536. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2537. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2538. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2539. }
  2540. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2541. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2542. _content = $$("div", {
  2543. className: "U_MD_D_KO",
  2544. "onmousedown": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_szjkyStudentDeskIconInfo[i]]),
  2548. "onclick": U.UF.C.closure(function (obj) {
  2549. //防止拖动图标即打开了桌面应用
  2550. U.MD.D.click(this, obj);
  2551. }, [_szjkyStudentDeskIconInfo[i]])
  2552. }, _frag); //
  2553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2556. }
  2557. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2558. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2559. _content = $$("div", {
  2560. className: "U_MD_D_KO",
  2561. "onmousedown": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_x020201StudentDeskIconInfo[i]]),
  2565. "onclick": U.UF.C.closure(function (obj) {
  2566. //防止拖动图标即打开了桌面应用
  2567. U.MD.D.click(this, obj);
  2568. }, [_x020201StudentDeskIconInfo[i]])
  2569. }, _frag); //
  2570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2573. }
  2574. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2575. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2576. _content = $$("div", {
  2577. className: "U_MD_D_KO",
  2578. "onmousedown": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_SCNUETStudentDeskIconInfo[i]]),
  2582. "onclick": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_SCNUETStudentDeskIconInfo[i]])
  2586. }, _frag); //
  2587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2590. }
  2591. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2592. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2593. _content = $$("div", {
  2594. className: "U_MD_D_KO",
  2595. "onmousedown": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_dseiStudentDeskIconInfo[i]]),
  2599. "onclick": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_dseiStudentDeskIconInfo[i]])
  2603. }, _frag); //
  2604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2607. }
  2608. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2609. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2610. _content = $$("div", {
  2611. className: "U_MD_D_KO",
  2612. "onmousedown": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2616. "onclick": U.UF.C.closure(function (obj) {
  2617. //防止拖动图标即打开了桌面应用
  2618. U.MD.D.click(this, obj);
  2619. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2620. }, _frag); //
  2621. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2622. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2623. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2624. }
  2625. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2626. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2627. _content = $$("div", {
  2628. className: "U_MD_D_KO",
  2629. "onmousedown": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_nsfxStudentDeskIconInfo[i]]),
  2633. "onclick": U.UF.C.closure(function (obj) {
  2634. //防止拖动图标即打开了桌面应用
  2635. U.MD.D.click(this, obj);
  2636. }, [_nsfxStudentDeskIconInfo[i]])
  2637. }, _frag); //
  2638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2641. }
  2642. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2643. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2644. _content = $$("div", {
  2645. className: "U_MD_D_KO",
  2646. "onmousedown": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_stiaStudentDeskIconInfo[i]]),
  2650. "onclick": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_stiaStudentDeskIconInfo[i]])
  2654. }, _frag); //
  2655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2658. }
  2659. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2660. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2661. _content = $$("div", {
  2662. className: "U_MD_D_KO",
  2663. "onmousedown": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_szdjgStudentDeskIconInfo[i]]),
  2667. "onclick": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_szdjgStudentDeskIconInfo[i]])
  2671. }, _frag); //
  2672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2675. }
  2676. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2677. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2678. _content = $$("div", {
  2679. className: "U_MD_D_KO",
  2680. "onmousedown": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_x010607StudentDeskIconInfo[i]]),
  2684. "onclick": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_x010607StudentDeskIconInfo[i]])
  2688. }, _frag); //
  2689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2692. }
  2693. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2694. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2695. _content = $$("div", {
  2696. className: "U_MD_D_KO",
  2697. "onmousedown": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_xhlyStudentDeskIconInfo[i]]),
  2701. "onclick": U.UF.C.closure(function (obj) {
  2702. //防止拖动图标即打开了桌面应用
  2703. U.MD.D.click(this, obj);
  2704. }, [_xhlyStudentDeskIconInfo[i]])
  2705. }, _frag); //
  2706. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2707. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2708. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2709. }
  2710. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2711. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2712. _content = $$("div", {
  2713. className: "U_MD_D_KO",
  2714. "onmousedown": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2718. "onclick": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2722. }, _frag); //
  2723. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2724. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2725. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2726. }
  2727. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2728. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2729. _content = $$("div", {
  2730. className: "U_MD_D_KO",
  2731. "onmousedown": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_x010503StudentDeskIconInfo[i]]),
  2735. "onclick": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_x010503StudentDeskIconInfo[i]])
  2739. }, _frag); //
  2740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2743. }
  2744. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2745. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2746. _content = $$("div", {
  2747. className: "U_MD_D_KO",
  2748. "onmousedown": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_x010504StudentDeskIconInfo[i]]),
  2752. "onclick": U.UF.C.closure(function (obj) {
  2753. //防止拖动图标即打开了桌面应用
  2754. U.MD.D.click(this, obj);
  2755. }, [_x010504StudentDeskIconInfo[i]])
  2756. }, _frag); //
  2757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2760. }
  2761. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2762. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2763. _content = $$("div", {
  2764. className: "U_MD_D_KO",
  2765. "onmousedown": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_x010505StudentDeskIconInfo[i]]),
  2769. "onclick": U.UF.C.closure(function (obj) {
  2770. //防止拖动图标即打开了桌面应用
  2771. U.MD.D.click(this, obj);
  2772. }, [_x010505StudentDeskIconInfo[i]])
  2773. }, _frag); //
  2774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2777. }
  2778. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2779. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2780. _content = $$("div", {
  2781. className: "U_MD_D_KO",
  2782. "onmousedown": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010404StudentDeskIconInfo[i]]),
  2786. "onclick": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_x010404StudentDeskIconInfo[i]])
  2790. }, _frag); //
  2791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2794. }
  2795. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2796. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_x010204StudentDeskIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_x010204StudentDeskIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2811. }
  2812. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2813. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2814. _content = $$("div", {
  2815. className: "U_MD_D_KO",
  2816. "onmousedown": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_x320101StudentDeskIconInfo[i]]),
  2820. "onclick": U.UF.C.closure(function (obj) {
  2821. //防止拖动图标即打开了桌面应用
  2822. U.MD.D.click(this, obj);
  2823. }, [_x320101StudentDeskIconInfo[i]])
  2824. }, _frag); //
  2825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2828. }
  2829. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2830. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2831. _content = $$("div", {
  2832. className: "U_MD_D_KO",
  2833. "onmousedown": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_trailStudentDeskIconInfo[i]]),
  2837. "onclick": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_trailStudentDeskIconInfo[i]])
  2841. }, _frag); //
  2842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2845. }
  2846. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2847. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2848. _content = $$("div", {
  2849. className: "U_MD_D_KO",
  2850. "onmousedown": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_trialStudentDeskIconInfo[i]]),
  2854. "onclick": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_trialStudentDeskIconInfo[i]])
  2858. }, _frag); //
  2859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2862. }
  2863. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2864. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2865. _content = $$("div", {
  2866. className: "U_MD_D_KO",
  2867. "onmousedown": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2871. "onclick": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2875. }, _frag); //
  2876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2879. }
  2880. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2881. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2882. _content = $$("div", {
  2883. className: "U_MD_D_KO",
  2884. "onmousedown": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_szsyStudentDeskIconInfo[i]]),
  2888. "onclick": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_szsyStudentDeskIconInfo[i]])
  2892. }, _frag); //
  2893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2896. }
  2897. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2898. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2899. _content = $$("div", {
  2900. className: "U_MD_D_KO",
  2901. "onmousedown": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_demoCocoStudentDeskIconInfo[i]]),
  2905. "onclick": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_demoCocoStudentDeskIconInfo[i]])
  2909. }, _frag); //
  2910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2913. }
  2914. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2915. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_x010608StudentDeskIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_x010608StudentDeskIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2932. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2933. _content = $$("div", {
  2934. className: "U_MD_D_KO",
  2935. "onmousedown": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_x010611StudentDeskIconInfo[i]]),
  2939. "onclick": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_x010611StudentDeskIconInfo[i]])
  2943. }, _frag); //
  2944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2947. }
  2948. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2949. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2950. _content = $$("div", {
  2951. className: "U_MD_D_KO",
  2952. "onmousedown": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_x010612StudentDeskIconInfo[i]]),
  2956. "onclick": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_x010612StudentDeskIconInfo[i]])
  2960. }, _frag); //
  2961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2964. }
  2965. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2966. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2967. _content = $$("div", {
  2968. className: "U_MD_D_KO",
  2969. "onmousedown": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_tianyuantudentDeskIconInfo[i]]),
  2973. "onclick": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_tianyuantudentDeskIconInfo[i]])
  2977. }, _frag); //
  2978. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2979. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2980. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2981. }
  2982. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2983. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2984. _content = $$("div", {
  2985. className: "U_MD_D_KO",
  2986. "onmousedown": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_siesStudentDeskIconInfo[i]]),
  2990. "onclick": U.UF.C.closure(function (obj) {
  2991. //防止拖动图标即打开了桌面应用
  2992. U.MD.D.click(this, obj);
  2993. }, [_siesStudentDeskIconInfo[i]])
  2994. }, _frag); //
  2995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2998. }
  2999. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3000. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_guzmsStudentDeskIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_guzmsStudentDeskIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3015. }
  3016. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3017. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3018. _content = $$("div", {
  3019. className: "U_MD_D_KO",
  3020. "onmousedown": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_hkStudentDeskIconInfo[i]]),
  3024. "onclick": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_hkStudentDeskIconInfo[i]])
  3028. }, _frag); //
  3029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3032. }
  3033. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3034. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3035. _content = $$("div", {
  3036. className: "U_MD_D_KO",
  3037. "onmousedown": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_tycyStudentDeskIconInfo[i]]),
  3041. "onclick": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_tycyStudentDeskIconInfo[i]])
  3045. }, _frag); //
  3046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3049. }
  3050. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3051. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_ckcpsStudentDeskIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_ckcpsStudentDeskIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3068. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3069. _content = $$("div", {
  3070. className: "U_MD_D_KO",
  3071. "onmousedown": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_hkaceStudentDeskIconInfo[i]]),
  3075. "onclick": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_hkaceStudentDeskIconInfo[i]])
  3079. }, _frag); //
  3080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3083. }
  3084. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3085. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3086. _content = $$("div", {
  3087. className: "U_MD_D_KO",
  3088. "onmousedown": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3092. "onclick": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_BSDNSstudentDesktopIconInfo[i]])
  3096. }, _frag); //
  3097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3100. }
  3101. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3102. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3103. _content = $$("div", {
  3104. className: "U_MD_D_KO",
  3105. "onmousedown": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_cocobizStudentDeskIconInfo[i]]),
  3109. "onclick": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_cocobizStudentDeskIconInfo[i]])
  3113. }, _frag); //
  3114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3117. }
  3118. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3119. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3120. _content = $$("div", {
  3121. className: "U_MD_D_KO",
  3122. "onmousedown": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3126. "onclick": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_xxzjkyStudentDeskIconInfo[i]])
  3130. }, _frag); //
  3131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3134. }
  3135. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3136. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3137. _content = $$("div", {
  3138. className: "U_MD_D_KO",
  3139. "onmousedown": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_studentDesktopIconInfo[i]]),
  3143. "onclick": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_studentDesktopIconInfo[i]])
  3147. }, _frag); //
  3148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3151. }
  3152. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3153. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3154. _content = $$("div", {
  3155. className: "U_MD_D_KO",
  3156. "onmousedown": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_tcStudentDeskIconInfo[i]]),
  3160. "onclick": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_tcStudentDeskIconInfo[i]])
  3164. }, _frag); //
  3165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3168. }
  3169. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3170. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_szscStudentDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_szscStudentDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3187. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_studentDesktopIconInfo3[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_studentDesktopIconInfo3[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3202. }
  3203. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3204. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3205. _content = $$("div", {
  3206. className: "U_MD_D_KO",
  3207. "onmousedown": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_studentDesktopIconInfo2[i]]),
  3211. "onclick": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_studentDesktopIconInfo2[i]])
  3215. }, _frag); //
  3216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3219. }
  3220. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3221. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3222. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3223. continue
  3224. }
  3225. _content = $$("div", {
  3226. className: "U_MD_D_KO",
  3227. "onmousedown": U.UF.C.closure(function (obj) {
  3228. //防止拖动图标即打开了桌面应用
  3229. U.MD.D.click(this, obj);
  3230. }, [_wanketeacherDesktopIconInfo[i]]),
  3231. "onclick": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_wanketeacherDesktopIconInfo[i]])
  3235. }, _frag); //
  3236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3239. }
  3240. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3241. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3242. _content = $$("div", {
  3243. className: "U_MD_D_KO",
  3244. "onmousedown": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_wankeAdminDesktopIconInfo[i]]),
  3248. "onclick": U.UF.C.closure(function (obj) {
  3249. //防止拖动图标即打开了桌面应用
  3250. U.MD.D.click(this, obj);
  3251. }, [_wankeAdminDesktopIconInfo[i]])
  3252. }, _frag); //
  3253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3256. }
  3257. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3258. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3259. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3260. continue
  3261. }
  3262. _content = $$("div", {
  3263. className: "U_MD_D_KO",
  3264. "onmousedown": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3268. "onclick": U.UF.C.closure(function (obj) {
  3269. //防止拖动图标即打开了桌面应用
  3270. U.MD.D.click(this, obj);
  3271. }, [_scnuaiTeacherDeskIconInfo[i]])
  3272. }, _frag); //
  3273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3276. }
  3277. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3278. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3279. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3280. continue
  3281. }
  3282. _content = $$("div", {
  3283. className: "U_MD_D_KO",
  3284. "onmousedown": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3288. "onclick": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_BSDNSteacherDesktopIconInfo[i]])
  3292. }, _frag); //
  3293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3296. }
  3297. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3298. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3299. _content = $$("div", {
  3300. className: "U_MD_D_KO",
  3301. "onmousedown": U.UF.C.closure(function (obj) {
  3302. //防止拖动图标即打开了桌面应用
  3303. U.MD.D.click(this, obj);
  3304. }, [_scnuaiAdminDeskIconInfo[i]]),
  3305. "onclick": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_scnuaiAdminDeskIconInfo[i]])
  3309. }, _frag); //
  3310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3313. }
  3314. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3315. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3316. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3317. continue
  3318. }
  3319. _content = $$("div", {
  3320. className: "U_MD_D_KO",
  3321. "onmousedown": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_jccssylTeacherDeskIconInfo[i]]),
  3325. "onclick": U.UF.C.closure(function (obj) {
  3326. //防止拖动图标即打开了桌面应用
  3327. U.MD.D.click(this, obj);
  3328. }, [_jccssylTeacherDeskIconInfo[i]])
  3329. }, _frag); //
  3330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3333. }
  3334. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3335. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3336. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3337. continue
  3338. }
  3339. _content = $$("div", {
  3340. className: "U_MD_D_KO",
  3341. "onmousedown": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_caleTeacherDeskIconInfo[i]]),
  3345. "onclick": U.UF.C.closure(function (obj) {
  3346. //防止拖动图标即打开了桌面应用
  3347. U.MD.D.click(this, obj);
  3348. }, [_caleTeacherDeskIconInfo[i]])
  3349. }, _frag); //
  3350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3353. }
  3354. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3355. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3356. _content = $$("div", {
  3357. className: "U_MD_D_KO",
  3358. "onmousedown": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_tpcOrganizerDeskIconInfo[i]]),
  3362. "onclick": U.UF.C.closure(function (obj) {
  3363. //防止拖动图标即打开了桌面应用
  3364. U.MD.D.click(this, obj);
  3365. }, [_tpcOrganizerDeskIconInfo[i]])
  3366. }, _frag); //
  3367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3370. }
  3371. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3372. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3373. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3374. continue
  3375. }
  3376. _content = $$("div", {
  3377. className: "U_MD_D_KO",
  3378. "onmousedown": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_tpcTeacherDeskIconInfo[i]]),
  3382. "onclick": U.UF.C.closure(function (obj) {
  3383. //防止拖动图标即打开了桌面应用
  3384. U.MD.D.click(this, obj);
  3385. }, [_tpcTeacherDeskIconInfo[i]])
  3386. }, _frag); //
  3387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3390. }
  3391. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3392. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3393. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3394. continue
  3395. }
  3396. _content = $$("div", {
  3397. className: "U_MD_D_KO",
  3398. "onmousedown": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_teacherDesktopIconInfo2[i]]),
  3402. "onclick": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_teacherDesktopIconInfo2[i]])
  3406. }, _frag); //
  3407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3410. }
  3411. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3412. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3413. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3414. continue
  3415. }
  3416. _content = $$("div", {
  3417. className: "U_MD_D_KO",
  3418. "onmousedown": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_thuioeTeacherDeskIconInfo[i]]),
  3422. "onclick": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_thuioeTeacherDeskIconInfo[i]])
  3426. }, _frag); //
  3427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3430. }
  3431. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3432. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3433. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3434. continue
  3435. }
  3436. _content = $$("div", {
  3437. className: "U_MD_D_KO",
  3438. "onmousedown": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_lotechTeacherDeskIconInfo[i]]),
  3442. "onclick": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_lotechTeacherDeskIconInfo[i]])
  3446. }, _frag); //
  3447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3450. }//
  3451. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3452. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3453. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3454. continue
  3455. }
  3456. _content = $$("div", {
  3457. className: "U_MD_D_KO",
  3458. "onmousedown": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3462. "onclick": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3466. }, _frag); //
  3467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3470. }
  3471. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3472. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3473. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3474. continue
  3475. }
  3476. _content = $$("div", {
  3477. className: "U_MD_D_KO",
  3478. "onmousedown": U.UF.C.closure(function (obj) {
  3479. //防止拖动图标即打开了桌面应用
  3480. U.MD.D.click(this, obj);
  3481. }, [_siesTeacherDeskIconInfo[i]]),
  3482. "onclick": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_siesTeacherDeskIconInfo[i]])
  3486. }, _frag); //
  3487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3490. }
  3491. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3492. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3493. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3494. continue
  3495. }
  3496. _content = $$("div", {
  3497. className: "U_MD_D_KO",
  3498. "onmousedown": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_guzmsTeacherDeskIconInfo[i]]),
  3502. "onclick": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_guzmsTeacherDeskIconInfo[i]])
  3506. }, _frag); //
  3507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3510. }
  3511. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3512. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3513. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3514. continue
  3515. }
  3516. _content = $$("div", {
  3517. className: "U_MD_D_KO",
  3518. "onmousedown": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_longhuaTeacherDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_longhuaTeacherDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3530. }
  3531. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3532. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3533. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3534. continue
  3535. }
  3536. _content = $$("div", {
  3537. className: "U_MD_D_KO",
  3538. "onmousedown": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_ytyTeacherDeskIconInfo[i]]),
  3542. "onclick": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_ytyTeacherDeskIconInfo[i]])
  3546. }, _frag); //
  3547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3550. }
  3551. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3552. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3553. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3554. continue
  3555. }
  3556. _content = $$("div", {
  3557. className: "U_MD_D_KO",
  3558. "onmousedown": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3562. "onclick": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_yunhaiTeacherDeskIconInfo[i]])
  3566. }, _frag); //
  3567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3570. } //_hkStudentDeskIconInfo
  3571. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3572. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3573. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3574. continue
  3575. }
  3576. _content = $$("div", {
  3577. className: "U_MD_D_KO",
  3578. "onmousedown": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3582. "onclick": U.UF.C.closure(function (obj) {
  3583. //防止拖动图标即打开了桌面应用
  3584. U.MD.D.click(this, obj);
  3585. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3586. }, _frag); //
  3587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3590. }
  3591. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3592. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3593. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3594. continue
  3595. }
  3596. _content = $$("div", {
  3597. className: "U_MD_D_KO",
  3598. "onmousedown": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_ricohTeacherDeskIconInfo[i]]),
  3602. "onclick": U.UF.C.closure(function (obj) {
  3603. //防止拖动图标即打开了桌面应用
  3604. U.MD.D.click(this, obj);
  3605. }, [_ricohTeacherDeskIconInfo[i]])
  3606. }, _frag); //
  3607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3610. }
  3611. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3612. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3613. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3614. continue
  3615. }
  3616. _content = $$("div", {
  3617. className: "U_MD_D_KO",
  3618. "onmousedown": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_hkTeacherDeskIconInfo[i]]),
  3622. "onclick": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_hkTeacherDeskIconInfo[i]])
  3626. }, _frag); //
  3627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3630. }
  3631. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3632. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3633. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3634. continue
  3635. }
  3636. _content = $$("div", {
  3637. className: "U_MD_D_KO",
  3638. "onmousedown": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_tycyTeacherDeskIconInfo[i]]),
  3642. "onclick": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_tycyTeacherDeskIconInfo[i]])
  3646. }, _frag); //
  3647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3650. }
  3651. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3652. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3653. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3654. continue
  3655. }
  3656. _content = $$("div", {
  3657. className: "U_MD_D_KO",
  3658. "onmousedown": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3662. "onclick": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_ckcpsTeacherDeskIconInfo[i]])
  3666. }, _frag); //
  3667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3670. }
  3671. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3672. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3673. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3674. continue
  3675. }
  3676. _content = $$("div", {
  3677. className: "U_MD_D_KO",
  3678. "onmousedown": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_hkaceTeacherDeskIconInfo[i]]),
  3682. "onclick": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_hkaceTeacherDeskIconInfo[i]])
  3686. }, _frag); //
  3687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3690. }
  3691. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3692. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3693. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3694. continue
  3695. }
  3696. _content = $$("div", {
  3697. className: "U_MD_D_KO",
  3698. "onmousedown": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_cocobizTeacherDeskIconInfo[i]]),
  3702. "onclick": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_cocobizTeacherDeskIconInfo[i]])
  3706. }, _frag); //
  3707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3710. }
  3711. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3712. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3713. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3714. continue
  3715. }
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3732. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3733. _content = $$("div", {
  3734. className: "U_MD_D_KO",
  3735. "onmousedown": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_gdjgAdminDeskIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_gdjgAdminDeskIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3747. }
  3748. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3749. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3750. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3751. continue
  3752. }
  3753. _content = $$("div", {
  3754. className: "U_MD_D_KO",
  3755. "onmousedown": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_gdjgTeacherDeskIconInfo[i]]),
  3759. "onclick": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_gdjgTeacherDeskIconInfo[i]])
  3763. }, _frag); //
  3764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3767. }
  3768. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3769. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3770. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3771. continue
  3772. }
  3773. _content = $$("div", {
  3774. className: "U_MD_D_KO",
  3775. "onmousedown": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_szherTeacherDeskIconInfo[i]]),
  3779. "onclick": U.UF.C.closure(function (obj) {
  3780. //防止拖动图标即打开了桌面应用
  3781. U.MD.D.click(this, obj);
  3782. }, [_szherTeacherDeskIconInfo[i]])
  3783. }, _frag); //
  3784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3787. }
  3788. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3789. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_heyuannAdminDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_heyuannAdminDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3806. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3807. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3808. continue
  3809. }
  3810. _content = $$("div", {
  3811. className: "U_MD_D_KO",
  3812. "onmousedown": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_heyuanTeacherDeskIconInfo[i]]),
  3816. "onclick": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_heyuanTeacherDeskIconInfo[i]])
  3820. }, _frag); //
  3821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3824. } //
  3825. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3826. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3827. _content = $$("div", {
  3828. className: "U_MD_D_KO",
  3829. "onmousedown": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_dseiAdminDeskIconInfo[i]]),
  3833. "onclick": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_dseiAdminDeskIconInfo[i]])
  3837. }, _frag); //
  3838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3841. }
  3842. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3843. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3844. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3845. continue
  3846. }
  3847. _content = $$("div", {
  3848. className: "U_MD_D_KO",
  3849. "onmousedown": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_dseiTeacherDeskIconInfo[i]]),
  3853. "onclick": U.UF.C.closure(function (obj) {
  3854. //防止拖动图标即打开了桌面应用
  3855. U.MD.D.click(this, obj);
  3856. }, [_dseiTeacherDeskIconInfo[i]])
  3857. }, _frag); //
  3858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3861. } //
  3862. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3863. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3864. _content = $$("div", {
  3865. className: "U_MD_D_KO",
  3866. "onmousedown": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_chjyjAdminDeskIconInfo[i]]),
  3870. "onclick": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_chjyjAdminDeskIconInfo[i]])
  3874. }, _frag); //
  3875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3878. }//
  3879. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3880. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3881. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3882. continue
  3883. }
  3884. _content = $$("div", {
  3885. className: "U_MD_D_KO",
  3886. "onmousedown": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_chjyjTeacherDeskIconInfo[i]]),
  3890. "onclick": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_chjyjTeacherDeskIconInfo[i]])
  3894. }, _frag); //
  3895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3898. }
  3899. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3900. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_szjkyAdminDeskIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szjkyAdminDeskIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3915. }//
  3916. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3917. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3918. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_szjkyTeacherDeskIconInfo[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_szjkyTeacherDeskIconInfo[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3937. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3938. _content = $$("div", {
  3939. className: "U_MD_D_KO",
  3940. "onmousedown": U.UF.C.closure(function (obj) {
  3941. //防止拖动图标即打开了桌面应用
  3942. U.MD.D.click(this, obj);
  3943. }, [_x020201AdminDeskIconInfo[i]]),
  3944. "onclick": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_x020201AdminDeskIconInfo[i]])
  3948. }, _frag); //
  3949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3952. }//
  3953. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3954. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3955. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3956. continue
  3957. }
  3958. _content = $$("div", {
  3959. className: "U_MD_D_KO",
  3960. "onmousedown": U.UF.C.closure(function (obj) {
  3961. //防止拖动图标即打开了桌面应用
  3962. U.MD.D.click(this, obj);
  3963. }, [_x020201TeacherDeskIconInfo[i]]),
  3964. "onclick": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_x020201TeacherDeskIconInfo[i]])
  3968. }, _frag); //
  3969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3972. }
  3973. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3974. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3975. _content = $$("div", {
  3976. className: "U_MD_D_KO",
  3977. "onmousedown": U.UF.C.closure(function (obj) {
  3978. //防止拖动图标即打开了桌面应用
  3979. U.MD.D.click(this, obj);
  3980. }, [_SCNUETAdminDeskIconInfo[i]]),
  3981. "onclick": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_SCNUETAdminDeskIconInfo[i]])
  3985. }, _frag); //
  3986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3989. }//
  3990. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3991. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3992. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3993. continue
  3994. }
  3995. _content = $$("div", {
  3996. className: "U_MD_D_KO",
  3997. "onmousedown": U.UF.C.closure(function (obj) {
  3998. //防止拖动图标即打开了桌面应用
  3999. U.MD.D.click(this, obj);
  4000. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4001. "onclick": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_SCNUETTeacherDeskIconInfo[i]])
  4005. }, _frag); //
  4006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4009. }
  4010. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4011. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4012. _content = $$("div", {
  4013. className: "U_MD_D_KO",
  4014. "onmousedown": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_futianAdminDeskIconInfo[i]]),
  4018. "onclick": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_futianAdminDeskIconInfo[i]])
  4022. }, _frag); //
  4023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4026. }
  4027. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4028. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4029. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4030. continue
  4031. }
  4032. _content = $$("div", {
  4033. className: "U_MD_D_KO",
  4034. "onmousedown": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_futianTeacherDeskIconInfo[i]]),
  4038. "onclick": U.UF.C.closure(function (obj) {
  4039. //防止拖动图标即打开了桌面应用
  4040. U.MD.D.click(this, obj);
  4041. }, [_futianTeacherDeskIconInfo[i]])
  4042. }, _frag); //
  4043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4046. }
  4047. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4048. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4049. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4050. continue
  4051. }
  4052. _content = $$("div", {
  4053. className: "U_MD_D_KO",
  4054. "onmousedown": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_MingdeTeacherDeskIcon[i]]),
  4058. "onclick": U.UF.C.closure(function (obj) {
  4059. //防止拖动图标即打开了桌面应用
  4060. U.MD.D.click(this, obj);
  4061. }, [_MingdeTeacherDeskIcon[i]])
  4062. }, _frag); //
  4063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4066. }
  4067. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4068. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4069. _content = $$("div", {
  4070. className: "U_MD_D_KO",
  4071. "onmousedown": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_lhsAdminDesktopIconInfo[i]]),
  4075. "onclick": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_lhsAdminDesktopIconInfo[i]])
  4079. }, _frag); //
  4080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4083. }
  4084. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4085. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4086. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4087. continue
  4088. }
  4089. _content = $$("div", {
  4090. className: "U_MD_D_KO",
  4091. "onmousedown": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_lhsteacherDesktopIconInfo[i]]),
  4095. "onclick": U.UF.C.closure(function (obj) {
  4096. //防止拖动图标即打开了桌面应用
  4097. U.MD.D.click(this, obj);
  4098. }, [_lhsteacherDesktopIconInfo[i]])
  4099. }, _frag); //
  4100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4103. }
  4104. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4105. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4106. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4107. continue
  4108. }
  4109. _content = $$("div", {
  4110. className: "U_MD_D_KO",
  4111. "onmousedown": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4115. "onclick": U.UF.C.closure(function (obj) {
  4116. //防止拖动图标即打开了桌面应用
  4117. U.MD.D.click(this, obj);
  4118. }, [_zhoujiateacherDesktopIconInfo[i]])
  4119. }, _frag); //
  4120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4123. }
  4124. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4125. for (i = 0; i < _hanDeskIcon.length; i++) {
  4126. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4127. continue
  4128. }
  4129. _content = $$("div", {
  4130. className: "U_MD_D_KO",
  4131. "onmousedown": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_hanDeskIcon[i]]),
  4135. "onclick": U.UF.C.closure(function (obj) {
  4136. //防止拖动图标即打开了桌面应用
  4137. U.MD.D.click(this, obj);
  4138. }, [_hanDeskIcon[i]])
  4139. }, _frag); //
  4140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4143. }
  4144. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4145. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4146. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4147. continue
  4148. }
  4149. _content = $$("div", {
  4150. className: "U_MD_D_KO",
  4151. "onmousedown": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_orgStemDeskIcon[i]]),
  4155. "onclick": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_orgStemDeskIcon[i]])
  4159. }, _frag); //
  4160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4163. }
  4164. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4165. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4166. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4167. continue
  4168. }
  4169. _content = $$("div", {
  4170. className: "U_MD_D_KO",
  4171. "onmousedown": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_szulsDeskIcon[i]]),
  4175. "onclick": U.UF.C.closure(function (obj) {
  4176. //防止拖动图标即打开了桌面应用
  4177. U.MD.D.click(this, obj);
  4178. }, [_szulsDeskIcon[i]])
  4179. }, _frag); //
  4180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4183. }
  4184. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4185. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4186. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4187. continue
  4188. }
  4189. _content = $$("div", {
  4190. className: "U_MD_D_KO",
  4191. "onmousedown": U.UF.C.closure(function (obj) {
  4192. //防止拖动图标即打开了桌面应用
  4193. U.MD.D.click(this, obj);
  4194. }, [_orgDesktopIconInfo[i]]),
  4195. "onclick": U.UF.C.closure(function (obj) {
  4196. //防止拖动图标即打开了桌面应用
  4197. U.MD.D.click(this, obj);
  4198. }, [_orgDesktopIconInfo[i]])
  4199. }, _frag); //
  4200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4203. }
  4204. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4205. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4206. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4207. continue
  4208. }
  4209. _content = $$("div", {
  4210. className: "U_MD_D_KO",
  4211. "onmousedown": U.UF.C.closure(function (obj) {
  4212. //防止拖动图标即打开了桌面应用
  4213. U.MD.D.click(this, obj);
  4214. }, [_schoolDesktopIconInfo[i]]),
  4215. "onclick": U.UF.C.closure(function (obj) {
  4216. //防止拖动图标即打开了桌面应用
  4217. U.MD.D.click(this, obj);
  4218. }, [_schoolDesktopIconInfo[i]])
  4219. }, _frag); //
  4220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4223. }
  4224. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4225. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4226. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4227. continue
  4228. }
  4229. _content = $$("div", {
  4230. className: "U_MD_D_KO",
  4231. "onmousedown": U.UF.C.closure(function (obj) {
  4232. //防止拖动图标即打开了桌面应用
  4233. U.MD.D.click(this, obj);
  4234. }, [_GMteacherDesktopIconInfo[i]]),
  4235. "onclick": U.UF.C.closure(function (obj) {
  4236. //防止拖动图标即打开了桌面应用
  4237. U.MD.D.click(this, obj);
  4238. }, [_GMteacherDesktopIconInfo[i]])
  4239. }, _frag); //
  4240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4243. }
  4244. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4245. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4246. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4247. continue
  4248. }
  4249. _content = $$("div", {
  4250. className: "U_MD_D_KO",
  4251. "onmousedown": U.UF.C.closure(function (obj) {
  4252. //防止拖动图标即打开了桌面应用
  4253. U.MD.D.click(this, obj);
  4254. }, [_SONGteacherDesktopIconInfo[i]]),
  4255. "onclick": U.UF.C.closure(function (obj) {
  4256. //防止拖动图标即打开了桌面应用
  4257. U.MD.D.click(this, obj);
  4258. }, [_SONGteacherDesktopIconInfo[i]])
  4259. }, _frag); //
  4260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4263. }
  4264. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4265. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4266. _content = $$("div", {
  4267. className: "U_MD_D_KO",
  4268. "onmousedown": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_GMstudentDesktopIconInfo[i]]),
  4272. "onclick": U.UF.C.closure(function (obj) {
  4273. //防止拖动图标即打开了桌面应用
  4274. U.MD.D.click(this, obj);
  4275. }, [_GMstudentDesktopIconInfo[i]])
  4276. }, _frag); //
  4277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4280. }
  4281. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4282. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4283. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4284. continue
  4285. }
  4286. _content = $$("div", {
  4287. className: "U_MD_D_KO",
  4288. "onmousedown": U.UF.C.closure(function (obj) {
  4289. //防止拖动图标即打开了桌面应用
  4290. U.MD.D.click(this, obj);
  4291. }, [_tcTeacherDeskIconInfo[i]]),
  4292. "onclick": U.UF.C.closure(function (obj) {
  4293. //防止拖动图标即打开了桌面应用
  4294. U.MD.D.click(this, obj);
  4295. }, [_tcTeacherDeskIconInfo[i]])
  4296. }, _frag); //
  4297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4300. }
  4301. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4302. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4303. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4304. continue
  4305. }
  4306. _content = $$("div", {
  4307. className: "U_MD_D_KO",
  4308. "onmousedown": U.UF.C.closure(function (obj) {
  4309. //防止拖动图标即打开了桌面应用
  4310. U.MD.D.click(this, obj);
  4311. }, [_tcOrganizerDeskIconInfo[i]]),
  4312. "onclick": U.UF.C.closure(function (obj) {
  4313. //防止拖动图标即打开了桌面应用
  4314. U.MD.D.click(this, obj);
  4315. }, [_tcOrganizerDeskIconInfo[i]])
  4316. }, _frag); //
  4317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4320. }
  4321. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4322. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4323. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4324. continue
  4325. }
  4326. _content = $$("div", {
  4327. className: "U_MD_D_KO",
  4328. "onmousedown": U.UF.C.closure(function (obj) {
  4329. //防止拖动图标即打开了桌面应用
  4330. U.MD.D.click(this, obj);
  4331. }, [_szscTeacherDeskIconInfo[i]]),
  4332. "onclick": U.UF.C.closure(function (obj) {
  4333. //防止拖动图标即打开了桌面应用
  4334. U.MD.D.click(this, obj);
  4335. }, [_szscTeacherDeskIconInfo[i]])
  4336. }, _frag); //
  4337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4340. }
  4341. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4342. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4343. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4344. continue
  4345. }
  4346. _content = $$("div", {
  4347. className: "U_MD_D_KO",
  4348. "onmousedown": U.UF.C.closure(function (obj) {
  4349. //防止拖动图标即打开了桌面应用
  4350. U.MD.D.click(this, obj);
  4351. }, [_szscOrganizerDeskIconInfo[i]]),
  4352. "onclick": U.UF.C.closure(function (obj) {
  4353. //防止拖动图标即打开了桌面应用
  4354. U.MD.D.click(this, obj);
  4355. }, [_szscOrganizerDeskIconInfo[i]])
  4356. }, _frag); //
  4357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4360. }
  4361. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4362. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4363. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4364. continue
  4365. }
  4366. _content = $$("div", {
  4367. className: "U_MD_D_KO",
  4368. "onmousedown": U.UF.C.closure(function (obj) {
  4369. //防止拖动图标即打开了桌面应用
  4370. U.MD.D.click(this, obj);
  4371. }, [_nsfxTeacherDeskIconInfo[i]]),
  4372. "onclick": U.UF.C.closure(function (obj) {
  4373. //防止拖动图标即打开了桌面应用
  4374. U.MD.D.click(this, obj);
  4375. }, [_nsfxTeacherDeskIconInfo[i]])
  4376. }, _frag); //
  4377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4380. }
  4381. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4382. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4383. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4384. continue
  4385. }
  4386. _content = $$("div", {
  4387. className: "U_MD_D_KO",
  4388. "onmousedown": U.UF.C.closure(function (obj) {
  4389. //防止拖动图标即打开了桌面应用
  4390. U.MD.D.click(this, obj);
  4391. }, [_stiaTeacherDeskIconInfo[i]]),
  4392. "onclick": U.UF.C.closure(function (obj) {
  4393. //防止拖动图标即打开了桌面应用
  4394. U.MD.D.click(this, obj);
  4395. }, [_stiaTeacherDeskIconInfo[i]])
  4396. }, _frag); //
  4397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4400. }
  4401. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4402. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4403. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4404. continue
  4405. }
  4406. _content = $$("div", {
  4407. className: "U_MD_D_KO",
  4408. "onmousedown": U.UF.C.closure(function (obj) {
  4409. //防止拖动图标即打开了桌面应用
  4410. U.MD.D.click(this, obj);
  4411. }, [_szdjgTeacherDeskIconInfo[i]]),
  4412. "onclick": U.UF.C.closure(function (obj) {
  4413. //防止拖动图标即打开了桌面应用
  4414. U.MD.D.click(this, obj);
  4415. }, [_szdjgTeacherDeskIconInfo[i]])
  4416. }, _frag); //
  4417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4420. }
  4421. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4422. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4423. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4424. continue
  4425. }
  4426. _content = $$("div", {
  4427. className: "U_MD_D_KO",
  4428. "onmousedown": U.UF.C.closure(function (obj) {
  4429. //防止拖动图标即打开了桌面应用
  4430. U.MD.D.click(this, obj);
  4431. }, [_x010607TeacherDeskIconInfo[i]]),
  4432. "onclick": U.UF.C.closure(function (obj) {
  4433. //防止拖动图标即打开了桌面应用
  4434. U.MD.D.click(this, obj);
  4435. }, [_x010607TeacherDeskIconInfo[i]])
  4436. }, _frag); //
  4437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4440. }
  4441. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4442. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4443. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4444. continue
  4445. }
  4446. _content = $$("div", {
  4447. className: "U_MD_D_KO",
  4448. "onmousedown": U.UF.C.closure(function (obj) {
  4449. //防止拖动图标即打开了桌面应用
  4450. U.MD.D.click(this, obj);
  4451. }, [_xhlyTeacherDeskIconInfo[i]]),
  4452. "onclick": U.UF.C.closure(function (obj) {
  4453. //防止拖动图标即打开了桌面应用
  4454. U.MD.D.click(this, obj);
  4455. }, [_xhlyTeacherDeskIconInfo[i]])
  4456. }, _frag); //
  4457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4460. }
  4461. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4462. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4463. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4464. continue
  4465. }
  4466. _content = $$("div", {
  4467. className: "U_MD_D_KO",
  4468. "onmousedown": U.UF.C.closure(function (obj) {
  4469. //防止拖动图标即打开了桌面应用
  4470. U.MD.D.click(this, obj);
  4471. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4472. "onclick": U.UF.C.closure(function (obj) {
  4473. //防止拖动图标即打开了桌面应用
  4474. U.MD.D.click(this, obj);
  4475. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4476. }, _frag); //
  4477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4480. }
  4481. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4482. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4483. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4484. continue
  4485. }
  4486. _content = $$("div", {
  4487. className: "U_MD_D_KO",
  4488. "onmousedown": U.UF.C.closure(function (obj) {
  4489. //防止拖动图标即打开了桌面应用
  4490. U.MD.D.click(this, obj);
  4491. }, [_x010503TeacherDeskIconInfo[i]]),
  4492. "onclick": U.UF.C.closure(function (obj) {
  4493. //防止拖动图标即打开了桌面应用
  4494. U.MD.D.click(this, obj);
  4495. }, [_x010503TeacherDeskIconInfo[i]])
  4496. }, _frag); //
  4497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4500. }
  4501. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4502. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4503. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4504. continue
  4505. }
  4506. _content = $$("div", {
  4507. className: "U_MD_D_KO",
  4508. "onmousedown": U.UF.C.closure(function (obj) {
  4509. //防止拖动图标即打开了桌面应用
  4510. U.MD.D.click(this, obj);
  4511. }, [_x010504TeacherDeskIconInfo[i]]),
  4512. "onclick": U.UF.C.closure(function (obj) {
  4513. //防止拖动图标即打开了桌面应用
  4514. U.MD.D.click(this, obj);
  4515. }, [_x010504TeacherDeskIconInfo[i]])
  4516. }, _frag); //
  4517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4520. }
  4521. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4522. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4523. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4524. continue
  4525. }
  4526. _content = $$("div", {
  4527. className: "U_MD_D_KO",
  4528. "onmousedown": U.UF.C.closure(function (obj) {
  4529. //防止拖动图标即打开了桌面应用
  4530. U.MD.D.click(this, obj);
  4531. }, [_x010505TeacherDeskIconInfo[i]]),
  4532. "onclick": U.UF.C.closure(function (obj) {
  4533. //防止拖动图标即打开了桌面应用
  4534. U.MD.D.click(this, obj);
  4535. }, [_x010505TeacherDeskIconInfo[i]])
  4536. }, _frag); //
  4537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4540. }
  4541. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4542. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4543. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4544. continue
  4545. }
  4546. _content = $$("div", {
  4547. className: "U_MD_D_KO",
  4548. "onmousedown": U.UF.C.closure(function (obj) {
  4549. //防止拖动图标即打开了桌面应用
  4550. U.MD.D.click(this, obj);
  4551. }, [_x010404TeacherDeskIconInfo[i]]),
  4552. "onclick": U.UF.C.closure(function (obj) {
  4553. //防止拖动图标即打开了桌面应用
  4554. U.MD.D.click(this, obj);
  4555. }, [_x010404TeacherDeskIconInfo[i]])
  4556. }, _frag); //
  4557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4560. }
  4561. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4562. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4563. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4564. continue
  4565. }
  4566. _content = $$("div", {
  4567. className: "U_MD_D_KO",
  4568. "onmousedown": U.UF.C.closure(function (obj) {
  4569. //防止拖动图标即打开了桌面应用
  4570. U.MD.D.click(this, obj);
  4571. }, [_x010204TeacherDeskIconInfo[i]]),
  4572. "onclick": U.UF.C.closure(function (obj) {
  4573. //防止拖动图标即打开了桌面应用
  4574. U.MD.D.click(this, obj);
  4575. }, [_x010204TeacherDeskIconInfo[i]])
  4576. }, _frag); //
  4577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4580. }
  4581. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4582. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4583. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4584. continue
  4585. }
  4586. _content = $$("div", {
  4587. className: "U_MD_D_KO",
  4588. "onmousedown": U.UF.C.closure(function (obj) {
  4589. //防止拖动图标即打开了桌面应用
  4590. U.MD.D.click(this, obj);
  4591. }, [_x320101TeacherDeskIconInfo[i]]),
  4592. "onclick": U.UF.C.closure(function (obj) {
  4593. //防止拖动图标即打开了桌面应用
  4594. U.MD.D.click(this, obj);
  4595. }, [_x320101TeacherDeskIconInfo[i]])
  4596. }, _frag); //
  4597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4600. }
  4601. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4602. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4603. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4604. continue
  4605. }
  4606. _content = $$("div", {
  4607. className: "U_MD_D_KO",
  4608. "onmousedown": U.UF.C.closure(function (obj) {
  4609. //防止拖动图标即打开了桌面应用
  4610. U.MD.D.click(this, obj);
  4611. }, [_trailTeacherDeskIconInfo[i]]),
  4612. "onclick": U.UF.C.closure(function (obj) {
  4613. //防止拖动图标即打开了桌面应用
  4614. U.MD.D.click(this, obj);
  4615. }, [_trailTeacherDeskIconInfo[i]])
  4616. }, _frag); //
  4617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4620. }
  4621. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4622. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4623. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4624. continue
  4625. }
  4626. _content = $$("div", {
  4627. className: "U_MD_D_KO",
  4628. "onmousedown": U.UF.C.closure(function (obj) {
  4629. //防止拖动图标即打开了桌面应用
  4630. U.MD.D.click(this, obj);
  4631. }, [_trialTeacherDeskIconInfo[i]]),
  4632. "onclick": U.UF.C.closure(function (obj) {
  4633. //防止拖动图标即打开了桌面应用
  4634. U.MD.D.click(this, obj);
  4635. }, [_trialTeacherDeskIconInfo[i]])
  4636. }, _frag); //
  4637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4640. }
  4641. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4642. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4643. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4644. continue
  4645. }
  4646. _content = $$("div", {
  4647. className: "U_MD_D_KO",
  4648. "onmousedown": U.UF.C.closure(function (obj) {
  4649. //防止拖动图标即打开了桌面应用
  4650. U.MD.D.click(this, obj);
  4651. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4652. "onclick": U.UF.C.closure(function (obj) {
  4653. //防止拖动图标即打开了桌面应用
  4654. U.MD.D.click(this, obj);
  4655. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4656. }, _frag); //
  4657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4660. }
  4661. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4662. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4663. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4664. continue
  4665. }
  4666. _content = $$("div", {
  4667. className: "U_MD_D_KO",
  4668. "onmousedown": U.UF.C.closure(function (obj) {
  4669. //防止拖动图标即打开了桌面应用
  4670. U.MD.D.click(this, obj);
  4671. }, [_szsyTeacherDeskIconInfo[i]]),
  4672. "onclick": U.UF.C.closure(function (obj) {
  4673. //防止拖动图标即打开了桌面应用
  4674. U.MD.D.click(this, obj);
  4675. }, [_szsyTeacherDeskIconInfo[i]])
  4676. }, _frag); //
  4677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4680. }
  4681. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4682. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4683. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4684. continue
  4685. }
  4686. _content = $$("div", {
  4687. className: "U_MD_D_KO",
  4688. "onmousedown": U.UF.C.closure(function (obj) {
  4689. //防止拖动图标即打开了桌面应用
  4690. U.MD.D.click(this, obj);
  4691. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4692. "onclick": U.UF.C.closure(function (obj) {
  4693. //防止拖动图标即打开了桌面应用
  4694. U.MD.D.click(this, obj);
  4695. }, [_demoCocoTeacherDeskIconInfo[i]])
  4696. }, _frag); //
  4697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4700. }
  4701. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4702. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4703. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4704. continue
  4705. }
  4706. _content = $$("div", {
  4707. className: "U_MD_D_KO",
  4708. "onmousedown": U.UF.C.closure(function (obj) {
  4709. //防止拖动图标即打开了桌面应用
  4710. U.MD.D.click(this, obj);
  4711. }, [_x010608TeacherDeskIconInfo[i]]),
  4712. "onclick": U.UF.C.closure(function (obj) {
  4713. //防止拖动图标即打开了桌面应用
  4714. U.MD.D.click(this, obj);
  4715. }, [_x010608TeacherDeskIconInfo[i]])
  4716. }, _frag); //
  4717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4720. }
  4721. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4722. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4723. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4724. continue
  4725. }
  4726. _content = $$("div", {
  4727. className: "U_MD_D_KO",
  4728. "onmousedown": U.UF.C.closure(function (obj) {
  4729. //防止拖动图标即打开了桌面应用
  4730. U.MD.D.click(this, obj);
  4731. }, [_x010611TeacherDeskIconInfo[i]]),
  4732. "onclick": U.UF.C.closure(function (obj) {
  4733. //防止拖动图标即打开了桌面应用
  4734. U.MD.D.click(this, obj);
  4735. }, [_x010611TeacherDeskIconInfo[i]])
  4736. }, _frag); //
  4737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4740. }
  4741. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4742. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4743. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4744. continue
  4745. }
  4746. _content = $$("div", {
  4747. className: "U_MD_D_KO",
  4748. "onmousedown": U.UF.C.closure(function (obj) {
  4749. //防止拖动图标即打开了桌面应用
  4750. U.MD.D.click(this, obj);
  4751. }, [_x010612TeacherDeskIconInfo[i]]),
  4752. "onclick": U.UF.C.closure(function (obj) {
  4753. //防止拖动图标即打开了桌面应用
  4754. U.MD.D.click(this, obj);
  4755. }, [_x010612TeacherDeskIconInfo[i]])
  4756. }, _frag); //
  4757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4760. }
  4761. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4762. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4763. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4764. continue
  4765. }
  4766. _content = $$("div", {
  4767. className: "U_MD_D_KO",
  4768. "onmousedown": U.UF.C.closure(function (obj) {
  4769. //防止拖动图标即打开了桌面应用
  4770. U.MD.D.click(this, obj);
  4771. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4772. "onclick": U.UF.C.closure(function (obj) {
  4773. //防止拖动图标即打开了桌面应用
  4774. U.MD.D.click(this, obj);
  4775. }, [_tianyuanTeacherDeskIconInfo[i]])
  4776. }, _frag); //
  4777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4780. }
  4781. } else {
  4782. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4783. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4784. continue
  4785. }
  4786. _content = $$("div", {
  4787. className: "U_MD_D_KO",
  4788. "onmousedown": U.UF.C.closure(function (obj) {
  4789. //防止拖动图标即打开了桌面应用
  4790. U.MD.D.click(this, obj);
  4791. }, [_teacherDesktopIconInfo[i]]),
  4792. "onclick": U.UF.C.closure(function (obj) {
  4793. //防止拖动图标即打开了桌面应用
  4794. U.MD.D.click(this, obj);
  4795. }, [_teacherDesktopIconInfo[i]])
  4796. }, _frag); //
  4797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4800. }
  4801. }
  4802. } else {
  4803. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4804. _content = $$("div", {
  4805. className: "U_MD_D_KO",
  4806. style: { 'width': '124px', 'height': '145px' },
  4807. "onmousedown": U.UF.C.closure(function (obj) {
  4808. //防止拖动图标即打开了桌面应用
  4809. U.MD.D.click(this, obj);
  4810. }, [_easyDesktopIconInfo[i]]),
  4811. "onclick": U.UF.C.closure(function (obj) {
  4812. //防止拖动图标即打开了桌面应用
  4813. U.MD.D.click(this, obj);
  4814. }, [_easyDesktopIconInfo[i]])
  4815. }, _frag); //
  4816. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4819. }
  4820. }
  4821. if (type == 1) {
  4822. //加载好后给图标定位
  4823. U.MD.D.iconPostion($(_frag).Child());
  4824. } else {
  4825. //加载好后给图标定位
  4826. U.MD.D.iconPostion2($(_frag).Child());
  4827. }
  4828. //把图标加载到页面
  4829. el.appendChild(_frag);
  4830. }
  4831. /**
  4832. * 显示任务栏
  4833. *
  4834. * @param {element} 桌面元素
  4835. */
  4836. U.MD.D.I.displayTaskbar = function (el) {
  4837. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4838. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4839. //任务栏位置变化
  4840. U.selectEl(el).css({ "bottom": "0px" });
  4841. //桌面位置变话
  4842. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4843. }
  4844. }
  4845. //#region 桌面图标拖动逻辑
  4846. /**
  4847. * 桌面排列图标
  4848. *
  4849. * @param {element} 桌面元素
  4850. * @param {object} 上下相距的距离
  4851. * @param {object} 左右相距的距离
  4852. * @return {object} 命名空间
  4853. */
  4854. U.MD.D.iconPostion = function (childs, top, left) {
  4855. var i; //用于循环处理
  4856. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4857. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4858. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4859. for (i = 0; i < childs.length; i++) {
  4860. //如果竖排top超过了范围处理
  4861. if (top + 95 > US.height - 10) {
  4862. //left超过了页面范围处理,则向上重叠打印处理
  4863. if ((left + 180) > US.width) {
  4864. top -= 110;
  4865. left -= 90;
  4866. }
  4867. //没有超过范围,那么left+90添加到下一个竖排打印
  4868. else {
  4869. left += 90;
  4870. top = 15;
  4871. };
  4872. }
  4873. //给图标的位置赋值
  4874. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4875. if (i < childs.length - 1) {
  4876. //页面图标每次向下加95
  4877. top += 95;
  4878. }
  4879. }
  4880. //返回最后调用的图标的位置
  4881. return [top, left];
  4882. }
  4883. /**
  4884. * 桌面排列图标
  4885. *
  4886. * @param {element} 桌面元素
  4887. * @param {object} 上下相距的距离
  4888. * @param {object} 左右相距的距离
  4889. * @return {object} 命名空间
  4890. */
  4891. U.MD.D.iconPostion2 = function (childs, top, left) {
  4892. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4893. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4894. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4895. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4896. for (i = 0; i < childs.length; i++) {
  4897. //如果竖排top超过了范围处理
  4898. if (left + 150 > US.width - 10) {
  4899. //left超过了页面范围处理,则向上重叠打印处理
  4900. if ((top + 180) > US.Height) {
  4901. top -= 150;
  4902. left -= 150;
  4903. }
  4904. //没有超过范围,那么left+90添加到下一个竖排打印
  4905. else {
  4906. top += 150;
  4907. left = ol;
  4908. };
  4909. }
  4910. //给图标的位置赋值
  4911. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4912. if (i < childs.length - 1) {
  4913. //页面图标每次向下加95
  4914. left += 150;
  4915. }
  4916. }
  4917. //返回最后调用的图标的位置
  4918. return [top, left];
  4919. }
  4920. /**
  4921. * 桌面点击事件逻辑
  4922. *
  4923. * @param {element} 桌面元素
  4924. * @param {object} 上下相距的距离
  4925. * @param {object} 左右相距的距离
  4926. * @return {object} 命名空间
  4927. */
  4928. U.MD.D.click = function (el, obj) {
  4929. var _buttonnumber = event.button; //点击的按钮的事件值
  4930. var _userinfo = US.userInfo;
  4931. U.UF.EV.stopBubble(); //阻止向上冒泡
  4932. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4933. if (_buttonnumber < 2) {
  4934. //如果是click事件的处理
  4935. if (event.type == "click") {
  4936. //如果元素在mousemove事件中没有移动则出发click事件
  4937. if (!U.MD.D.I.IsDrag) {
  4938. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4939. U.alert("请先登录您的账号!");
  4940. setTimeout(() => {
  4941. U.MD.U.L.login();
  4942. }, 2000);
  4943. } else {
  4944. //打开应用处理
  4945. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4946. }
  4947. }
  4948. }
  4949. //如果是mouse事件的处理
  4950. else {
  4951. if (US.Config.type == '1') {
  4952. //拖动处理,添加拖动和拖动结束事件
  4953. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4954. }
  4955. }
  4956. U.MD.D.I.IsDrag = false;
  4957. }
  4958. }
  4959. /**
  4960. * 拖动的处理
  4961. *
  4962. */
  4963. U.MD.D.iconMove = function () {
  4964. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4965. U.MD.D.I.IsDrag = true;
  4966. }
  4967. /**
  4968. * 拖动结束后,这里是定位处理,以网状的形式定位
  4969. *
  4970. * @param {element} 拖动的元素
  4971. * @return {object} 命名空间
  4972. */
  4973. U.MD.D.iconUp = function (el) {
  4974. var _top = 15,
  4975. _left = 20,
  4976. _margin,
  4977. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4978. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4979. if (_positioninfo["OT"] > 15) {
  4980. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4981. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4982. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4983. }
  4984. if (_positioninfo["OL"] > 20) {
  4985. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4986. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4987. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4988. }
  4989. //while循环判断么一个重叠的元素
  4990. do {
  4991. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4992. _top = _positioninfo[0] + 95; //得到定位后的top
  4993. _left = _positioninfo[1]; //得到定位后的left
  4994. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4995. }
  4996. /**
  4997. * 判断拖动后图标是否重叠
  4998. *
  4999. * @param {element} 拖动的元素
  5000. * @param {element} 桌面所有的元素
  5001. * @param {array} 拖动元素的位置
  5002. ----------[0] 上 top
  5003. ----------[1] 左 left
  5004. * @return {object} 命名空间
  5005. */
  5006. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5007. //循环所有的图标
  5008. for (var i = 0; i < childs.length; i++) {
  5009. //判断有没有和该图标诶子重叠的元素
  5010. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5011. return childs[i]; //如果有返回
  5012. }
  5013. }
  5014. }
  5015. //#endregion
  5016. //#endregion
  5017. //#region 桌面应用
  5018. /**
  5019. * 打开应用
  5020. *
  5021. * @param {string} 类型
  5022. -----------------Disk 网盘系统
  5023. -----------------PDisk 学习系统网盘
  5024. -----------------Poto 图片
  5025. -----------------Video 视频
  5026. -----------------Music 音乐
  5027. -----------------Word word
  5028. -----------------Excel excel
  5029. -----------------Txt 记事本
  5030. -----------------PB 学习系统
  5031. -----------------Blog 朋友圈系统
  5032. -----------------FTP ftp系统
  5033. -----------------Group 好友群
  5034. -----------------SY 首页系统
  5035. -----------------Set 个人设置
  5036. -----------------XSet 系统设置
  5037. -----------------App 我们所有的app
  5038. -----------------BC c.1473.cn 平台
  5039. -----------------CWeb d.1473.cn 变成平台
  5040. -----------------其他的外联系统 我们统一用iframe打开
  5041. * @param {array} 类型
  5042. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5043. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5044. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5045. 如果第一个参数为其他,则无第二个参数
  5046. * @returns {array}
  5047. */
  5048. window.addEventListener('message', function (e) { // 监听 message 事件
  5049. // alert(e.data.type);
  5050. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5051. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5052. //3是展示全部阶段 2学生 1老师 4专家
  5053. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5054. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5055. //3是展示全部阶段 2学生 1老师 4专家
  5056. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5057. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5058. //3是展示全部阶段 2学生 1老师 4专家
  5059. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5060. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5061. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5062. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5063. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5064. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5065. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5066. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5067. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5068. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5069. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5070. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5071. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5072. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5073. //3是展示全部阶段 2学生 1老师 4专家
  5074. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5075. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5076. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5077. U.MD.D.I.selectUser();
  5078. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5079. var _formel = document.getElementById("study");
  5080. U.UF.F.windowZooming(_formel);
  5081. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5082. var _formel = document.getElementById("studyDetail");
  5083. U.UF.F.windowZooming(_formel);
  5084. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5085. var _formel = document.getElementById("studyDetail");
  5086. U.UF.F.windowZooming(_formel);
  5087. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5088. var _formel = document.getElementById("studentStudy");
  5089. U.UF.F.windowZooming(_formel);
  5090. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5091. // var _formel = document.getElementById("study");
  5092. //如果最大化了,那么就把他缩小
  5093. // if (_formel.ismaximize) {
  5094. // return;
  5095. // }
  5096. // U.UF.F.windowZooming(_formel);
  5097. // U.UF.F.topWindow(_formel);
  5098. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5099. // var _formel = document.getElementById("studyDetail");
  5100. //如果最大化了,那么就把他缩小
  5101. // if (_formel.ismaximize) {
  5102. // return;
  5103. // }
  5104. // U.UF.F.windowZooming(_formel);
  5105. // U.UF.F.topWindow(_formel);
  5106. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5107. // var _formel = document.getElementById("studentStudy");
  5108. // if (_formel.ismaximize) {
  5109. // return;
  5110. // }
  5111. // U.UF.F.windowZooming(_formel);
  5112. // U.UF.F.topWindow(_formel);
  5113. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5114. var _formel = document.getElementById("study");
  5115. // if (_formel.ismaximize) {
  5116. // return;
  5117. // }
  5118. // U.UF.F.windowZooming(_formel);
  5119. U.UF.F.topWindow(_formel);
  5120. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5121. var _formel = document.getElementById("studentIndex");
  5122. U.UF.F.windowZooming(_formel);
  5123. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5124. var _formel = document.getElementById("studyDetailS");
  5125. U.UF.F.windowZooming(_formel);
  5126. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5127. var _formel = document.getElementById("studioIndex");
  5128. U.UF.F.windowZooming(_formel);
  5129. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5130. var _formel = document.getElementById("studyDetailStudio");
  5131. U.UF.F.windowZooming(_formel);
  5132. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5133. var _formel = document.getElementById("studyDetailStudio");
  5134. U.UF.F.windowZooming(_formel);
  5135. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5136. var _formel = document.getElementById("studyDetailNT");
  5137. U.UF.F.windowZooming(_formel);
  5138. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5139. var _formel = document.getElementById("studyDetailS");
  5140. U.UF.F.windowZooming(_formel);
  5141. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5142. var _formel = document.getElementById("studyDetailS");
  5143. U.UF.F.topWindow(_formel);
  5144. } else if (e.data.tools && e.data.tools == "1") {
  5145. // U.MD.D.I.openApplication("whiteboard")
  5146. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5147. } else if (e.data.tools && e.data.tools == "2") {
  5148. U.MD.D.I.openApplication("note")
  5149. } else if (e.data.tools && e.data.tools == "3") {
  5150. // U.MD.D.I.openApplication("mind")
  5151. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5152. } else if (e.data.tools && e.data.tools == "4") {
  5153. U.MD.D.I.openApplication("investigation")
  5154. } else if (e.data.tools && e.data.tools == "6") {
  5155. // U.MD.D.I.openApplication("doc")
  5156. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5157. } else if (e.data.tools && e.data.tools == "7") {
  5158. // U.MD.D.I.openApplication("mindNetwork")
  5159. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5160. } else if (e.data.tools && e.data.tools == "8") {
  5161. U.MD.D.I.openApplication("library")
  5162. } else if (e.data.tools && e.data.tools == "17") {
  5163. U.MD.D.I.openApplication("stuLibrary")
  5164. } else if (e.data.tools && e.data.tools == "18") {
  5165. U.MD.D.I.openApplication("train")
  5166. } else if (e.data.tools && e.data.tools == "21") {
  5167. U.MD.D.I.openApplication("program")
  5168. } else if (e.data.tools && e.data.tools == "22") {
  5169. U.MD.D.I.openApplication("AIprogram2")
  5170. } else if (e.data.tools && e.data.tools == "23") {
  5171. U.MD.D.I.openApplication("Pythonprogram")
  5172. } else if (e.data.tools && e.data.tools == "24") {
  5173. U.MD.D.I.openApplication("AIprogram")
  5174. } else if (e.data.tools && e.data.tools == "25") {
  5175. U.MD.D.I.openApplication("sys")
  5176. } else if (e.data.tools && e.data.tools == "26") {
  5177. // U.MD.D.I.openApplication("courseDesign")
  5178. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5179. } else if (e.data.tools && e.data.tools == "31") {
  5180. U.MD.D.I.openApplication("netWorkPanel")
  5181. } else if (e.data.tools && e.data.tools == "32") {
  5182. U.MD.D.I.openApplication("codeEdit")
  5183. } else if (e.data.tools && e.data.tools == "57") {
  5184. U.MD.D.I.openApplication("CocoPi")
  5185. } else if (e.data.tools && e.data.tools == "63") {
  5186. U.MD.D.I.openApplication("Wood")
  5187. } else if (e.data.tools && e.data.tools == "58") {
  5188. U.MD.D.I.openApplication("car")
  5189. } else if (e.data.tools && e.data.tools == "59") {
  5190. U.MD.D.I.openApplication("lineSearch")
  5191. } else if (e.data.tools && e.data.tools == "60") {
  5192. U.MD.D.I.openApplication("deepLearning")
  5193. } else if (e.data.tools && e.data.tools == "61") {
  5194. U.MD.D.I.openApplication("allHistory")
  5195. } else if (e.data.tools && e.data.tools == "28") {
  5196. U.MD.D.I.openApplication("translation")
  5197. } else if (e.data.tools && e.data.tools == "37") {
  5198. U.MD.D.I.openApplication("mohe")
  5199. } else if (e.data.tools && e.data.tools == "38") {
  5200. U.MD.D.I.openApplication("24game")
  5201. } else if (e.data.tools && e.data.tools == "39") {
  5202. U.MD.D.I.openApplication("GeoGebra")
  5203. } else if (e.data.tools && e.data.tools == "43") {
  5204. U.MD.D.I.openApplication("studentEvaluate")
  5205. } else if (e.data.tools && e.data.tools == "44") {
  5206. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5207. } else if (e.data.tools && e.data.tools == "46") {
  5208. U.MD.D.I.openApplication("project")
  5209. } else if (e.data.tools && e.data.tools == "71") {
  5210. U.MD.D.I.openApplication("aigptCourse")
  5211. } else if (e.data.tools && e.data.tools == "72") {
  5212. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5213. } else if (e.data.tools && e.data.tools == "1s") {
  5214. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5215. } else if (e.data.tools && e.data.tools == "3s") {
  5216. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5217. } else if (e.data.tools && e.data.tools == "6s") {
  5218. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5219. } else if (e.data.tools && e.data.tools == "1studio") {
  5220. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5221. } else if (e.data.tools && e.data.tools == "3studio") {
  5222. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5223. } else if (e.data.tools && e.data.tools == "6studio") {
  5224. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5225. } else if (e.data.tools && e.data.tools == "3y") {
  5226. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5227. } else if (e.data.tools && e.data.tools == "1y") {
  5228. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5229. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5230. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5231. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5232. U.MD.D.I.openApplication("AIAnalyse")
  5233. } else if (e.data.tools && e.data.tools == "1teacher") {
  5234. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5235. } else if (e.data.tools && e.data.tools == "3teacher") {
  5236. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5237. } else if (e.data.tools && e.data.tools == "7teacher") {
  5238. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5239. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5240. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5241. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5242. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5243. } else if (e.data.tools && e.data.tools == "1E") {
  5244. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5245. } else if (e.data.tools && e.data.tools == "3E") {
  5246. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5247. } else if (e.data.tools && e.data.tools == "57y") {
  5248. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5249. } else if (e.data.tools && e.data.tools == "57u") {
  5250. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5251. } else if (e.data.tools && e.data.tools == "57teacher") {
  5252. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5253. } else if (e.data.tools && e.data.tools == "64") {
  5254. U.MD.D.I.openApplication("AIChat")
  5255. } else if (e.data.tools && e.data.tools == "66") {
  5256. U.MD.D.I.openApplication("formulaEdi")
  5257. } else if (e.data.tools && e.data.tools == "67") {
  5258. U.MD.D.I.openApplication("molStr")
  5259. } else if (e.data.tools && e.data.tools == "68") {
  5260. U.MD.D.I.openApplication("timeAxis")
  5261. } else if (e.data.tools && e.data.tools == "openCourse") {
  5262. let _data = {
  5263. typea: e.data.typea || '',
  5264. typeb: e.data.typeb || '',
  5265. typed: e.data.typed || '',
  5266. }
  5267. U.MD.D.I.openInApplication("index", _data)
  5268. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5269. let _data = {
  5270. classid: e.data.classid || '',
  5271. }
  5272. U.MD.D.I.openInApplication("dataClass", _data)
  5273. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5274. let _data = {
  5275. cid: e.data.cid || '',
  5276. gid: e.data.gid || '',
  5277. }
  5278. U.MD.D.I.openInApplication("opencCscl", _data)
  5279. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5280. U.MD.D.I.openApplication("dataBoardTest")
  5281. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5282. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5283. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5284. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5285. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5286. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5287. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5288. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5289. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5290. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5291. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5292. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5293. }else if (e.data.tools && e.data.tools == "loginSz") {
  5294. U.MD.D.I.openInApplication("loginSz")
  5295. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5296. if($('#classroom_observation_board')[0]){
  5297. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5298. }
  5299. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5300. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5301. if($('#classroom_observation_ob_comment')[0]){
  5302. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5303. }
  5304. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5305. }else if (e.data.tools && e.data.tools == "logout"){
  5306. U.MD.U.LO.logoutSystem()
  5307. }else if (e.data.tools && e.data.tools == "getLogin"){
  5308. let _iframe = $('#UI_Login')[0];
  5309. if (_iframe) {
  5310. var userInfo = US.userInfo;
  5311. var type = 2
  5312. if(userInfo && userInfo.userid){
  5313. type = 1
  5314. }
  5315. _contentWindow = _iframe.contentWindow;
  5316. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5317. }
  5318. }
  5319. });
  5320. U.MD.D.I.selectUser = function () {
  5321. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5322. if (res.value[0].length > 0) {
  5323. US.userInfo = res.value[0][0];
  5324. $(".userName")[0].innerHTML = US.userInfo.username;
  5325. }
  5326. }, [], { "type": "GET", "withCredentials": true });
  5327. }
  5328. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5329. var _userinfo = US.userInfo, //登录用户信息
  5330. _userid = US.userInfo.userid, //登录用户id
  5331. _oid = _userinfo.organizeid,
  5332. _type = US.userInfo.type,
  5333. _org = US.userInfo.org,
  5334. _role = US.userInfo.role,
  5335. _classId = US.userInfo.classid;
  5336. if (_type == 4) {
  5337. tType = 4
  5338. }
  5339. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5340. if(opArray.includes(str)){
  5341. let _str = str
  5342. if(str == 'appStore'){
  5343. _str = "cocoFlow"
  5344. }else if(str == "futureClass"){
  5345. _str = "cocoNote"
  5346. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5347. _str = "IntelligentForm"
  5348. }else if(str == "testStudent" || str == "testStudentSies"){
  5349. _str = "TeacherCenter"
  5350. }
  5351. try {
  5352. if (data) {
  5353. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5354. }else {
  5355. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5356. }
  5357. } catch (error) {
  5358. console.log(error);
  5359. }
  5360. }
  5361. switch (str) {
  5362. case "studyDetailNT": //无终端模式
  5363. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5364. setTimeout(() => {
  5365. U.MD.U.L.login();
  5366. }, 2000);
  5367. } else {
  5368. _formdiv = new U.UF.UI.form(
  5369. "课程详情",
  5370. $$("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 }), {
  5371. "id": "studyDetailNT",
  5372. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5373. "onresize": function () { }
  5374. }, {
  5375. closecallback: function () { }
  5376. }, { "style": { "height": "36px" } }).form; //创建窗体
  5377. _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); } }
  5378. break;
  5379. }
  5380. case "studyDetail":
  5381. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5382. setTimeout(() => {
  5383. U.MD.U.L.login();
  5384. }, 2000);
  5385. } else {
  5386. _formdiv = new U.UF.UI.form(
  5387. "课程详情",
  5388. $$("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 }), {
  5389. "id": "studyDetail",
  5390. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _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); } }
  5396. break;
  5397. }
  5398. case "studyDetailTrain":
  5399. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5400. setTimeout(() => {
  5401. U.MD.U.L.login();
  5402. }, 2000);
  5403. } else {
  5404. _formdiv = new U.UF.UI.form(
  5405. "培训详情",
  5406. $$("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 }), {
  5407. "id": "studyDetailTrain",
  5408. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. _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); } }
  5414. break;
  5415. }
  5416. case "studyDetailS":
  5417. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5418. setTimeout(() => {
  5419. U.MD.U.L.login();
  5420. }, 2000);
  5421. } else {
  5422. _formdiv = new U.UF.UI.form(
  5423. "项目详情",
  5424. $$("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 }), {
  5425. "id": "studyDetailS",
  5426. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //创建窗体
  5431. _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); } }
  5432. break;
  5433. }
  5434. case "studyDetailStudio":
  5435. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5436. setTimeout(() => {
  5437. U.MD.U.L.login();
  5438. }, 2000);
  5439. } else {
  5440. _formdiv = new U.UF.UI.form(
  5441. "工作详情",
  5442. $$("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 }), {
  5443. "id": "studyDetailStudio",
  5444. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _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); } }
  5450. break;
  5451. }
  5452. case "studyDetailS5":
  5453. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5454. setTimeout(() => {
  5455. U.MD.U.L.login();
  5456. }, 2000);
  5457. } else {
  5458. _formdiv = new U.UF.UI.form(
  5459. "项目详情",
  5460. $$("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 }), {
  5461. "id": "studyDetailS",
  5462. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _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); } }
  5468. break;
  5469. }
  5470. case "studyDetailGM":
  5471. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5472. setTimeout(() => {
  5473. U.MD.U.L.login();
  5474. }, 2000);
  5475. } else {
  5476. _formdiv = new U.UF.UI.form(
  5477. "课程详情",
  5478. $$("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 }), {
  5479. "id": "studyDetail",
  5480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _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); } }
  5486. break;
  5487. }
  5488. case "hanUrl":
  5489. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5490. setTimeout(() => {
  5491. U.MD.U.L.login();
  5492. }, 2000);
  5493. } else {
  5494. _formdiv = new U.UF.UI.form(
  5495. "汉字宫",
  5496. $$("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" }), {
  5497. "id": "hanUrl",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. break;
  5505. }
  5506. case "index":
  5507. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5508. setTimeout(() => {
  5509. U.MD.U.L.login();
  5510. }, 2000);
  5511. } else {
  5512. _formdiv = new U.UF.UI.form(
  5513. "课程中心",
  5514. $$("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 }), {
  5515. "id": "study",
  5516. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. _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); } }
  5522. break;
  5523. }
  5524. case "dataClass":
  5525. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5526. setTimeout(() => {
  5527. U.MD.U.L.login();
  5528. }, 2000);
  5529. } else {
  5530. _formdiv = new U.UF.UI.form(
  5531. "数据报告",
  5532. $$("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 }), {
  5533. "id": "dataClass",
  5534. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _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); } }
  5540. break;
  5541. }
  5542. case "opencCscl":
  5543. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5544. setTimeout(() => {
  5545. U.MD.U.L.login();
  5546. }, 2000);
  5547. } else {
  5548. _formdiv = new U.UF.UI.form(
  5549. "协同建构",
  5550. $$("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 }), {
  5551. "id": "futureClass",
  5552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _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); } }
  5558. break;
  5559. }
  5560. case "openCourseUpdate":
  5561. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5562. setTimeout(() => {
  5563. U.MD.U.L.login();
  5564. }, 2000);
  5565. } else {
  5566. _formdiv = new U.UF.UI.form(
  5567. "课程管理",
  5568. $$("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 }), {
  5569. "id": "openCourseUpdate",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. break;
  5576. }
  5577. case "openNewCourseUpdate":
  5578. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5579. setTimeout(() => {
  5580. U.MD.U.L.login();
  5581. }, 2000);
  5582. } else {
  5583. _formdiv = new U.UF.UI.form(
  5584. "课程管理",
  5585. $$("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 }), {
  5586. "id": "openCourseUpdate",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. break;
  5593. }
  5594. case "openCourseEUpdate":
  5595. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5596. setTimeout(() => {
  5597. U.MD.U.L.login();
  5598. }, 2000);
  5599. } else {
  5600. _formdiv = new U.UF.UI.form(
  5601. "课程管理",
  5602. $$("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 }), {
  5603. "id": "openCourseUpdate",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. break;
  5610. }
  5611. case "openCourseAiUpdate":
  5612. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5613. setTimeout(() => {
  5614. U.MD.U.L.login();
  5615. }, 2000);
  5616. } else {
  5617. _formdiv = new U.UF.UI.form(
  5618. "课程管理",
  5619. $$("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 }), {
  5620. "id": "openCourseUpdate",
  5621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. break;
  5627. }
  5628. case "openCourseAiUpdate2":
  5629. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5630. setTimeout(() => {
  5631. U.MD.U.L.login();
  5632. }, 2000);
  5633. } else {
  5634. _formdiv = new U.UF.UI.form(
  5635. "课程管理",
  5636. $$("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 }), {
  5637. "id": "openCourseUpdate",
  5638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. break;
  5644. }
  5645. case "openCourseNewUpdate":
  5646. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5647. setTimeout(() => {
  5648. U.MD.U.L.login();
  5649. }, 2000);
  5650. } else {
  5651. _formdiv = new U.UF.UI.form(
  5652. "课程管理",
  5653. $$("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 }), {
  5654. "id": "openCourseUpdate",
  5655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. break;
  5661. }
  5662. case "inviteLoginSz":
  5663. _formdiv = new U.UF.UI.form(
  5664. "随机码登录",
  5665. $$("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 }), {
  5666. "id": "loginSz",
  5667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //创建窗体
  5672. break;
  5673. case "loginSz":
  5674. _formdiv = new U.UF.UI.form(
  5675. "教师登录",
  5676. $$("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" }), {
  5677. "id": "loginSz",
  5678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. break;
  5684. case "teacher":
  5685. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5686. setTimeout(() => {
  5687. U.MD.U.L.login();
  5688. }, 2000);
  5689. } else {
  5690. _formdiv = new U.UF.UI.form(
  5691. "教师管理",
  5692. $$("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 }), {
  5693. "id": "teacher",
  5694. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. break;
  5700. }
  5701. case "dataBoardSZArea":
  5702. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5703. setTimeout(() => {
  5704. U.MD.U.L.login();
  5705. }, 2000);
  5706. } else {
  5707. _formdiv = new U.UF.UI.form(
  5708. "综合数据看板",
  5709. $$("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 }), {
  5710. "id": "dataBoardSZArea",
  5711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. break;
  5717. }
  5718. case "dataBoardSZCity":
  5719. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5720. setTimeout(() => {
  5721. U.MD.U.L.login();
  5722. }, 2000);
  5723. } else {
  5724. _formdiv = new U.UF.UI.form(
  5725. "综合数据看板",
  5726. $$("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 }), {
  5727. "id": "dataBoardSZCity",
  5728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. break;
  5734. }
  5735. case "classroom_observation_board":
  5736. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5737. setTimeout(() => {
  5738. U.MD.U.L.login();
  5739. }, 2000);
  5740. } else {
  5741. _formdiv = new U.UF.UI.form(
  5742. "课堂观察",
  5743. $$("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 }), {
  5744. "id": "classroom_observation_board",
  5745. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. break;
  5751. }
  5752. case "classroom_observation_ob_comment":
  5753. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5754. setTimeout(() => {
  5755. U.MD.U.L.login();
  5756. }, 2000);
  5757. } else {
  5758. _formdiv = new U.UF.UI.form(
  5759. "课堂审核",
  5760. $$("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 }), {
  5761. "id": "classroom_observation_ob_comment",
  5762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. break;
  5768. }
  5769. case "gptConfig":
  5770. _formdiv = new U.UF.UI.form(
  5771. data.name ? data.name : "应用中心",
  5772. $$("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 }), {
  5773. "id": "gptConfig" + data.id,
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. break;
  5780. case "testDetail":
  5781. _formdiv = new U.UF.UI.form(
  5782. "表单填写",
  5783. $$("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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5784. "id": "testDetail" + data,
  5785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //创建窗体
  5790. break;
  5791. }
  5792. }
  5793. U.MD.D.I.openApplication = function (str, obj, info) {
  5794. obj = obj || {};
  5795. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5796. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5797. _userinfo = US.userInfo, //登录用户信息
  5798. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5799. _oid = obj.organizeid || _userinfo.organizeid,
  5800. _type = US.userInfo.type,
  5801. _org = obj.org || US.userInfo.org,
  5802. _role = US.userInfo.role,
  5803. _classId = US.userInfo.classid,
  5804. _TscreenType = 1
  5805. _screenType = 2,
  5806. _SscreenType = 3;
  5807. let iframeBool = true
  5808. if(U.UF.UI.form.allForm[str]){
  5809. iframeBool = false
  5810. }
  5811. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5812. return;
  5813. }
  5814. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5815. if(opArray.includes(str)){
  5816. let _str = str
  5817. if(str == 'appStore'){
  5818. _str = "cocoFlow"
  5819. }else if(str == "futureClass"){
  5820. _str = "cocoNote"
  5821. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5822. _str = "IntelligentForm"
  5823. }else if(str == "testStudent" || str == "testStudentSies"){
  5824. _str = "TeacherCenter"
  5825. }
  5826. try {
  5827. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5828. } catch (error) {
  5829. console.log(error);
  5830. }
  5831. }
  5832. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5833. switch (str) {
  5834. case "studnetProject": //好友打开
  5835. _formdiv = new U.UF.UI.form(
  5836. "我的项目",
  5837. $$("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 }), {
  5838. "id": "studnetProject",
  5839. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _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); } }
  5845. break;
  5846. case "studentEvaluate": //好友打开
  5847. _formdiv = new U.UF.UI.form(
  5848. "我的评价",
  5849. $$("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 }), {
  5850. "id": "studentEvaluate",
  5851. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, { "style": { "height": "36px" } }).form; //创建窗体
  5856. _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); } }
  5857. break;
  5858. case "my":
  5859. _formdiv = new U.UF.UI.form(
  5860. "我的资料",
  5861. $$("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 }), {
  5862. "id": "my",
  5863. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5864. "onresize": function () { }
  5865. }, {
  5866. closecallback: function () { }
  5867. }, { "style": { "height": "36px" } }).form; //创建窗体
  5868. _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); } }
  5869. break;
  5870. case "program":
  5871. _formdiv = new U.UF.UI.form(
  5872. "编程平台",
  5873. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5874. "id": "program",
  5875. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5876. "onresize": function () { }
  5877. }, {
  5878. closecallback: function () { }
  5879. }, { "style": { "height": "36px" } }).form; //创建窗体
  5880. _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); } }
  5881. break;
  5882. case "library":
  5883. _formdiv = new U.UF.UI.form(
  5884. "素材库",
  5885. $$("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 }), {
  5886. "id": "library",
  5887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5888. "onresize": function () { }
  5889. }, {
  5890. closecallback: function () { }
  5891. }, { "style": { "height": "36px" } }).form; //创建窗体
  5892. _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); } }
  5893. break;
  5894. case "whiteboard":
  5895. _formdiv = new U.UF.UI.form(
  5896. "电子白板",
  5897. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5898. "id": "whiteboard",
  5899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, { "style": { "height": "36px" } }).form; //创建窗体
  5904. _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); } }
  5905. break;
  5906. case "investigation":
  5907. _formdiv = new U.UF.UI.form(
  5908. "问卷调查",
  5909. $$("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 }), {
  5910. "id": "investigation",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. _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); } }
  5917. break;
  5918. case "note":
  5919. _formdiv = new U.UF.UI.form(
  5920. "便签分类",
  5921. $$("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 }), {
  5922. "id": "note",
  5923. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5924. "onresize": function () { }
  5925. }, {
  5926. closecallback: function () { }
  5927. }, { "style": { "height": "36px" } }).form; //创建窗体
  5928. _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); } }
  5929. break;
  5930. // case "score":
  5931. // _formdiv = new U.UF.UI.form(
  5932. // "量规评分",
  5933. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5934. // "id": "score",
  5935. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5936. // "onresize": function() {}
  5937. // }, {
  5938. // closecallback: function() {}
  5939. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5940. // _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); } }
  5941. // break;
  5942. case "mind":
  5943. _formdiv = new U.UF.UI.form(
  5944. "思维导图",
  5945. $$("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"
  5946. "id": "mind",
  5947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5948. "onresize": function () { }
  5949. }, {
  5950. closecallback: function () { }
  5951. }, { "style": { "height": "36px" } }).form; //创建窗体
  5952. _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); } }
  5953. break;
  5954. case "doc":
  5955. // U.MD.D.I.isRoom();
  5956. _formdiv = new U.UF.UI.form(
  5957. "协同文档",
  5958. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5959. "id": "doc",
  5960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5966. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5967. // })
  5968. _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); } }
  5969. break;
  5970. case "studentStudy":
  5971. _formdiv = new U.UF.UI.form(
  5972. "课程中心",
  5973. $$("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
  5974. "id": "studentStudy",
  5975. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _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); } }
  5981. break;
  5982. case "train": //好友打开
  5983. _formdiv = new U.UF.UI.form(
  5984. "训练平台",
  5985. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5986. "id": "train",
  5987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //创建窗体
  5992. _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); } }
  5993. break;
  5994. case "mindNetwork": //好友打开
  5995. _formdiv = new U.UF.UI.form(
  5996. "思维网格",
  5997. $$("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 }), {
  5998. "id": "mindNetwork",
  5999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. _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); } }
  6005. break;
  6006. case "studentClassRoom": //好友打开
  6007. _formdiv = new U.UF.UI.form(
  6008. "实时课堂",
  6009. $$("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 }), {
  6010. "id": "studentClassRoom",
  6011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _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); } }
  6017. setTimeout(() => {
  6018. U.UF.F.windowZooming(_formdiv)
  6019. }, 0);
  6020. break;
  6021. }
  6022. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6023. switch (str) {
  6024. case "studnetProject": //好友打开
  6025. _formdiv = new U.UF.UI.form(
  6026. "我的项目",
  6027. $$("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 }), {
  6028. "id": "studnetProject",
  6029. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _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); } }
  6035. break;
  6036. case "studentEvaluate": //好友打开
  6037. _formdiv = new U.UF.UI.form(
  6038. "我的评价",
  6039. $$("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 }), {
  6040. "id": "studentEvaluate",
  6041. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _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); } }
  6047. break;
  6048. case "my":
  6049. _formdiv = new U.UF.UI.form(
  6050. "我的资料",
  6051. $$("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 }), {
  6052. "id": "my",
  6053. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. _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); } }
  6059. break;
  6060. case "program":
  6061. _formdiv = new U.UF.UI.form(
  6062. "编程平台",
  6063. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6064. "id": "program",
  6065. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6066. "onresize": function () { }
  6067. }, {
  6068. closecallback: function () { }
  6069. }, { "style": { "height": "36px" } }).form; //创建窗体
  6070. _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); } }
  6071. break;
  6072. case "library":
  6073. _formdiv = new U.UF.UI.form(
  6074. "素材库",
  6075. $$("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 }), {
  6076. "id": "library",
  6077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //创建窗体
  6082. _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); } }
  6083. break;
  6084. case "whiteboard":
  6085. _formdiv = new U.UF.UI.form(
  6086. "电子白板",
  6087. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6088. "id": "whiteboard",
  6089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _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); } }
  6095. break;
  6096. case "investigation":
  6097. _formdiv = new U.UF.UI.form(
  6098. "问卷调查",
  6099. $$("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 }), {
  6100. "id": "investigation",
  6101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _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); } }
  6107. break;
  6108. case "note":
  6109. _formdiv = new U.UF.UI.form(
  6110. "便签分类",
  6111. $$("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 }), {
  6112. "id": "note",
  6113. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _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); } }
  6119. break;
  6120. // case "score":
  6121. // _formdiv = new U.UF.UI.form(
  6122. // "量规评分",
  6123. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6124. // "id": "score",
  6125. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6126. // "onresize": function() {}
  6127. // }, {
  6128. // closecallback: function() {}
  6129. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. // _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); } }
  6131. // break;
  6132. case "mind":
  6133. _formdiv = new U.UF.UI.form(
  6134. "思维导图",
  6135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6136. "id": "mind",
  6137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6143. break;
  6144. case "doc":
  6145. // U.MD.D.I.isRoom();
  6146. _formdiv = new U.UF.UI.form(
  6147. "协同文档",
  6148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6149. "id": "doc",
  6150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6151. "onresize": function () { }
  6152. }, {
  6153. closecallback: function () { }
  6154. }, { "style": { "height": "36px" } }).form; //创建窗体
  6155. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6156. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6157. })
  6158. _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); } }
  6159. break;
  6160. case "train": //好友打开
  6161. _formdiv = new U.UF.UI.form(
  6162. "训练平台",
  6163. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6164. "id": "train",
  6165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6171. break;
  6172. case "studentStudy":
  6173. _formdiv = new U.UF.UI.form(
  6174. "课程中心",
  6175. $$("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
  6176. "id": "studentStudy",
  6177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6183. break;
  6184. case "mindNetwork": //好友打开
  6185. _formdiv = new U.UF.UI.form(
  6186. "思维网格",
  6187. $$("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 }), {
  6188. "id": "mindNetwork",
  6189. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6195. break;
  6196. case "studentClassRoom": //好友打开
  6197. _formdiv = new U.UF.UI.form(
  6198. "实时课堂",
  6199. $$("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 }), {
  6200. "id": "studentClassRoom",
  6201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6207. setTimeout(() => {
  6208. U.UF.F.windowZooming(_formdiv)
  6209. }, 0);
  6210. break;
  6211. }
  6212. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6213. //选择应用处理
  6214. switch (str) {
  6215. case "project": //好友打开
  6216. _formdiv = new U.UF.UI.form(
  6217. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6218. $$("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 }), {
  6219. "id": "project",
  6220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _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); } }
  6226. break;
  6227. case "student":
  6228. _formdiv = new U.UF.UI.form(
  6229. "学生管理",
  6230. $$("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 }), {
  6231. "id": "student",
  6232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. break;
  6239. case "evaluate":
  6240. _formdiv = new U.UF.UI.form(
  6241. "学生评价",
  6242. $$("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 }), {
  6243. "id": "evaluate",
  6244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _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); } }
  6250. break;
  6251. case "sys":
  6252. _formdiv = new U.UF.UI.form(
  6253. "目标管理",
  6254. $$("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 }), {
  6255. "id": "sys",
  6256. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _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); } }
  6262. break;
  6263. case "courseDesign":
  6264. _formdiv = new U.UF.UI.form(
  6265. "项目设计",
  6266. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6267. "id": "courseDesign",
  6268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "program":
  6276. _formdiv = new U.UF.UI.form(
  6277. "编程平台",
  6278. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6279. "id": "program",
  6280. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _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); } }
  6286. break;
  6287. case "class":
  6288. _formdiv = new U.UF.UI.form(
  6289. "班级管理",
  6290. $$("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 }), {
  6291. "id": "class",
  6292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. _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); } }
  6298. break;
  6299. case "Grade":
  6300. _formdiv = new U.UF.UI.form(
  6301. "年级管理",
  6302. $$("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 }), {
  6303. "id": "Grade",
  6304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6305. "onresize": function () { }
  6306. }, {
  6307. closecallback: function () { }
  6308. }, { "style": { "height": "36px" } }).form; //创建窗体
  6309. _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); } }
  6310. break;
  6311. case "teacherOffice":
  6312. _formdiv = new U.UF.UI.form(
  6313. "教研室",
  6314. $$("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 }), {
  6315. "id": "teacherOffice",
  6316. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _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); } }
  6322. break;
  6323. case "my":
  6324. _formdiv = new U.UF.UI.form(
  6325. "我的资料",
  6326. $$("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 }), {
  6327. "id": "my",
  6328. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. case "notice":
  6336. _formdiv = new U.UF.UI.form(
  6337. "通知公告",
  6338. $$("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 }), {
  6339. "id": "notice",
  6340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _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); } }
  6346. break;
  6347. case "library":
  6348. _formdiv = new U.UF.UI.form(
  6349. "素材库",
  6350. $$("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 }), {
  6351. "id": "library",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _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); } }
  6358. break;
  6359. case "whiteboard":
  6360. _formdiv = new U.UF.UI.form(
  6361. "电子白板",
  6362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6363. "id": "whiteboard",
  6364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _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); } }
  6370. break;
  6371. case "investigation":
  6372. _formdiv = new U.UF.UI.form(
  6373. "问卷调查",
  6374. $$("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 }), {
  6375. "id": "investigation",
  6376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6377. "onresize": function () { }
  6378. }, {
  6379. closecallback: function () { }
  6380. }, { "style": { "height": "36px" } }).form; //创建窗体
  6381. _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); } }
  6382. break;
  6383. case "note":
  6384. _formdiv = new U.UF.UI.form(
  6385. "便签分类",
  6386. $$("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 }), {
  6387. "id": "note",
  6388. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _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); } }
  6394. break;
  6395. // case "score":
  6396. // _formdiv = new U.UF.UI.form(
  6397. // "量规评分",
  6398. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6399. // "id": "score",
  6400. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6401. // "onresize": function() {}
  6402. // }, {
  6403. // closecallback: function() {}
  6404. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. // _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); } }
  6406. // break;
  6407. case "mind":
  6408. _formdiv = new U.UF.UI.form(
  6409. "思维导图",
  6410. $$("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"
  6411. "id": "mind",
  6412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _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); } }
  6418. break;
  6419. case "doc":
  6420. // U.MD.D.I.isRoom();
  6421. _formdiv = new U.UF.UI.form(
  6422. "协同文档",
  6423. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6424. "id": "doc",
  6425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6431. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6432. })
  6433. _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); } }
  6434. break;
  6435. case "study":
  6436. _formdiv = new U.UF.UI.form(
  6437. "课程中心",
  6438. $$("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
  6439. "id": "study",
  6440. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6441. "onresize": function () { }
  6442. }, {
  6443. closecallback: function () { }
  6444. }, { "style": { "height": "36px" } }).form; //创建窗体
  6445. _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); } }
  6446. break;
  6447. case "mindNetwork": //好友打开
  6448. _formdiv = new U.UF.UI.form(
  6449. "思维网格",
  6450. $$("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 }), {
  6451. "id": "mindNetwork",
  6452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, { "style": { "height": "36px" } }).form; //创建窗体
  6457. _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); } }
  6458. break;
  6459. case "train": //好友打开
  6460. _formdiv = new U.UF.UI.form(
  6461. "训练平台",
  6462. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6463. "id": "mindNetwork",
  6464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6465. "onresize": function () { }
  6466. }, {
  6467. closecallback: function () { }
  6468. }, { "style": { "height": "36px" } }).form; //创建窗体
  6469. _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); } }
  6470. break;
  6471. case "teacherClassRoom": //好友打开
  6472. _formdiv = new U.UF.UI.form(
  6473. "实时课堂",
  6474. $$("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 }), {
  6475. "id": "teacherClassRoom",
  6476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6477. "onresize": function () { }
  6478. }, {
  6479. closecallback: function () { }
  6480. }, { "style": { "height": "36px" } }).form; //创建窗体
  6481. _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); } }
  6482. setTimeout(() => {
  6483. U.UF.F.windowZooming(_formdiv)
  6484. }, 0);
  6485. break;
  6486. }
  6487. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6488. switch (str) {
  6489. case "project": //好友打开
  6490. _formdiv = new U.UF.UI.form(
  6491. "课程管理",
  6492. $$("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 }), {
  6493. "id": "project",
  6494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6500. break;
  6501. case "evaluate":
  6502. _formdiv = new U.UF.UI.form(
  6503. "学生评价",
  6504. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6505. "id": "evaluate",
  6506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //创建窗体
  6511. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6512. break;
  6513. case "notice":
  6514. _formdiv = new U.UF.UI.form(
  6515. "通知公告",
  6516. $$("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 }), {
  6517. "id": "notice",
  6518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //创建窗体
  6523. _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); } }
  6524. break;
  6525. case "stuLibrary":
  6526. _formdiv = new U.UF.UI.form(
  6527. "学习资料",
  6528. $$("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 }), {
  6529. "id": "stuLibrary",
  6530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //创建窗体
  6535. _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); } }
  6536. break;
  6537. case "program":
  6538. _formdiv = new U.UF.UI.form(
  6539. "编程平台",
  6540. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6541. "id": "program",
  6542. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _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); } }
  6548. break;
  6549. case "whiteboard":
  6550. _formdiv = new U.UF.UI.form(
  6551. "电子白板",
  6552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6553. "id": "whiteboard",
  6554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. break;
  6561. case "investigation":
  6562. _formdiv = new U.UF.UI.form(
  6563. "问卷调查",
  6564. $$("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 }), {
  6565. "id": "investigation",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _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); } }
  6572. break;
  6573. case "mind":
  6574. _formdiv = new U.UF.UI.form(
  6575. "思维导图",
  6576. $$("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"
  6577. "id": "mind",
  6578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _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); } }
  6584. break;
  6585. case "doc":
  6586. // U.MD.D.I.isRoom();
  6587. _formdiv = new U.UF.UI.form(
  6588. "协同文档",
  6589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6590. "id": "doc",
  6591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6592. "onresize": function () { }
  6593. }, {
  6594. closecallback: function () { }
  6595. }, { "style": { "height": "36px" } }).form; //创建窗体
  6596. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6597. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6598. })
  6599. _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); } }
  6600. break;
  6601. case "study":
  6602. _formdiv = new U.UF.UI.form(
  6603. "课程中心",
  6604. $$("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
  6605. "id": "study",
  6606. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //创建窗体
  6611. _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); } }
  6612. break;
  6613. case "mindNetwork": //好友打开
  6614. _formdiv = new U.UF.UI.form(
  6615. "思维网格",
  6616. $$("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 }), {
  6617. "id": "mindNetwork",
  6618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _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); } }
  6624. break;
  6625. case "train": //好友打开
  6626. _formdiv = new U.UF.UI.form(
  6627. "训练平台",
  6628. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6629. "id": "train",
  6630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _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); } }
  6636. break;
  6637. case "sys":
  6638. _formdiv = new U.UF.UI.form(
  6639. "目标管理",
  6640. $$("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 }), {
  6641. "id": "sys",
  6642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //创建窗体
  6647. _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); } }
  6648. break;
  6649. case "courseDesign":
  6650. _formdiv = new U.UF.UI.form(
  6651. "项目设计",
  6652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6653. "id": "courseDesign",
  6654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //创建窗体
  6659. _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); } }
  6660. break;
  6661. }
  6662. } else if (!_type) {
  6663. switch (str) {
  6664. case "my":
  6665. _formdiv = new U.UF.UI.form(
  6666. "我的资料",
  6667. $$("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 }), {
  6668. "id": "my",
  6669. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6670. "onresize": function () { }
  6671. }, {
  6672. closecallback: function () { }
  6673. }, { "style": { "height": "36px" } }).form; //创建窗体
  6674. _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); } }
  6675. break;
  6676. }
  6677. }
  6678. switch (str) {
  6679. // AIprogram2 AI体验 aihub.cocorobo.cn
  6680. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6681. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6682. case "formulaEdi": //公式编辑
  6683. _formdiv = new U.UF.UI.form(
  6684. "公式编辑",
  6685. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6686. "id": "formulaEdi",
  6687. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6693. break;
  6694. case "molStr": //分子结构
  6695. _formdiv = new U.UF.UI.form(
  6696. "分子结构",
  6697. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6698. "id": "molStr",
  6699. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _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); } }
  6705. break;
  6706. case "timeAxis": //时间轴
  6707. _formdiv = new U.UF.UI.form(
  6708. "时间轴",
  6709. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6710. "id": "timeAxis",
  6711. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _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); } }
  6717. break;
  6718. case "AIprogram2": //AI体验
  6719. _formdiv = new U.UF.UI.form(
  6720. "AI体验",
  6721. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6722. "id": "AIprogram2",
  6723. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _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); } }
  6729. break;
  6730. case "Pythonprogram": //python编程
  6731. _formdiv = new U.UF.UI.form(
  6732. "Python编程",
  6733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6734. "id": "Pythonprogram",
  6735. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, { "style": { "height": "36px" } }).form; //创建窗体
  6740. _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); } }
  6741. break;
  6742. case "AIprogram": //ai编程
  6743. _formdiv = new U.UF.UI.form(
  6744. "AI编程平台",
  6745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6746. "id": "AIprogram",
  6747. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. break;
  6754. case "CocoPi": //CocoPi
  6755. _formdiv = new U.UF.UI.form(
  6756. "CocoPi",
  6757. $$("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" }), {
  6758. "id": "CocoPi",
  6759. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _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); } }
  6765. break;
  6766. case "Wood": //Wood
  6767. _formdiv = new U.UF.UI.form(
  6768. "海龟编程",
  6769. $$("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/" }), {
  6770. "id": "Wood",
  6771. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "car": //模拟驾驶
  6779. _formdiv = new U.UF.UI.form(
  6780. "模拟驾驶",
  6781. $$("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/" }), {
  6782. "id": "car",
  6783. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _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); } }
  6789. break;
  6790. case "lineSearch": //路径搜索
  6791. _formdiv = new U.UF.UI.form(
  6792. "路径搜索",
  6793. $$("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/" }), {
  6794. "id": "lineSearch",
  6795. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _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); } }
  6801. break;
  6802. case "deepLearning": //深度学习
  6803. _formdiv = new U.UF.UI.form(
  6804. "深度学习",
  6805. $$("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/#" }), {
  6806. "id": "deepLearning",
  6807. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //创建窗体
  6812. _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); } }
  6813. break;
  6814. case "allHistory": //深度学习
  6815. _formdiv = new U.UF.UI.form(
  6816. "全历史",
  6817. $$("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/" }), {
  6818. "id": "allHistory",
  6819. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //创建窗体
  6824. _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); } }
  6825. break;
  6826. case "chatPDF": //ai编程
  6827. _formdiv = new U.UF.UI.form(
  6828. "chatPDF",
  6829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6830. "id": "chatPDF",
  6831. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //创建窗体
  6836. _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); } }
  6837. break;
  6838. case "resources": //国家教育
  6839. _formdiv = new U.UF.UI.form(
  6840. "国家教育",
  6841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6842. "id": "resources",
  6843. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //创建窗体
  6848. _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); } }
  6849. break;
  6850. case "codeEdit": //源码编辑
  6851. _formdiv = new U.UF.UI.form(
  6852. "源码编辑",
  6853. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6854. "id": "codeEdit",
  6855. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6856. "onresize": function () { }
  6857. }, {
  6858. closecallback: function () { }
  6859. }, { "style": { "height": "36px" } }).form; //创建窗体
  6860. _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); } }
  6861. break; //
  6862. case "MindMap": //MindMap
  6863. _formdiv = new U.UF.UI.form(
  6864. "MindMap",
  6865. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6866. "id": "MindMap",
  6867. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6868. "onresize": function () { }
  6869. }, {
  6870. closecallback: function () { }
  6871. }, { "style": { "height": "36px" } }).form; //创建窗体
  6872. _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); } }
  6873. break;
  6874. case "netWorkPanel": //netWorkPanel
  6875. _formdiv = new U.UF.UI.form(
  6876. "netWorkPanel",
  6877. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6878. "id": "netWorkPanel",
  6879. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, { "style": { "height": "36px" } }).form; //创建窗体
  6884. _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); } }
  6885. break;
  6886. case "GeoGebra": //GeoGebra
  6887. _formdiv = new U.UF.UI.form(
  6888. "GeoGebra",
  6889. $$("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" }), {
  6890. "id": "GeoGebra",
  6891. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, { "style": { "height": "36px" } }).form; //创建窗体
  6896. _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); } }
  6897. break;
  6898. case "translation": //翻译
  6899. _formdiv = new U.UF.UI.form(
  6900. "翻译",
  6901. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6902. "id": "translation",
  6903. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //创建窗体
  6908. _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); } }
  6909. break;
  6910. case "mohe": //魔盒
  6911. _formdiv = new U.UF.UI.form(
  6912. "魔盒识字",
  6913. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6914. "id": "mohe",
  6915. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //创建窗体
  6920. _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); } }
  6921. break;
  6922. case "24game": //24点
  6923. _formdiv = new U.UF.UI.form(
  6924. "24点",
  6925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6926. "id": "24game",
  6927. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6928. "onresize": function () { }
  6929. }, {
  6930. closecallback: function () { }
  6931. }, { "style": { "height": "36px" } }).form; //创建窗体
  6932. _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); } }
  6933. break;
  6934. case "case":
  6935. _formdiv = new U.UF.UI.form(
  6936. "课程进展",
  6937. $$("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 }), {
  6938. "id": "case",
  6939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6940. "onresize": function () { }
  6941. }, {
  6942. closecallback: function () { }
  6943. }, { "style": { "height": "36px" } }).form; //创建窗体
  6944. _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); } }
  6945. break;
  6946. case "snf":
  6947. _formdiv = new U.UF.UI.form(
  6948. "赛诺梵",
  6949. $$("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" }), {
  6950. "id": "snf",
  6951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6952. "onresize": function () { }
  6953. }, {
  6954. closecallback: function () { }
  6955. }, { "style": { "height": "36px" } }).form; //创建窗体
  6956. _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); } }
  6957. break;
  6958. case "hanFamily":
  6959. _formdiv = new U.UF.UI.form(
  6960. "汉字家族",
  6961. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6962. "id": "hanFamily",
  6963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6964. "onresize": function () { }
  6965. }, {
  6966. closecallback: function () { }
  6967. }, { "style": { "height": "36px" } }).form; //创建窗体
  6968. _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); } }
  6969. break;
  6970. case "hanClassics":
  6971. _formdiv = new U.UF.UI.form(
  6972. "国学经典",
  6973. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6974. "id": "hanClassics",
  6975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6976. "onresize": function () { }
  6977. }, {
  6978. closecallback: function () { }
  6979. }, { "style": { "height": "36px" } }).form; //创建窗体
  6980. _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); } }
  6981. break;
  6982. case "hanTraining":
  6983. _formdiv = new U.UF.UI.form(
  6984. "笔画训练",
  6985. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6986. "id": "hanTraining",
  6987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6988. "onresize": function () { }
  6989. }, {
  6990. closecallback: function () { }
  6991. }, { "style": { "height": "36px" } }).form; //创建窗体
  6992. _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); } }
  6993. break;
  6994. case "hanClass":
  6995. _formdiv = new U.UF.UI.form(
  6996. "书法课堂",
  6997. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6998. "id": "hanClass",
  6999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7000. "onresize": function () { }
  7001. }, {
  7002. closecallback: function () { }
  7003. }, { "style": { "height": "36px" } }).form; //创建窗体
  7004. _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); } }
  7005. break;
  7006. case "han":
  7007. _formdiv = new U.UF.UI.form(
  7008. "汉字宫",
  7009. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7010. "id": "han",
  7011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7012. "onresize": function () { }
  7013. }, {
  7014. closecallback: function () { }
  7015. }, { "style": { "height": "36px" } }).form; //创建窗体
  7016. _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); } }
  7017. break;
  7018. case "projectGM": //课程管理
  7019. _formdiv = new U.UF.UI.form(
  7020. "课程管理",
  7021. $$("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 }), {
  7022. "id": "projectGM",
  7023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7024. "onresize": function () { }
  7025. }, {
  7026. closecallback: function () { }
  7027. }, { "style": { "height": "36px" } }).form; //创建窗体
  7028. _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); } }
  7029. break;
  7030. case "studyGM": //课程中心
  7031. _formdiv = new U.UF.UI.form(
  7032. "课程中心",
  7033. $$("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
  7034. "id": "study",
  7035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7036. "onresize": function () { }
  7037. }, {
  7038. closecallback: function () { }
  7039. }, { "style": { "height": "36px" } }).form; //创建窗体
  7040. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7041. break;
  7042. // studentGM
  7043. case "studentGM": //学生管理
  7044. _formdiv = new U.UF.UI.form(
  7045. "学生管理",
  7046. $$("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 }), {
  7047. "id": "studentGM",
  7048. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () { }
  7052. }, { "style": { "height": "36px" } }).form; //创建窗体
  7053. _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); } }
  7054. break;
  7055. case "evaluateGM": //学生评价
  7056. _formdiv = new U.UF.UI.form(
  7057. "学生评价",
  7058. $$("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 }), {
  7059. "id": "evaluateGM",
  7060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7061. "onresize": function () { }
  7062. }, {
  7063. closecallback: function () { }
  7064. }, { "style": { "height": "36px" } }).form; //创建窗体
  7065. _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); } }
  7066. break;
  7067. // classGM
  7068. case "classGM": //班级管理
  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/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7072. "id": "classGM",
  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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7079. break;
  7080. // dataGM
  7081. case "dataGM":
  7082. _formdiv = new U.UF.UI.form(
  7083. "我的资料",
  7084. $$("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 }), {
  7085. "id": "dataGM",
  7086. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7087. "onresize": function () { }
  7088. }, {
  7089. closecallback: function () { }
  7090. }, { "style": { "height": "36px" } }).form; //创建窗体
  7091. _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); } }
  7092. break;
  7093. // caseGM
  7094. case "caseGM": //课程进展
  7095. _formdiv = new U.UF.UI.form(
  7096. "课程进展",
  7097. $$("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 }), {
  7098. "id": "caseGM",
  7099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, { "style": { "height": "36px" } }).form; //创建窗体
  7104. _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); } }
  7105. break;
  7106. // meterialGM
  7107. case "meterialGM": //素材库
  7108. _formdiv = new U.UF.UI.form(
  7109. "素材库",
  7110. $$("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 }), {
  7111. "id": "meterialGM",
  7112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, { "style": { "height": "36px" } }).form; //创建窗体
  7117. _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); } }
  7118. break;
  7119. // evaluateSGM
  7120. case "evaluateSGM": //我的评价
  7121. _formdiv = new U.UF.UI.form(
  7122. "我的评价",
  7123. $$("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 }), {
  7124. "id": "evaluateSGM",
  7125. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7126. "onresize": function () { }
  7127. }, {
  7128. closecallback: function () { }
  7129. }, { "style": { "height": "36px" } }).form; //创建窗体
  7130. _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); } }
  7131. break;
  7132. case "jupyter": //jupyter
  7133. _formdiv = new U.UF.UI.form(
  7134. "jupyter",
  7135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7136. "id": "jupyter",
  7137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7138. "onresize": function () { }
  7139. }, {
  7140. closecallback: function () { }
  7141. }, { "style": { "height": "36px" } }).form; //创建窗体
  7142. _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); } }
  7143. break;
  7144. case "number": //数字实验室
  7145. _formdiv = new U.UF.UI.form(
  7146. "数字实验室",
  7147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7148. "id": "number",
  7149. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7150. "onresize": function () { }
  7151. }, {
  7152. closecallback: function () { }
  7153. }, { "style": { "height": "36px" } }).form; //创建窗体
  7154. _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); } }
  7155. break;
  7156. case "studentCourse": //项目管理 学生
  7157. _formdiv = new U.UF.UI.form(
  7158. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7159. $$("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 }), {
  7160. "id": "studentCourse",
  7161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7162. "onresize": function () { }
  7163. }, {
  7164. closecallback: function () { }
  7165. }, { "style": { "height": "36px" } }).form; //创建窗体
  7166. _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); } }
  7167. break;
  7168. case "studentCourseS": //项目管理 老师
  7169. _formdiv = new U.UF.UI.form(
  7170. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7171. $$("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 }), {
  7172. "id": "studentCourseS",
  7173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7174. "onresize": function () { }
  7175. }, {
  7176. closecallback: function () { }
  7177. }, { "style": { "height": "36px" } }).form; //创建窗体
  7178. _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); } }
  7179. break;
  7180. case "studentIndex": //项目中心
  7181. _formdiv = new U.UF.UI.form(
  7182. "项目中心",
  7183. $$("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 }), {
  7184. "id": "studentIndex",
  7185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7186. "onresize": function () { }
  7187. }, {
  7188. closecallback: function () { }
  7189. }, { "style": { "height": "36px" } }).form; //创建窗体
  7190. _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); } }
  7191. break;
  7192. case "CaseDesignS":
  7193. _formdiv = new U.UF.UI.form(
  7194. "项目进展",
  7195. $$("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 }), {
  7196. "id": "case",
  7197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7198. "onresize": function () { }
  7199. }, {
  7200. closecallback: function () { }
  7201. }, { "style": { "height": "36px" } }).form; //创建窗体
  7202. _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); } }
  7203. break;
  7204. case "tcStudent": //腾讯学生管理
  7205. _formdiv = new U.UF.UI.form(
  7206. "学生管理",
  7207. $$("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 }), {
  7208. "id": "tcStudent",
  7209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7210. "onresize": function () { }
  7211. }, {
  7212. closecallback: function () { }
  7213. }, { "style": { "height": "36px" } }).form; //创建窗体
  7214. _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); } }
  7215. break;
  7216. case "tcSchool": //腾讯学校管理
  7217. _formdiv = new U.UF.UI.form(
  7218. "学校管理",
  7219. $$("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 }), {
  7220. "id": "tcSchool",
  7221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7222. "onresize": function () { }
  7223. }, {
  7224. closecallback: function () { }
  7225. }, { "style": { "height": "36px" } }).form; //创建窗体
  7226. _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); } }
  7227. break;
  7228. case "tcTeacher": //腾讯学校管理
  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/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7232. "id": "tcTeacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7239. break;
  7240. case "teacher":
  7241. _formdiv = new U.UF.UI.form(
  7242. "教师管理",
  7243. $$("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 }), {
  7244. "id": "teacher",
  7245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7246. "onresize": function () { }
  7247. }, {
  7248. closecallback: function () { }
  7249. }, { "style": { "height": "36px" } }).form; //创建窗体
  7250. _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); } }
  7251. break;
  7252. case "tcData": //腾讯我的资料
  7253. _formdiv = new U.UF.UI.form(
  7254. "我的资料",
  7255. $$("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 }), {
  7256. "id": "tcData",
  7257. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7258. "onresize": function () { }
  7259. }, {
  7260. closecallback: function () { }
  7261. }, { "style": { "height": "36px" } }).form; //创建窗体
  7262. _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); } }
  7263. break;
  7264. case "tcNotice": //腾讯消息通知
  7265. _formdiv = new U.UF.UI.form(
  7266. "消息通知",
  7267. $$("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 }), {
  7268. "id": "tcNotice",
  7269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7270. "onresize": function () { }
  7271. }, {
  7272. closecallback: function () { }
  7273. }, { "style": { "height": "36px" } }).form; //创建窗体
  7274. _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); } }
  7275. break;
  7276. case "myReport": //好友打开
  7277. _formdiv = new U.UF.UI.form(
  7278. "我的评价",
  7279. $$("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 }), {
  7280. "id": "myReport",
  7281. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7282. "onresize": function () { }
  7283. }, {
  7284. closecallback: function () { }
  7285. }, { "style": { "height": "36px" } }).form; //创建窗体
  7286. _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); } }
  7287. break;
  7288. case "learnAna": //好友打开
  7289. _formdiv = new U.UF.UI.form(
  7290. "学习分析",
  7291. $$("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 }), {
  7292. "id": "learnAna",
  7293. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7294. "onresize": function () { }
  7295. }, {
  7296. closecallback: function () { }
  7297. }, { "style": { "height": "36px" } }).form; //创建窗体
  7298. _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); } }
  7299. break;
  7300. case "AIChat": //AI共创
  7301. _formdiv = new U.UF.UI.form(
  7302. "AI共创",
  7303. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7304. "id": "AIChat",
  7305. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7306. "onresize": function () { }
  7307. }, {
  7308. istop: true,
  7309. closecallback: function () { $("#aichat_icon").remove(); },
  7310. narrowcallback: function () {
  7311. if (!$("#aichat_icon")[0]) {
  7312. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7313. }
  7314. },
  7315. }, { "style": { "height": "36px" } }).form; //创建窗体
  7316. _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); } }
  7317. break;
  7318. case "ainew": //AI共创
  7319. _formdiv = new U.UF.UI.form(
  7320. "AI协同",
  7321. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7322. "id": "ainew",
  7323. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7324. "onresize": function () { }
  7325. }, {
  7326. closecallback: function () { }
  7327. }, { "style": { "height": "36px" } }).form; //创建窗体
  7328. _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); } }
  7329. break;
  7330. case "gpt4": //gpt4
  7331. _formdiv = new U.UF.UI.form(
  7332. "AI助手",
  7333. $$("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 }), {
  7334. "id": "gpt4",
  7335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7336. "onresize": function () { }
  7337. }, {
  7338. closecallback: function () { }
  7339. }, { "style": { "height": "36px" } }).form; //创建窗体
  7340. _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); } }
  7341. break;
  7342. case "aigpt": //gpt4
  7343. _formdiv = new U.UF.UI.form(
  7344. "AI助手+",
  7345. $$("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 }), {
  7346. "id": "aigpt",
  7347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7348. "onresize": function () { }
  7349. }, {
  7350. closecallback: function () {
  7351. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7352. }
  7353. }, { "style": { "height": "36px" } }).form; //创建窗体
  7354. _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); } }
  7355. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7356. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7357. })
  7358. break;
  7359. case "aiKnowledge": //aiKnowledge
  7360. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7361. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7362. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7363. }
  7364. _formdiv = new U.UF.UI.form(
  7365. "知识建构",
  7366. $$("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 }), {
  7367. "id": "aiKnowledge",
  7368. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7369. "onresize": function () { }
  7370. }, {
  7371. closecallback: function () { }
  7372. }, { "style": { "height": "36px" } }).form; //创建窗体
  7373. _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); } }
  7374. break;
  7375. case "futureClass": //AI共创
  7376. _formdiv = new U.UF.UI.form(
  7377. "协同建构",
  7378. $$("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
  7379. "id": "synergyCourse",
  7380. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7381. "onresize": function () { }
  7382. }, {
  7383. closecallback: function () {
  7384. $("iframe", _formdiv)[0].contentWindow.loginout();
  7385. }
  7386. }, { "style": { "height": "36px" } }).form; //创建窗体
  7387. _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); } }
  7388. break;
  7389. case "aiagent": //ai agent
  7390. _formdiv = new U.UF.UI.form(
  7391. "AI Agent",
  7392. $$("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" }), {
  7393. "id": "AIAgent",
  7394. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7395. "onresize": function () { }
  7396. }, {
  7397. closecallback: function () { }
  7398. }, { "style": { "height": "36px" } }).form; //创建窗体
  7399. _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); } }
  7400. break;
  7401. case "dataBoard": //数据看板
  7402. _formdiv = new U.UF.UI.form(
  7403. "数据看板",
  7404. $$("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 }), {
  7405. "id": "dataBoard",
  7406. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, { "style": { "height": "36px" } }).form; //创建窗体
  7411. _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); } }
  7412. break;
  7413. case "dataBoardSies": //数据融合
  7414. _formdiv = new U.UF.UI.form(
  7415. "数据融合",
  7416. $$("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 }), {
  7417. "id": "dataBoardSies",
  7418. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7419. "onresize": function () { }
  7420. }, {
  7421. closecallback: function () { }
  7422. }, { "style": { "height": "36px" } }).form; //创建窗体
  7423. _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); } }
  7424. break;
  7425. case "dataBoardNew": //数据看板
  7426. _formdiv = new U.UF.UI.form(
  7427. "综合看板",
  7428. $$("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 }), {
  7429. "id": "dataBoardNew",
  7430. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7431. "onresize": function () { }
  7432. }, {
  7433. closecallback: function () { }
  7434. }, { "style": { "height": "36px" } }).form; //创建窗体
  7435. _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); } }
  7436. break;
  7437. case "dataBoardTest": //数据看板
  7438. _formdiv = new U.UF.UI.form(
  7439. "评测看板",
  7440. $$("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 }), {
  7441. "id": "dataBoardTest",
  7442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7443. "onresize": function () { }
  7444. }, {
  7445. closecallback: function () { }
  7446. }, { "style": { "height": "36px" } }).form; //创建窗体
  7447. _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); } }
  7448. break;
  7449. case "AIAnalyse": //AI共创
  7450. _formdiv = new U.UF.UI.form(
  7451. "AI分析",
  7452. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7453. "id": "AIAnalyse",
  7454. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7455. "onresize": function () { }
  7456. }, {
  7457. closecallback: function () { }
  7458. }, { "style": { "height": "36px" } }).form; //创建窗体
  7459. _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); } }
  7460. break;
  7461. case "studioCourse": //AI共创
  7462. _formdiv = new U.UF.UI.form(
  7463. "工作管理",
  7464. $$("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 }), {
  7465. "id": "studioCourse",
  7466. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7467. "onresize": function () { }
  7468. }, {
  7469. closecallback: function () { }
  7470. }, { "style": { "height": "36px" } }).form; //创建窗体
  7471. _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); } }
  7472. break;
  7473. case "studioIndex": //AI共创
  7474. _formdiv = new U.UF.UI.form(
  7475. "工作中心",
  7476. $$("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 }), {
  7477. "id": "studioIndex",
  7478. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7479. "onresize": function () { }
  7480. }, {
  7481. closecallback: function () { }
  7482. }, { "style": { "height": "36px" } }).form; //创建窗体
  7483. _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); } }
  7484. break;
  7485. case "source":
  7486. _formdiv = new U.UF.UI.form(
  7487. "教学资源",
  7488. $$("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 }), {
  7489. "id": "source",
  7490. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, { "style": { "height": "36px" } }).form; //创建窗体
  7495. _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); } }
  7496. break;
  7497. case "testTeacher":
  7498. _formdiv = new U.UF.UI.form(
  7499. "智能表单",
  7500. $$("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 }), {
  7501. "id": "testTeacher",
  7502. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7508. break;
  7509. case "testStudent":
  7510. _formdiv = new U.UF.UI.form(
  7511. "教师中心",
  7512. $$("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 }), {
  7513. "id": "testStudent",
  7514. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () { }
  7518. }, { "style": { "height": "36px" } }).form; //创建窗体
  7519. _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); } }
  7520. break;
  7521. case "testTeacherSies":
  7522. _formdiv = new U.UF.UI.form(
  7523. "教师管理",
  7524. $$("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 }), {
  7525. "id": "testTeacherSies",
  7526. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, { "style": { "height": "36px" } }).form; //创建窗体
  7531. _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); } }
  7532. break;
  7533. case "testStudentSies":
  7534. _formdiv = new U.UF.UI.form(
  7535. "教师中心",
  7536. $$("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 }), {
  7537. "id": "testStudentSies",
  7538. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7539. "onresize": function () { }
  7540. }, {
  7541. closecallback: function () { }
  7542. }, { "style": { "height": "36px" } }).form; //创建窗体
  7543. _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); } }
  7544. break;
  7545. case "ytpbl": //消息通知
  7546. _formdiv = new U.UF.UI.form(
  7547. "案例征集",
  7548. $$("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 }), {
  7549. "id": "ytpbl",
  7550. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7551. "onresize": function () { }
  7552. }, {
  7553. closecallback: function () { }
  7554. }, { "style": { "height": "36px" } }).form; //创建窗体
  7555. _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); } }
  7556. // 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");
  7557. break;
  7558. case "aiCourseResource": //人工智能窗体
  7559. _formdiv = new U.UF.UI.form(
  7560. false,
  7561. $$("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 }), {
  7562. "id": "aiCourseResource",
  7563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7564. "onresize": function () { },
  7565. "isdrag": false,
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //创建窗体
  7569. _taskbar = ''
  7570. break;
  7571. case "szdjgCocooroboX": //图形化编程
  7572. _formdiv = new U.UF.UI.form(
  7573. "图形化编程",
  7574. $$("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" }), {
  7575. "id": "szdjgCocooroboX",
  7576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, { "style": { "height": "36px" } }).form; //创建窗体
  7581. _taskbar = ''
  7582. break;
  7583. case "szdjgPython": //python编程
  7584. _formdiv = new U.UF.UI.form(
  7585. "Python编程",
  7586. $$("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" }), {
  7587. "id": "szdjgPython",
  7588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7589. "onresize": function () { }
  7590. }, {
  7591. closecallback: function () { }
  7592. }, { "style": { "height": "36px" } }).form; //创建窗体
  7593. _taskbar = ''
  7594. break;
  7595. case "Record":
  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/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7599. "id": "Record",
  7600. "style": { "width": "90%", "height": "90%", "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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7606. break;
  7607. case "aigptCourse":
  7608. _formdiv = new U.UF.UI.form(
  7609. "AI智能体",
  7610. $$("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' }), {
  7611. "id": "aigptCourse",
  7612. "style": { "width": "90%", "height": "90%", "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/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7618. break;
  7619. case "classroomObservation":
  7620. _formdiv = new U.UF.UI.form(
  7621. "课堂观察",
  7622. $$("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 }), {
  7623. "id": "classroomObservation",
  7624. "style": { "width": "100%", "height": "100%", "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/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7630. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7631. break;
  7632. case "pblCourse":
  7633. _formdiv = new U.UF.UI.form(
  7634. "学生PBL",
  7635. $$("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 }), {
  7636. "id": "pblCourse",
  7637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7638. "onresize": function () { }
  7639. }, {
  7640. closecallback: function () { }
  7641. }, { "style": { "height": "36px" } }).form; //创建窗体
  7642. _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); } }
  7643. break;
  7644. case "appStore":
  7645. U.MD.D.addOp('','cocoflowOpen','')
  7646. _formdiv = new U.UF.UI.form(
  7647. "CocoFlow",
  7648. $$("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 }), {
  7649. "id": "appStore",
  7650. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7651. "onresize": function () { }
  7652. }, {
  7653. closecallback: function () { }
  7654. }, { "style": { "height": "36px" } }).form; //创建窗体
  7655. _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); } }
  7656. break;
  7657. case "sassPlatform":
  7658. _formdiv = new U.UF.UI.form(
  7659. "Sass通用后台管理",
  7660. $$("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 }), {
  7661. "id": "sassPlatform",
  7662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, { "style": { "height": "36px" } }).form; //创建窗体
  7667. _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); } }
  7668. break;
  7669. case "EDU":
  7670. _formdiv = new U.UF.UI.form(
  7671. "EDU",
  7672. $$("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" }), {
  7673. "id": "EDU",
  7674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, { "style": { "height": "36px" } }).form; //创建窗体
  7679. _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); } }
  7680. break;
  7681. case "knowledge":
  7682. _formdiv = new U.UF.UI.form(
  7683. "知识库",
  7684. $$("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 }), {
  7685. "id": "knowledge",
  7686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7687. "onresize": function () { }
  7688. }, {
  7689. closecallback: function () { }
  7690. }, { "style": { "height": "36px" } }).form; //创建窗体
  7691. _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); } }
  7692. break;
  7693. case "userExamine":
  7694. _formdiv = new U.UF.UI.form(
  7695. "账号申请",
  7696. $$("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" }), {
  7697. "id": "userExamine",
  7698. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7699. "onresize": function () { }
  7700. }, {
  7701. closecallback: function () { }
  7702. }, { "style": { "height": "36px" } }).form; //创建窗体
  7703. break;
  7704. case "cocoflowDeskTop": //cocoflowDeskTop
  7705. _formdiv = new U.UF.UI.form(
  7706. false,
  7707. $$("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 }), {
  7708. "id": "cocoflowDeskTop",
  7709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7710. "onresize": function () { },
  7711. }, {
  7712. closecallback: function () { },
  7713. "isdrag": false,
  7714. }, { "style": { "height": "36px" } }).form; //创建窗体
  7715. _taskbar = ''
  7716. break;
  7717. case "liyuanLogin": //liyuanLogin
  7718. _formdiv = new U.UF.UI.form(
  7719. false,
  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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7721. "id": "liyuanLogin",
  7722. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7723. "onresize": function () { },
  7724. }, {
  7725. closecallback: function () { },
  7726. isdrag: false,
  7727. isstretching: false,
  7728. isenlarge: false,
  7729. isnarrow: false
  7730. }, { "style": { "height": "36px" } }).form; //创建窗体
  7731. _taskbar = ''
  7732. break;
  7733. case "updatePaDialog":
  7734. _formdiv = new U.UF.UI.form(
  7735. "密码修改",
  7736. $$("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 }), {
  7737. "id": "updatePaDialog",
  7738. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7739. "onresize": function () { },
  7740. }, {
  7741. closecallback: function () { },
  7742. isclose: false,
  7743. isdrag: false,
  7744. isstretching: false,
  7745. isenlarge: false,
  7746. isnarrow: false
  7747. }, { "style": { "height": "36px" } }).form; //创建窗体
  7748. break;
  7749. }
  7750. //U.MD.D.I.openClick(str);
  7751. //如果有任务栏信息
  7752. if (_taskbar) {
  7753. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7754. }
  7755. if(iframeBool){
  7756. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7757. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7758. // console.log("iframe进入");
  7759. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7760. // };
  7761. setTimeout(() => {
  7762. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7763. }, 2000);
  7764. }
  7765. }
  7766. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7767. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7768. _userinfo = US.userInfo, //登录用户信息
  7769. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7770. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7771. let iframeBool = true;
  7772. let queryString = ''
  7773. if(array && array.length){
  7774. const paramsMap = {
  7775. userid: _userid,
  7776. org: _org,
  7777. oid: _oid,
  7778. type: _type,
  7779. role: _role,
  7780. classId: _classId,
  7781. TscreenType: _TscreenType,
  7782. SscreenType: _SscreenType
  7783. };
  7784. const canshu = array
  7785. .filter(param => paramsMap[param] !== undefined)
  7786. .map(param => `${param}=${paramsMap[param]}`);
  7787. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7788. }
  7789. let _url = url + queryString
  7790. if(U.UF.UI.form.allForm[id]){
  7791. iframeBool = false
  7792. }
  7793. _formdiv = new U.UF.UI.form(
  7794. false,
  7795. $$("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 }),
  7796. {
  7797. "id": id,
  7798. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7799. "onresize": function () { },
  7800. },
  7801. {
  7802. closecallback: function () { },
  7803. isdrag: false,
  7804. isstretching: false,
  7805. isenlarge: false,
  7806. isnarrow: false
  7807. },
  7808. { "style": { "height": "36px" } },
  7809. undefined,
  7810. undefined,
  7811. dom
  7812. ).form
  7813. }
  7814. // U.MD.D.I.openClick = function(str){
  7815. // var click = '';
  7816. // switch(str){
  7817. // case 'friend':
  7818. // click = '我的好友';
  7819. // break;
  7820. // case 'domain':
  7821. // click = '域名管理';
  7822. // break;
  7823. // case 'disk':
  7824. // click = '我的云盘';
  7825. // break;
  7826. // case 'word':
  7827. // click = 'Word';
  7828. // break;
  7829. // case 'excel':
  7830. // click = 'Execl';
  7831. // break;
  7832. // case 'txt':
  7833. // click = '文本文件';
  7834. // break;
  7835. // case 'lookupFriend':
  7836. // click = '查找好友';
  7837. // break;
  7838. // case 'ftp':
  7839. // click = 'FTP';
  7840. // break;
  7841. // case 'group':
  7842. // click = '群组';
  7843. // break;
  7844. // case 'set':
  7845. // click = '我的设置';
  7846. // break;
  7847. // case 'systemSet':
  7848. // click = '系统设置';
  7849. // break;
  7850. // case 'boomYun':
  7851. // click = '互联办公';
  7852. // break;
  7853. // case 'xz':
  7854. // click = '云端下载';
  7855. // break;
  7856. // case 'client':
  7857. // click = '有思浏览器';
  7858. // break;
  7859. // case 'backEndProgramming':
  7860. // click = '在线后台编程';
  7861. // break;
  7862. // case 'frontEndProgramming':
  7863. // click = '在线前端编程';
  7864. // break;
  7865. // default: break;
  7866. // }
  7867. // if(U.MD.D.I.Ip && click){
  7868. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7869. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7870. // })
  7871. // }
  7872. // }
  7873. /**
  7874. *函数作用:ajax简易函数,使用post格式
  7875. *@param url {data} 后台地址
  7876. *@param data {data} 参数json
  7877. *@param fn {data} 回调函数
  7878. *
  7879. */
  7880. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7881. // var xhr = new XMLHttpRequest();
  7882. // xhr.open("GET",url,true);
  7883. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7884. // xhr.onreadystatechange = function(){
  7885. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7886. // fn.call(this,xhr.responseText);
  7887. // }
  7888. // };
  7889. // xhr.send();
  7890. // }
  7891. /*判断是否是内网IP*/
  7892. // U.MD.D.I.isInnerIPFn = function(str){
  7893. // var curPageUrl = str;
  7894. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7895. // curPageUrl =curPageUrl.replace(reg1,'');
  7896. // // console.log('curPageUrl-1 '+curPageUrl);
  7897. // var reg2 = /\:+/g;//替换冒号为一点
  7898. // curPageUrl =curPageUrl.replace(reg2,'.');
  7899. // // console.log('curPageUrl-2 '+curPageUrl);
  7900. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7901. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7902. // if(curPageUrl[2] != '16'){
  7903. // return ipAddress;
  7904. // }else{
  7905. // return false;
  7906. // }
  7907. // }
  7908. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7909. // //compatibility for firefox and chrome
  7910. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7911. // var pc = new myPeerConnection({
  7912. // iceServers: []
  7913. // }),
  7914. // noop = function() {},
  7915. // localIPs = {},
  7916. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7917. // key;
  7918. // function iterateIP(ip) {
  7919. // if (!localIPs[ip]) onNewIP(ip);
  7920. // localIPs[ip] = true;
  7921. // }
  7922. // //create a bogus data channel
  7923. // pc.createDataChannel("");
  7924. // // create offer and set local description
  7925. // pc.createOffer().then(function(sdp) {
  7926. // sdp.sdp.split('\n').forEach(function(line) {
  7927. // if (line.indexOf('candidate') < 0) return;
  7928. // line.match(ipRegex).forEach(iterateIP);
  7929. // });
  7930. // pc.setLocalDescription(sdp, noop, noop);
  7931. // }).catch(function(reason) {
  7932. // // An error occurred, so handle the failure to connect
  7933. // });
  7934. // //sten for candidate events
  7935. // pc.onicecandidate = function(ice) {
  7936. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7937. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7938. // };
  7939. // }
  7940. // U.MD.D.I.getUserIpBool = function(callback){
  7941. // U.MD.D.I.getUserIP(function(ip){
  7942. // alert("Got IP! :" + ip);
  7943. // });
  7944. //}
  7945. //#endregion
  7946. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7947. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7948. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7949. _userinfo = US.userInfo, //登录用户信息
  7950. _userid = US.userInfo.userid //登录用户id
  7951. let _iframe;
  7952. let _cid = cid,
  7953. _stage = stage,
  7954. _task = task,
  7955. _tool = tool;
  7956. var _jie = $$("div", {
  7957. "style": {
  7958. "position": "absolute",
  7959. "bottom": "50px",
  7960. "right": "50px",
  7961. "zIndex": "9999",
  7962. "backgroundColor": "#2268bc",
  7963. "color": "#fff",
  7964. "padding": "12px 20px",
  7965. "cursor": "pointer",
  7966. "borderRadius": "4px",
  7967. },
  7968. "innerHTML": "提交作业"
  7969. })
  7970. let aTool = ''
  7971. let _loading = document.createElement('div')
  7972. _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;"
  7973. // _loading.id = "";
  7974. let _lchild = document.createElement('div')
  7975. let _limg = document.createElement('img')
  7976. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7977. _limg.style = "width: 26px;margin-right: 10px;"
  7978. _lchild.appendChild(_limg)
  7979. let _lspan = document.createElement('span')
  7980. _lspan.innerHTML = "上传中..."
  7981. _lchild.appendChild(_lspan)
  7982. _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%);"
  7983. _loading.appendChild(_lchild)
  7984. var _box = $$('div', {
  7985. "style": {
  7986. "position": "relative",
  7987. "width": "100%",
  7988. "height": "100%",
  7989. },
  7990. })
  7991. _box.appendChild(_loading)
  7992. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7993. switch (str) {
  7994. case "whiteboard":
  7995. aTool = 1;
  7996. _iframe = $$("iframe", {
  7997. "frameborder": "no",
  7998. "border": "0",
  7999. "scrolling ": "no",
  8000. "style": {
  8001. "cssText": "border:0;width:100%;height:100%"
  8002. },
  8003. "src": "https://beta.iwb.cocorobo.cn/"
  8004. })
  8005. _box.appendChild(_iframe);
  8006. _box.appendChild(_jie);
  8007. _formdiv = new U.UF.UI.form(
  8008. "电子白板",
  8009. _box, {
  8010. "id": "whiteboard" + cid + stage + task + tool,
  8011. "style": {
  8012. "width": "90%",
  8013. "height": "90%",
  8014. "overflow": 'hidden'
  8015. },
  8016. "onresize": function () { }
  8017. }, {
  8018. closecallback: function () { }
  8019. }, {
  8020. "style": {
  8021. "height": "36px"
  8022. }
  8023. }).form; //创建窗体
  8024. _taskbar = {
  8025. "id": str + _formdiv.id,
  8026. "style": {
  8027. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8028. },
  8029. "name": "电子白板",
  8030. "forms": _formdiv,
  8031. "click": function () {
  8032. U.MD.D.I.openApplication(str, obj, info);
  8033. }
  8034. }
  8035. break;
  8036. case "mind":
  8037. aTool = 3;
  8038. _iframe = $$("iframe", {
  8039. "frameborder": "no",
  8040. "border": "0",
  8041. "scrolling ": "no",
  8042. "style": {
  8043. "cssText": "border:0;width:100%;height:100%"
  8044. },
  8045. "src": "/kityminder-editor/dist/index.html"
  8046. })
  8047. _box.appendChild(_iframe);
  8048. _box.appendChild(_jie);
  8049. _formdiv = new U.UF.UI.form(
  8050. "思维导图",
  8051. _box, { //"/jsmind/example/demo.html"
  8052. "id": "mind" + cid + stage + task + tool,
  8053. "style": {
  8054. "width": "90%",
  8055. "height": "90%",
  8056. "overflow": 'hidden'
  8057. },
  8058. "onresize": function () { }
  8059. }, {
  8060. closecallback: function () { }
  8061. }, {
  8062. "style": {
  8063. "height": "36px"
  8064. }
  8065. }).form; //创建窗体
  8066. _taskbar = {
  8067. "id": str + _formdiv.id,
  8068. "style": {
  8069. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8070. },
  8071. "name": "思维导图",
  8072. "forms": _formdiv,
  8073. "click": function () {
  8074. U.MD.D.I.openApplication(str, obj, info);
  8075. }
  8076. }
  8077. break;
  8078. case "MindMap":
  8079. aTool = 3;
  8080. _iframe = $$("iframe", {
  8081. "frameborder": "no",
  8082. "border": "0",
  8083. "scrolling ": "no",
  8084. "style": {
  8085. "cssText": "border:0;width:100%;height:100%"
  8086. },
  8087. "src": "//cloud.cocorobo.cn/mind/"
  8088. })
  8089. _box.appendChild(_iframe);
  8090. _box.appendChild(_jie);
  8091. _formdiv = new U.UF.UI.form(
  8092. "思维导图",
  8093. _box, { //"/jsmind/example/demo.html"
  8094. "id": "mind" + cid + stage + task + tool,
  8095. "style": {
  8096. "width": "90%",
  8097. "height": "90%",
  8098. "overflow": 'hidden'
  8099. },
  8100. "onresize": function () { }
  8101. }, {
  8102. closecallback: function () { }
  8103. }, {
  8104. "style": {
  8105. "height": "36px"
  8106. }
  8107. }).form; //创建窗体
  8108. _taskbar = {
  8109. "id": str + _formdiv.id,
  8110. "style": {
  8111. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8112. },
  8113. "name": "思维导图",
  8114. "forms": _formdiv,
  8115. "click": function () {
  8116. U.MD.D.I.openApplication(str, obj, info);
  8117. }
  8118. }
  8119. break;
  8120. case "doc":
  8121. aTool = 6;
  8122. _iframe = $$("iframe", {
  8123. "frameborder": "no",
  8124. "border": "0",
  8125. "scrolling ": "no",
  8126. "style": {
  8127. "cssText": "border:0;width:100%;height:100%"
  8128. },
  8129. "src": "/Office/Word/WordEditArea.htm"
  8130. })
  8131. _box.appendChild(_iframe);
  8132. _box.appendChild(_jie);
  8133. _formdiv = new U.UF.UI.form(
  8134. "协同文档",
  8135. _box, {
  8136. "id": "doc" + cid + stage + task + tool,
  8137. "style": {
  8138. "width": "90%",
  8139. "height": "90%",
  8140. "overflow": 'hidden'
  8141. },
  8142. "onresize": function () { }
  8143. }, {
  8144. closecallback: function () { }
  8145. }, {
  8146. "style": {
  8147. "height": "36px"
  8148. }
  8149. }).form; //创建窗体
  8150. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8151. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8152. })
  8153. _taskbar = {
  8154. "id": str + _formdiv.id,
  8155. "style": {
  8156. "backgroundImage": "url(/img/icon/doc.png)"
  8157. },
  8158. "name": "协同文档",
  8159. "forms": _formdiv,
  8160. "click": function () {
  8161. U.MD.D.I.openApplication(str, obj, info);
  8162. }
  8163. }
  8164. break;
  8165. case "mindNetwork": //好友打开
  8166. aTool = 7;
  8167. _iframe = $$("iframe", {
  8168. "webkitallowfullscreen": "",
  8169. "mozallowfullscreen": "",
  8170. "allowfullscreen": "",
  8171. "frameborder": "no",
  8172. "border": "0",
  8173. "scrolling ": "no",
  8174. "style": {
  8175. "cssText": "border:0; width:100%; height:100%;"
  8176. },
  8177. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8178. })
  8179. _box.appendChild(_iframe);
  8180. _box.appendChild(_jie);
  8181. _formdiv = new U.UF.UI.form(
  8182. "思维网格",
  8183. _box, {
  8184. "id": "mindNetwork" + cid + stage + task + tool,
  8185. "style": {
  8186. "width": "90%",
  8187. "height": "90%",
  8188. "overflow": 'hidden'
  8189. },
  8190. "onresize": function () { }
  8191. }, {
  8192. closecallback: function () { }
  8193. }, {
  8194. "style": {
  8195. "height": "36px"
  8196. }
  8197. }).form; //创建窗体
  8198. _taskbar = {
  8199. "id": str + _formdiv.id,
  8200. "style": {
  8201. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8202. },
  8203. "name": "思维网格",
  8204. "forms": _formdiv,
  8205. "click": function () {
  8206. U.MD.D.I.openApplication(str, obj, info);
  8207. }
  8208. }
  8209. break;
  8210. case "courseDesign":
  8211. _iframe = $$("iframe", {
  8212. "webkitallowfullscreen": "",
  8213. "mozallowfullscreen": "",
  8214. "allowfullscreen": "",
  8215. "frameborder": "no",
  8216. "border": "0",
  8217. "scrolling ": "no",
  8218. "style": {
  8219. "cssText": "border:0; width:100%; height:100%;"
  8220. },
  8221. "src": "/course-design-vue"
  8222. })
  8223. _box.appendChild(_iframe);
  8224. _box.appendChild(_jie);
  8225. _formdiv = new U.UF.UI.form(
  8226. "项目设计",
  8227. _box, {
  8228. "id": "courseDesign" + 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/courseDesign.png)"
  8246. },
  8247. "name": "项目设计",
  8248. "forms": _formdiv,
  8249. "click": function () {
  8250. U.MD.D.I.openApplication(str, obj, info);
  8251. }
  8252. }
  8253. break;
  8254. }
  8255. const script1 = document.createElement("script");
  8256. script1.type = "text/javascript";
  8257. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8258. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8259. const script2 = document.createElement("script");
  8260. script2.type = "text/javascript";
  8261. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8262. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8263. const script3 = document.createElement("script");
  8264. script3.type = "text/javascript";
  8265. script3.charset = "UTF-8";
  8266. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8267. const script4 = document.createElement("script");
  8268. script4.type = "text/javascript";
  8269. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8270. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8271. if (_iframe) {
  8272. if (str == 'doc') {
  8273. _iframe = _formdiv.querySelector('iframe')
  8274. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8275. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8276. _iframe.contentWindow.document.body.appendChild(script1);
  8277. _iframe.contentWindow.document.body.appendChild(script2);
  8278. // _iframe.contentWindow.document.body.appendChild(script3);
  8279. _iframe.contentWindow.document.body.appendChild(script4);
  8280. })
  8281. if (onloadListener) {
  8282. _iframe.contentDocument.location.reload()
  8283. } else {
  8284. _iframe.contentDocument.location.reload()
  8285. }
  8286. } else if (str == 'courseDesign') {
  8287. U.UF.DL.iframeLoad(_iframe, function () {
  8288. // _iframe.contentWindow.U.MD.O.W.load();
  8289. // _iframe.contentWindow.document.body.appendChild(script1);
  8290. _iframe.contentWindow.document.body.appendChild(script2);
  8291. _iframe.contentWindow.document.body.appendChild(script4);
  8292. })
  8293. } else if (str == 'mind') {
  8294. _iframe = _formdiv.querySelector('iframe')
  8295. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8296. //
  8297. _iframe.contentWindow.document.body.appendChild(script1);
  8298. _iframe.contentWindow.document.body.appendChild(script2);
  8299. _iframe.contentWindow.document.body.appendChild(script4);
  8300. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8301. })
  8302. if (onloadListener) {
  8303. _iframe.contentDocument.location.reload()
  8304. } else {
  8305. _iframe.contentDocument.location.reload()
  8306. }
  8307. } else if (str == 'whiteboard') {
  8308. _iframe = _formdiv.querySelector('iframe')
  8309. let onloadListener = _iframe.onload = () => {
  8310. _iframe.contentWindow.document.body.appendChild(script1);
  8311. _iframe.contentWindow.document.body.appendChild(script2);
  8312. _iframe.contentWindow.document.body.appendChild(script4);
  8313. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8314. };
  8315. // if (onloadListener) {
  8316. // try {
  8317. // _iframe.src += "?cocorobo="+new Date().getTime()
  8318. // _iframe.contentWindow.document.location.reload()
  8319. // } catch (error) {
  8320. // }
  8321. // } else {
  8322. // _iframe.contentDocument.location.reload()
  8323. // }
  8324. } else {
  8325. _iframe.onload = () => {
  8326. _iframe.contentWindow.document.body.appendChild(script1);
  8327. _iframe.contentWindow.document.body.appendChild(script2);
  8328. // _iframe.contentWindow.document.body.appendChild(script3);
  8329. _iframe.contentWindow.document.body.appendChild(script4);
  8330. };
  8331. }
  8332. _jie.onclick = async () => {
  8333. let text = ''
  8334. if (aTool == 1) {
  8335. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8336. } else if (aTool == 6) {
  8337. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8338. } else if (aTool == 3) {
  8339. text = await U.MD.D.I.getEditorContent(_iframe);
  8340. }
  8341. _loading.style.display = 'flex'
  8342. console.log(_loading);
  8343. var _ajs = _iframe.contentWindow.document.createElement("script");
  8344. _ajs.type = "text/javascript";
  8345. _ajs.innerHTML =
  8346. // 'console.log(' + _loading + ');\n' +
  8347. 'var _js = document.createElement("script");\n' +
  8348. '_js.type="text/javascript";\n' +
  8349. '_js.charset="UTF-8";\n' +
  8350. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8351. "_js.onload = function(){\n" +
  8352. ' var a = document.getElementsByTagName("img")\n' +
  8353. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8354. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8355. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8356. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8357. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8358. "beforeUpload_shishi(file," +
  8359. "'" +
  8360. _userid +
  8361. "'" +
  8362. ", " +
  8363. "'" +
  8364. _cid +
  8365. "'" +
  8366. ", " +
  8367. "'" +
  8368. _stage +
  8369. "'" +
  8370. ", " +
  8371. "'" +
  8372. _task +
  8373. "'" +
  8374. ", " +
  8375. "'" +
  8376. _tool +
  8377. "'" +
  8378. ", " +
  8379. "'" +
  8380. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8381. "'" +
  8382. ", " +
  8383. "'" +
  8384. aTool +
  8385. "'" +
  8386. ", " +
  8387. "`" +
  8388. text +
  8389. "`" +
  8390. ")\n" +
  8391. " });\n" +
  8392. "}\n" +
  8393. "document.head.appendChild(_js);\n";
  8394. _iframe.contentWindow.document.head.appendChild(_ajs);
  8395. }
  8396. }
  8397. //U.MD.D.I.openClick(str);
  8398. //如果有任务栏信息
  8399. // if (_taskbar) {
  8400. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8401. // }
  8402. }
  8403. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8404. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8405. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8406. _userinfo = US.userInfo, //登录用户信息
  8407. _userid = US.userInfo.userid //登录用户id
  8408. let _iframe;
  8409. let _cid = cid,
  8410. _stage = stage,
  8411. _task = task,
  8412. _tool = tool;
  8413. var _jie = $$("div", {
  8414. "style": {
  8415. "position": "absolute",
  8416. "bottom": "50px",
  8417. "right": "50px",
  8418. "zIndex": "9999",
  8419. "backgroundColor": "#2268bc",
  8420. "color": "#fff",
  8421. "padding": "12px 20px",
  8422. "cursor": "pointer",
  8423. "borderRadius": "4px",
  8424. },
  8425. "innerHTML": "提交作业"
  8426. })
  8427. let aTool = ''
  8428. let _loading = document.createElement('div')
  8429. _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;"
  8430. // _loading.id = "";
  8431. let _lchild = document.createElement('div')
  8432. let _limg = document.createElement('img')
  8433. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8434. _limg.style = "width: 26px;margin-right: 10px;"
  8435. _lchild.appendChild(_limg)
  8436. let _lspan = document.createElement('span')
  8437. _lspan.innerHTML = "上传中..."
  8438. _lchild.appendChild(_lspan)
  8439. _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%);"
  8440. _loading.appendChild(_lchild)
  8441. let _box = $$('div', {
  8442. "style": {
  8443. "position": "relative",
  8444. "width": "100%",
  8445. "height": "100%",
  8446. },
  8447. })
  8448. _box.appendChild(_loading)
  8449. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8450. switch (str) {
  8451. case "whiteboard":
  8452. aTool = 1;
  8453. _iframe = $$("iframe", {
  8454. "frameborder": "no",
  8455. "border": "0",
  8456. "scrolling ": "no",
  8457. "style": {
  8458. "cssText": "border:0;width:100%;height:100%"
  8459. },
  8460. "src": "https://beta.iwb.cocorobo.cn/"
  8461. })
  8462. _box.appendChild(_iframe);
  8463. _box.appendChild(_jie);
  8464. _formdiv = new U.UF.UI.form(
  8465. "电子白板",
  8466. _box, {
  8467. "id": "whiteboard" + cid + stage + task + tool,
  8468. "style": {
  8469. "width": "90%",
  8470. "height": "90%",
  8471. "overflow": 'hidden'
  8472. },
  8473. "onresize": function () { }
  8474. }, {
  8475. closecallback: function () { }
  8476. }, {
  8477. "style": {
  8478. "height": "36px"
  8479. }
  8480. }).form; //创建窗体
  8481. _taskbar = {
  8482. "id": str + _formdiv.id,
  8483. "style": {
  8484. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8485. },
  8486. "name": "电子白板",
  8487. "forms": _formdiv,
  8488. "click": function () {
  8489. U.MD.D.I.openApplication(str, obj, info);
  8490. }
  8491. }
  8492. break;
  8493. case "mind":
  8494. aTool = 3;
  8495. _iframe = $$("iframe", {
  8496. "frameborder": "no",
  8497. "border": "0",
  8498. "scrolling ": "no",
  8499. "style": {
  8500. "cssText": "border:0;width:100%;height:100%"
  8501. },
  8502. "src": "/kityminder-editor/dist/index.html"
  8503. })
  8504. _box.appendChild(_iframe);
  8505. _box.appendChild(_jie);
  8506. _formdiv = new U.UF.UI.form(
  8507. "思维导图",
  8508. _box, { //"/jsmind/example/demo.html"
  8509. "id": "mind" + cid + stage + task + tool,
  8510. "style": {
  8511. "width": "90%",
  8512. "height": "90%",
  8513. "overflow": 'hidden'
  8514. },
  8515. "onresize": function () { }
  8516. }, {
  8517. closecallback: function () { }
  8518. }, {
  8519. "style": {
  8520. "height": "36px"
  8521. }
  8522. }).form; //创建窗体
  8523. _taskbar = {
  8524. "id": str + _formdiv.id,
  8525. "style": {
  8526. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8527. },
  8528. "name": "思维导图",
  8529. "forms": _formdiv,
  8530. "click": function () {
  8531. U.MD.D.I.openApplication(str, obj, info);
  8532. }
  8533. }
  8534. break;
  8535. case "MindMap":
  8536. aTool = 3;
  8537. _iframe = $$("iframe", {
  8538. "frameborder": "no",
  8539. "border": "0",
  8540. "scrolling ": "no",
  8541. "style": {
  8542. "cssText": "border:0;width:100%;height:100%"
  8543. },
  8544. "src": "//cloud.cocorobo.cn/mind/"
  8545. })
  8546. _box.appendChild(_iframe);
  8547. _box.appendChild(_jie);
  8548. _formdiv = new U.UF.UI.form(
  8549. "思维导图",
  8550. _box, { //"/jsmind/example/demo.html"
  8551. "id": "mind" + cid + stage + task + tool,
  8552. "style": {
  8553. "width": "90%",
  8554. "height": "90%",
  8555. "overflow": 'hidden'
  8556. },
  8557. "onresize": function () { }
  8558. }, {
  8559. closecallback: function () { }
  8560. }, {
  8561. "style": {
  8562. "height": "36px"
  8563. }
  8564. }).form; //创建窗体
  8565. _taskbar = {
  8566. "id": str + _formdiv.id,
  8567. "style": {
  8568. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8569. },
  8570. "name": "思维导图",
  8571. "forms": _formdiv,
  8572. "click": function () {
  8573. U.MD.D.I.openApplication(str, obj, info);
  8574. }
  8575. }
  8576. break;
  8577. case "doc":
  8578. aTool = 6;
  8579. _iframe = $$("iframe", {
  8580. "frameborder": "no",
  8581. "border": "0",
  8582. "scrolling ": "no",
  8583. "style": {
  8584. "cssText": "border:0;width:100%;height:100%"
  8585. },
  8586. "src": "/Office/Word/WordEditArea.htm"
  8587. })
  8588. _box.appendChild(_iframe);
  8589. _box.appendChild(_jie);
  8590. _formdiv = new U.UF.UI.form(
  8591. "协同文档",
  8592. _box, {
  8593. "id": "doc" + cid + stage + task + tool,
  8594. "style": {
  8595. "width": "90%",
  8596. "height": "90%",
  8597. "overflow": 'hidden'
  8598. },
  8599. "onresize": function () { }
  8600. }, {
  8601. closecallback: function () { }
  8602. }, {
  8603. "style": {
  8604. "height": "36px"
  8605. }
  8606. }).form; //创建窗体
  8607. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8608. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8609. })
  8610. _taskbar = {
  8611. "id": str + _formdiv.id,
  8612. "style": {
  8613. "backgroundImage": "url(/img/icon/doc.png)"
  8614. },
  8615. "name": "协同文档",
  8616. "forms": _formdiv,
  8617. "click": function () {
  8618. U.MD.D.I.openApplication(str, obj, info);
  8619. }
  8620. }
  8621. break;
  8622. case "mindNetwork": //好友打开
  8623. aTool = 7;
  8624. _iframe = $$("iframe", {
  8625. "webkitallowfullscreen": "",
  8626. "mozallowfullscreen": "",
  8627. "allowfullscreen": "",
  8628. "frameborder": "no",
  8629. "border": "0",
  8630. "scrolling ": "no",
  8631. "style": {
  8632. "cssText": "border:0; width:100%; height:100%;"
  8633. },
  8634. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8635. })
  8636. _box.appendChild(_iframe);
  8637. _box.appendChild(_jie);
  8638. _formdiv = new U.UF.UI.form(
  8639. "思维网格",
  8640. _box, {
  8641. "id": "mindNetwork" + cid + stage + task + tool,
  8642. "style": {
  8643. "width": "90%",
  8644. "height": "90%",
  8645. "overflow": 'hidden'
  8646. },
  8647. "onresize": function () { }
  8648. }, {
  8649. closecallback: function () { }
  8650. }, {
  8651. "style": {
  8652. "height": "36px"
  8653. }
  8654. }).form; //创建窗体
  8655. _taskbar = {
  8656. "id": str + _formdiv.id,
  8657. "style": {
  8658. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8659. },
  8660. "name": "思维网格",
  8661. "forms": _formdiv,
  8662. "click": function () {
  8663. U.MD.D.I.openApplication(str, obj, info);
  8664. }
  8665. }
  8666. break;
  8667. case "courseDesign":
  8668. _iframe = $$("iframe", {
  8669. "webkitallowfullscreen": "",
  8670. "mozallowfullscreen": "",
  8671. "allowfullscreen": "",
  8672. "frameborder": "no",
  8673. "border": "0",
  8674. "scrolling ": "no",
  8675. "style": {
  8676. "cssText": "border:0; width:100%; height:100%;"
  8677. },
  8678. "src": "/course-design-vue"
  8679. })
  8680. _box.appendChild(_iframe);
  8681. _box.appendChild(_jie);
  8682. _formdiv = new U.UF.UI.form(
  8683. "项目设计",
  8684. _box, {
  8685. "id": "courseDesign" + 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/courseDesign.png)"
  8703. },
  8704. "name": "项目设计",
  8705. "forms": _formdiv,
  8706. "click": function () {
  8707. U.MD.D.I.openApplication(str, obj, info);
  8708. }
  8709. }
  8710. break;
  8711. }
  8712. const script1 = document.createElement("script");
  8713. script1.type = "text/javascript";
  8714. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8715. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8716. const script2 = document.createElement("script");
  8717. script2.type = "text/javascript";
  8718. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8719. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8720. const script3 = document.createElement("script");
  8721. script3.type = "text/javascript";
  8722. script3.charset = "UTF-8";
  8723. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8724. const script4 = document.createElement("script");
  8725. script4.type = "text/javascript";
  8726. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8727. script4.src = window.origin + "/js/Common/jietu2E.js";
  8728. if (_iframe) {
  8729. if (str == 'doc') {
  8730. _iframe = _formdiv.querySelector('iframe')
  8731. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8732. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8733. _iframe.contentWindow.document.body.appendChild(script1);
  8734. _iframe.contentWindow.document.body.appendChild(script2);
  8735. // _iframe.contentWindow.document.body.appendChild(script3);
  8736. _iframe.contentWindow.document.body.appendChild(script4);
  8737. })
  8738. if (onloadListener) {
  8739. _iframe.contentDocument.location.reload()
  8740. } else {
  8741. _iframe.contentDocument.location.reload()
  8742. }
  8743. } else if (str == 'courseDesign') {
  8744. U.UF.DL.iframeLoad(_iframe, function () {
  8745. // _iframe.contentWindow.U.MD.O.W.load();
  8746. // _iframe.contentWindow.document.body.appendChild(script1);
  8747. _iframe.contentWindow.document.body.appendChild(script2);
  8748. _iframe.contentWindow.document.body.appendChild(script4);
  8749. })
  8750. } else if (str == 'mind') {
  8751. _iframe = _formdiv.querySelector('iframe')
  8752. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8753. //
  8754. _iframe.contentWindow.document.body.appendChild(script1);
  8755. _iframe.contentWindow.document.body.appendChild(script2);
  8756. _iframe.contentWindow.document.body.appendChild(script4);
  8757. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8758. })
  8759. if (onloadListener) {
  8760. _iframe.contentDocument.location.reload()
  8761. } else {
  8762. _iframe.contentDocument.location.reload()
  8763. }
  8764. } else if (str == 'whiteboard') {
  8765. _iframe = _formdiv.querySelector('iframe')
  8766. let onloadListener = _iframe.onload = () => {
  8767. _iframe.contentWindow.document.body.appendChild(script1);
  8768. _iframe.contentWindow.document.body.appendChild(script2);
  8769. _iframe.contentWindow.document.body.appendChild(script4);
  8770. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8771. };
  8772. // if (onloadListener) {
  8773. // try {
  8774. // _iframe.src += "?cocorobo="+new Date().getTime()
  8775. // _iframe.contentWindow.document.location.reload()
  8776. // } catch (error) {
  8777. // }
  8778. // } else {
  8779. // _iframe.contentDocument.location.reload()
  8780. // }
  8781. } else {
  8782. _iframe.onload = () => {
  8783. _iframe.contentWindow.document.body.appendChild(script1);
  8784. _iframe.contentWindow.document.body.appendChild(script2);
  8785. // _iframe.contentWindow.document.body.appendChild(script3);
  8786. _iframe.contentWindow.document.body.appendChild(script4);
  8787. };
  8788. }
  8789. _jie.onclick = async () => {
  8790. let text = ''
  8791. if (aTool == 1) {
  8792. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8793. } else if (aTool == 6) {
  8794. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8795. } else if (aTool == 3) {
  8796. text = await U.MD.D.I.getEditorContent(_iframe);
  8797. }
  8798. _loading.style.display = 'flex'
  8799. console.log(_loading);
  8800. var _ajs = _iframe.contentWindow.document.createElement("script");
  8801. _ajs.type = "text/javascript";
  8802. _ajs.innerHTML =
  8803. // 'console.log(' + _loading + ');\n' +
  8804. 'var _js = document.createElement("script");\n' +
  8805. '_js.type="text/javascript";\n' +
  8806. '_js.charset="UTF-8";\n' +
  8807. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8808. "_js.onload = function(){\n" +
  8809. ' var a = document.getElementsByTagName("img")\n' +
  8810. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8811. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8812. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8813. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8814. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8815. "beforeUpload_shishi(file," +
  8816. "'" +
  8817. _userid +
  8818. "'" +
  8819. ", " +
  8820. "'" +
  8821. _cid +
  8822. "'" +
  8823. ", " +
  8824. "'" +
  8825. _stage +
  8826. "'" +
  8827. ", " +
  8828. "'" +
  8829. _task +
  8830. "'" +
  8831. ", " +
  8832. "'" +
  8833. _tool +
  8834. "'" +
  8835. ", " +
  8836. "'" +
  8837. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8838. "'" +
  8839. ", " +
  8840. "'" +
  8841. aTool +
  8842. "'" +
  8843. ", " +
  8844. "`" +
  8845. text +
  8846. "`" +
  8847. ")\n" +
  8848. " });\n" +
  8849. "}\n" +
  8850. "document.head.appendChild(_js);\n";
  8851. _iframe.contentWindow.document.head.appendChild(_ajs);
  8852. }
  8853. }
  8854. //U.MD.D.I.openClick(str);
  8855. //如果有任务栏信息
  8856. // if (_taskbar) {
  8857. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8858. // }
  8859. }
  8860. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8861. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8862. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8863. _userid = student.userid, //登录用户id
  8864. _username = student.student //用户名字
  8865. let _iframe;
  8866. let _cid = cid,
  8867. _stage = stage,
  8868. _task = task,
  8869. _tool = tool;
  8870. var _jie = $$("div", {
  8871. "style": {
  8872. "position": "absolute",
  8873. "bottom": "50px",
  8874. "right": "50px",
  8875. "zIndex": "9999",
  8876. "backgroundColor": "#2268bc",
  8877. "color": "#fff",
  8878. "padding": "12px 20px",
  8879. "cursor": "pointer",
  8880. "borderRadius": "4px",
  8881. },
  8882. "innerHTML": "提交作业"
  8883. })
  8884. let aTool = ''
  8885. let _loading = document.createElement('div')
  8886. _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;"
  8887. // _loading.id = "";
  8888. let _lchild = document.createElement('div')
  8889. let _limg = document.createElement('img')
  8890. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8891. _limg.style = "width: 26px;margin-right: 10px;"
  8892. _lchild.appendChild(_limg)
  8893. let _lspan = document.createElement('span')
  8894. _lspan.innerHTML = "上传中..."
  8895. _lchild.appendChild(_lspan)
  8896. _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%);"
  8897. _loading.appendChild(_lchild)
  8898. var _box = $$('div', {
  8899. "style": {
  8900. "position": "relative",
  8901. "width": "100%",
  8902. "height": "100%",
  8903. },
  8904. })
  8905. _box.appendChild(_loading)
  8906. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8907. switch (str) {
  8908. case "whiteboard":
  8909. aTool = 1;
  8910. _iframe = $$("iframe", {
  8911. "frameborder": "no",
  8912. "border": "0",
  8913. "scrolling ": "no",
  8914. "style": {
  8915. "cssText": "border:0;width:100%;height:100%"
  8916. },
  8917. "src": "https://beta.iwb.cocorobo.cn/"
  8918. })
  8919. _box.appendChild(_iframe);
  8920. _box.appendChild(_jie);
  8921. _formdiv = new U.UF.UI.form(
  8922. "电子白板-" + _username,
  8923. _box, {
  8924. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8925. "style": {
  8926. "width": "90%",
  8927. "height": "90%",
  8928. "overflow": 'hidden'
  8929. },
  8930. "onresize": function () { }
  8931. }, {
  8932. closecallback: function () { }
  8933. }, {
  8934. "style": {
  8935. "height": "36px"
  8936. }
  8937. }).form; //创建窗体
  8938. _taskbar = {
  8939. "id": str + _formdiv.id,
  8940. "style": {
  8941. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8942. },
  8943. "name": "电子白板",
  8944. "forms": _formdiv,
  8945. "click": function () {
  8946. U.MD.D.I.openApplication(str, obj, info);
  8947. }
  8948. }
  8949. break;
  8950. case "mind":
  8951. aTool = 3;
  8952. _iframe = $$("iframe", {
  8953. "frameborder": "no",
  8954. "border": "0",
  8955. "scrolling ": "no",
  8956. "style": {
  8957. "cssText": "border:0;width:100%;height:100%"
  8958. },
  8959. "src": "/kityminder-editor/dist/index.html"
  8960. })
  8961. _box.appendChild(_iframe);
  8962. _box.appendChild(_jie);
  8963. _formdiv = new U.UF.UI.form(
  8964. "思维导图-" + _username,
  8965. _box, { //"/jsmind/example/demo.html"
  8966. "id": "mind" + cid + stage + task + tool + _userid,
  8967. "style": {
  8968. "width": "90%",
  8969. "height": "90%",
  8970. "overflow": 'hidden'
  8971. },
  8972. "onresize": function () { }
  8973. }, {
  8974. closecallback: function () { }
  8975. }, {
  8976. "style": {
  8977. "height": "36px"
  8978. }
  8979. }).form; //创建窗体
  8980. _taskbar = {
  8981. "id": str + _formdiv.id,
  8982. "style": {
  8983. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8984. },
  8985. "name": "思维导图",
  8986. "forms": _formdiv,
  8987. "click": function () {
  8988. U.MD.D.I.openApplication(str, obj, info);
  8989. }
  8990. }
  8991. break;
  8992. case "MindMap":
  8993. aTool = 3;
  8994. _iframe = $$("iframe", {
  8995. "frameborder": "no",
  8996. "border": "0",
  8997. "scrolling ": "no",
  8998. "style": {
  8999. "cssText": "border:0;width:100%;height:100%"
  9000. },
  9001. "src": "//cloud.cocorobo.cn/mind/"
  9002. })
  9003. _box.appendChild(_iframe);
  9004. _box.appendChild(_jie);
  9005. _formdiv = new U.UF.UI.form(
  9006. "思维导图-" + _username,
  9007. _box, { //"/jsmind/example/demo.html"
  9008. "id": "mind" + cid + stage + task + tool + _userid,
  9009. "style": {
  9010. "width": "90%",
  9011. "height": "90%",
  9012. "overflow": 'hidden'
  9013. },
  9014. "onresize": function () { }
  9015. }, {
  9016. closecallback: function () { }
  9017. }, {
  9018. "style": {
  9019. "height": "36px"
  9020. }
  9021. }).form; //创建窗体
  9022. _taskbar = {
  9023. "id": str + _formdiv.id,
  9024. "style": {
  9025. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9026. },
  9027. "name": "思维导图",
  9028. "forms": _formdiv,
  9029. "click": function () {
  9030. U.MD.D.I.openApplication(str, obj, info);
  9031. }
  9032. }
  9033. break;
  9034. case "doc":
  9035. aTool = 6;
  9036. _iframe = $$("iframe", {
  9037. "frameborder": "no",
  9038. "border": "0",
  9039. "scrolling ": "no",
  9040. "style": {
  9041. "cssText": "border:0;width:100%;height:100%"
  9042. },
  9043. "src": "/Office/Word/WordEditArea.htm"
  9044. })
  9045. _box.appendChild(_iframe);
  9046. _box.appendChild(_jie);
  9047. _formdiv = new U.UF.UI.form(
  9048. "协同文档-" + _username,
  9049. _box, {
  9050. "id": "doc" + cid + stage + task + tool + _userid,
  9051. "style": {
  9052. "width": "90%",
  9053. "height": "90%",
  9054. "overflow": 'hidden'
  9055. },
  9056. "onresize": function () { }
  9057. }, {
  9058. closecallback: function () { }
  9059. }, {
  9060. "style": {
  9061. "height": "36px"
  9062. }
  9063. }).form; //创建窗体
  9064. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9065. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9066. })
  9067. _taskbar = {
  9068. "id": str + _formdiv.id,
  9069. "style": {
  9070. "backgroundImage": "url(/img/icon/doc.png)"
  9071. },
  9072. "name": "协同文档",
  9073. "forms": _formdiv,
  9074. "click": function () {
  9075. U.MD.D.I.openApplication(str, obj, info);
  9076. }
  9077. }
  9078. break;
  9079. case "mindNetwork": //好友打开
  9080. aTool = 7;
  9081. _iframe = $$("iframe", {
  9082. "webkitallowfullscreen": "",
  9083. "mozallowfullscreen": "",
  9084. "allowfullscreen": "",
  9085. "frameborder": "no",
  9086. "border": "0",
  9087. "scrolling ": "no",
  9088. "style": {
  9089. "cssText": "border:0; width:100%; height:100%;"
  9090. },
  9091. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9092. })
  9093. _box.appendChild(_iframe);
  9094. _box.appendChild(_jie);
  9095. _formdiv = new U.UF.UI.form(
  9096. "思维网格-" + _username,
  9097. _box, {
  9098. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9099. "style": {
  9100. "width": "90%",
  9101. "height": "90%",
  9102. "overflow": 'hidden'
  9103. },
  9104. "onresize": function () { }
  9105. }, {
  9106. closecallback: function () { }
  9107. }, {
  9108. "style": {
  9109. "height": "36px"
  9110. }
  9111. }).form; //创建窗体
  9112. _taskbar = {
  9113. "id": str + _formdiv.id,
  9114. "style": {
  9115. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9116. },
  9117. "name": "思维网格",
  9118. "forms": _formdiv,
  9119. "click": function () {
  9120. U.MD.D.I.openApplication(str, obj, info);
  9121. }
  9122. }
  9123. break;
  9124. case "courseDesign":
  9125. _iframe = $$("iframe", {
  9126. "webkitallowfullscreen": "",
  9127. "mozallowfullscreen": "",
  9128. "allowfullscreen": "",
  9129. "frameborder": "no",
  9130. "border": "0",
  9131. "scrolling ": "no",
  9132. "style": {
  9133. "cssText": "border:0; width:100%; height:100%;"
  9134. },
  9135. "src": "/course-design-vue"
  9136. })
  9137. _box.appendChild(_iframe);
  9138. _box.appendChild(_jie);
  9139. _formdiv = new U.UF.UI.form(
  9140. "项目设计-" + _username,
  9141. _box, {
  9142. "id": "courseDesign" + 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/courseDesign.png)"
  9160. },
  9161. "name": "项目设计",
  9162. "forms": _formdiv,
  9163. "click": function () {
  9164. U.MD.D.I.openApplication(str, obj, info);
  9165. }
  9166. }
  9167. break;
  9168. }
  9169. const script1 = document.createElement("script");
  9170. script1.type = "text/javascript";
  9171. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9172. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9173. const script2 = document.createElement("script");
  9174. script2.type = "text/javascript";
  9175. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9176. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9177. const script3 = document.createElement("script");
  9178. script3.type = "text/javascript";
  9179. script3.charset = "UTF-8";
  9180. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9181. const script4 = document.createElement("script");
  9182. script4.type = "text/javascript";
  9183. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9184. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9185. if (_iframe) {
  9186. if (str == 'doc') {
  9187. _iframe = _formdiv.querySelector('iframe')
  9188. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9189. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9190. _iframe.contentWindow.document.body.appendChild(script1);
  9191. _iframe.contentWindow.document.body.appendChild(script2);
  9192. // _iframe.contentWindow.document.body.appendChild(script3);
  9193. _iframe.contentWindow.document.body.appendChild(script4);
  9194. })
  9195. if (onloadListener) {
  9196. _iframe.contentDocument.location.reload()
  9197. } else {
  9198. _iframe.contentDocument.location.reload()
  9199. }
  9200. } else if (str == 'courseDesign') {
  9201. U.UF.DL.iframeLoad(_iframe, function () {
  9202. // _iframe.contentWindow.U.MD.O.W.load();
  9203. // _iframe.contentWindow.document.body.appendChild(script1);
  9204. _iframe.contentWindow.document.body.appendChild(script2);
  9205. _iframe.contentWindow.document.body.appendChild(script4);
  9206. })
  9207. } else if (str == 'mind') {
  9208. _iframe = _formdiv.querySelector('iframe')
  9209. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9210. //
  9211. _iframe.contentWindow.document.body.appendChild(script1);
  9212. _iframe.contentWindow.document.body.appendChild(script2);
  9213. _iframe.contentWindow.document.body.appendChild(script4);
  9214. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9215. })
  9216. if (onloadListener) {
  9217. _iframe.contentDocument.location.reload()
  9218. } else {
  9219. _iframe.contentDocument.location.reload()
  9220. }
  9221. } else if (str == 'whiteboard') {
  9222. _iframe = _formdiv.querySelector('iframe')
  9223. let onloadListener = _iframe.onload = () => {
  9224. _iframe.contentWindow.document.body.appendChild(script1);
  9225. _iframe.contentWindow.document.body.appendChild(script2);
  9226. _iframe.contentWindow.document.body.appendChild(script4);
  9227. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9228. };
  9229. // if (onloadListener) {
  9230. // try {
  9231. // _iframe.src += "?cocorobo="+new Date().getTime()
  9232. // _iframe.contentWindow.document.location.reload()
  9233. // } catch (error) {
  9234. // }
  9235. // } else {
  9236. // _iframe.contentDocument.location.reload()
  9237. // }
  9238. } else {
  9239. _iframe.onload = () => {
  9240. _iframe.contentWindow.document.body.appendChild(script1);
  9241. _iframe.contentWindow.document.body.appendChild(script2);
  9242. // _iframe.contentWindow.document.body.appendChild(script3);
  9243. _iframe.contentWindow.document.body.appendChild(script4);
  9244. };
  9245. }
  9246. _jie.onclick = async () => {
  9247. let text = ''
  9248. if (aTool == 1) {
  9249. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9250. } else if (aTool == 6) {
  9251. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9252. } else if (aTool == 3) {
  9253. text = await U.MD.D.I.getEditorContent(_iframe);
  9254. }
  9255. _loading.style.display = 'flex'
  9256. console.log(_loading);
  9257. var _ajs = _iframe.contentWindow.document.createElement("script");
  9258. _ajs.type = "text/javascript";
  9259. _ajs.innerHTML =
  9260. // 'console.log(' + _loading + ');\n' +
  9261. 'var _js = document.createElement("script");\n' +
  9262. '_js.type="text/javascript";\n' +
  9263. '_js.charset="UTF-8";\n' +
  9264. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9265. "_js.onload = function(){\n" +
  9266. ' var a = document.getElementsByTagName("img")\n' +
  9267. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9268. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9269. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9270. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9271. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9272. "beforeUpload_shishi(file," +
  9273. "'" +
  9274. _userid +
  9275. "'" +
  9276. ", " +
  9277. "'" +
  9278. _cid +
  9279. "'" +
  9280. ", " +
  9281. "'" +
  9282. _stage +
  9283. "'" +
  9284. ", " +
  9285. "'" +
  9286. _task +
  9287. "'" +
  9288. ", " +
  9289. "'" +
  9290. _tool +
  9291. "'" +
  9292. ", " +
  9293. "'" +
  9294. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9295. "'" +
  9296. ", " +
  9297. "'" +
  9298. aTool +
  9299. "'" +
  9300. ", " +
  9301. "`" +
  9302. text +
  9303. "`" +
  9304. ")\n" +
  9305. " });\n" +
  9306. "}\n" +
  9307. "document.head.appendChild(_js);\n";
  9308. _iframe.contentWindow.document.head.appendChild(_ajs);
  9309. }
  9310. }
  9311. }
  9312. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9313. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9314. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9315. _userid = student.userid, //登录用户id
  9316. _username = student.student //用户名字
  9317. let _iframe;
  9318. let _cid = cid,
  9319. _stage = stage,
  9320. _task = task,
  9321. _tool = tool;
  9322. var _jie = $$("div", {
  9323. "style": {
  9324. "position": "absolute",
  9325. "bottom": "50px",
  9326. "right": "50px",
  9327. "zIndex": "9999",
  9328. "backgroundColor": "#2268bc",
  9329. "color": "#fff",
  9330. "padding": "12px 20px",
  9331. "cursor": "pointer",
  9332. "borderRadius": "4px",
  9333. },
  9334. "innerHTML": "提交作业"
  9335. })
  9336. let aTool = ''
  9337. let _loading = document.createElement('div')
  9338. _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;"
  9339. // _loading.id = "";
  9340. let _lchild = document.createElement('div')
  9341. let _limg = document.createElement('img')
  9342. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9343. _limg.style = "width: 26px;margin-right: 10px;"
  9344. _lchild.appendChild(_limg)
  9345. let _lspan = document.createElement('span')
  9346. _lspan.innerHTML = "上传中..."
  9347. _lchild.appendChild(_lspan)
  9348. _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%);"
  9349. _loading.appendChild(_lchild)
  9350. var _box = $$('div', {
  9351. "style": {
  9352. "position": "relative",
  9353. "width": "100%",
  9354. "height": "100%",
  9355. },
  9356. })
  9357. _box.appendChild(_loading)
  9358. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9359. switch (str) {
  9360. case "whiteboard":
  9361. aTool = 1;
  9362. _iframe = $$("iframe", {
  9363. "frameborder": "no",
  9364. "border": "0",
  9365. "scrolling ": "no",
  9366. "style": {
  9367. "cssText": "border:0;width:100%;height:100%"
  9368. },
  9369. "src": "https://beta.iwb.cocorobo.cn/"
  9370. })
  9371. _box.appendChild(_iframe);
  9372. _box.appendChild(_jie);
  9373. _formdiv = new U.UF.UI.form(
  9374. "电子白板-" + _username,
  9375. _box, {
  9376. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9377. "style": {
  9378. "width": "90%",
  9379. "height": "90%",
  9380. "overflow": 'hidden'
  9381. },
  9382. "onresize": function () { }
  9383. }, {
  9384. closecallback: function () { }
  9385. }, {
  9386. "style": {
  9387. "height": "36px"
  9388. }
  9389. }).form; //创建窗体
  9390. _taskbar = {
  9391. "id": str + _formdiv.id,
  9392. "style": {
  9393. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9394. },
  9395. "name": "电子白板",
  9396. "forms": _formdiv,
  9397. "click": function () {
  9398. U.MD.D.I.openApplication(str, obj, info);
  9399. }
  9400. }
  9401. break;
  9402. case "mind":
  9403. aTool = 3;
  9404. _iframe = $$("iframe", {
  9405. "frameborder": "no",
  9406. "border": "0",
  9407. "scrolling ": "no",
  9408. "style": {
  9409. "cssText": "border:0;width:100%;height:100%"
  9410. },
  9411. "src": "/kityminder-editor/dist/index.html"
  9412. })
  9413. _box.appendChild(_iframe);
  9414. _box.appendChild(_jie);
  9415. _formdiv = new U.UF.UI.form(
  9416. "思维导图-" + _username,
  9417. _box, { //"/jsmind/example/demo.html"
  9418. "id": "mind" + cid + stage + task + tool + _userid,
  9419. "style": {
  9420. "width": "90%",
  9421. "height": "90%",
  9422. "overflow": 'hidden'
  9423. },
  9424. "onresize": function () { }
  9425. }, {
  9426. closecallback: function () { }
  9427. }, {
  9428. "style": {
  9429. "height": "36px"
  9430. }
  9431. }).form; //创建窗体
  9432. _taskbar = {
  9433. "id": str + _formdiv.id,
  9434. "style": {
  9435. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9436. },
  9437. "name": "思维导图",
  9438. "forms": _formdiv,
  9439. "click": function () {
  9440. U.MD.D.I.openApplication(str, obj, info);
  9441. }
  9442. }
  9443. break;
  9444. case "MindMap":
  9445. aTool = 3;
  9446. _iframe = $$("iframe", {
  9447. "frameborder": "no",
  9448. "border": "0",
  9449. "scrolling ": "no",
  9450. "style": {
  9451. "cssText": "border:0;width:100%;height:100%"
  9452. },
  9453. "src": "//cloud.cocorobo.cn/mind/"
  9454. })
  9455. _box.appendChild(_iframe);
  9456. _box.appendChild(_jie);
  9457. _formdiv = new U.UF.UI.form(
  9458. "思维导图-" + _username,
  9459. _box, { //"/jsmind/example/demo.html"
  9460. "id": "mind" + cid + stage + task + tool + _userid,
  9461. "style": {
  9462. "width": "90%",
  9463. "height": "90%",
  9464. "overflow": 'hidden'
  9465. },
  9466. "onresize": function () { }
  9467. }, {
  9468. closecallback: function () { }
  9469. }, {
  9470. "style": {
  9471. "height": "36px"
  9472. }
  9473. }).form; //创建窗体
  9474. _taskbar = {
  9475. "id": str + _formdiv.id,
  9476. "style": {
  9477. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9478. },
  9479. "name": "思维导图",
  9480. "forms": _formdiv,
  9481. "click": function () {
  9482. U.MD.D.I.openApplication(str, obj, info);
  9483. }
  9484. }
  9485. break;
  9486. case "doc":
  9487. aTool = 6;
  9488. _iframe = $$("iframe", {
  9489. "frameborder": "no",
  9490. "border": "0",
  9491. "scrolling ": "no",
  9492. "style": {
  9493. "cssText": "border:0;width:100%;height:100%"
  9494. },
  9495. "src": "/Office/Word/WordEditArea.htm"
  9496. })
  9497. _box.appendChild(_iframe);
  9498. _box.appendChild(_jie);
  9499. _formdiv = new U.UF.UI.form(
  9500. "协同文档-" + _username,
  9501. _box, {
  9502. "id": "doc" + cid + stage + task + tool + _userid,
  9503. "style": {
  9504. "width": "90%",
  9505. "height": "90%",
  9506. "overflow": 'hidden'
  9507. },
  9508. "onresize": function () { }
  9509. }, {
  9510. closecallback: function () { }
  9511. }, {
  9512. "style": {
  9513. "height": "36px"
  9514. }
  9515. }).form; //创建窗体
  9516. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9517. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9518. })
  9519. _taskbar = {
  9520. "id": str + _formdiv.id,
  9521. "style": {
  9522. "backgroundImage": "url(/img/icon/doc.png)"
  9523. },
  9524. "name": "协同文档",
  9525. "forms": _formdiv,
  9526. "click": function () {
  9527. U.MD.D.I.openApplication(str, obj, info);
  9528. }
  9529. }
  9530. break;
  9531. case "mindNetwork": //好友打开
  9532. aTool = 7;
  9533. _iframe = $$("iframe", {
  9534. "webkitallowfullscreen": "",
  9535. "mozallowfullscreen": "",
  9536. "allowfullscreen": "",
  9537. "frameborder": "no",
  9538. "border": "0",
  9539. "scrolling ": "no",
  9540. "style": {
  9541. "cssText": "border:0; width:100%; height:100%;"
  9542. },
  9543. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9544. })
  9545. _box.appendChild(_iframe);
  9546. _box.appendChild(_jie);
  9547. _formdiv = new U.UF.UI.form(
  9548. "思维网格-" + _username,
  9549. _box, {
  9550. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9551. "style": {
  9552. "width": "90%",
  9553. "height": "90%",
  9554. "overflow": 'hidden'
  9555. },
  9556. "onresize": function () { }
  9557. }, {
  9558. closecallback: function () { }
  9559. }, {
  9560. "style": {
  9561. "height": "36px"
  9562. }
  9563. }).form; //创建窗体
  9564. _taskbar = {
  9565. "id": str + _formdiv.id,
  9566. "style": {
  9567. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9568. },
  9569. "name": "思维网格",
  9570. "forms": _formdiv,
  9571. "click": function () {
  9572. U.MD.D.I.openApplication(str, obj, info);
  9573. }
  9574. }
  9575. break;
  9576. case "courseDesign":
  9577. _iframe = $$("iframe", {
  9578. "webkitallowfullscreen": "",
  9579. "mozallowfullscreen": "",
  9580. "allowfullscreen": "",
  9581. "frameborder": "no",
  9582. "border": "0",
  9583. "scrolling ": "no",
  9584. "style": {
  9585. "cssText": "border:0; width:100%; height:100%;"
  9586. },
  9587. "src": "/course-design-vue"
  9588. })
  9589. _box.appendChild(_iframe);
  9590. _box.appendChild(_jie);
  9591. _formdiv = new U.UF.UI.form(
  9592. "项目设计-" + _username,
  9593. _box, {
  9594. "id": "courseDesign" + 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/courseDesign.png)"
  9612. },
  9613. "name": "项目设计",
  9614. "forms": _formdiv,
  9615. "click": function () {
  9616. U.MD.D.I.openApplication(str, obj, info);
  9617. }
  9618. }
  9619. break;
  9620. }
  9621. const script1 = document.createElement("script");
  9622. script1.type = "text/javascript";
  9623. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9624. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9625. const script2 = document.createElement("script");
  9626. script2.type = "text/javascript";
  9627. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9628. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9629. const script3 = document.createElement("script");
  9630. script3.type = "text/javascript";
  9631. script3.charset = "UTF-8";
  9632. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9633. const script4 = document.createElement("script");
  9634. script4.type = "text/javascript";
  9635. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9636. script4.src = window.origin + "/js/Common/jietu2E.js";
  9637. if (_iframe) {
  9638. if (str == 'doc') {
  9639. _iframe = _formdiv.querySelector('iframe')
  9640. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9641. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9642. _iframe.contentWindow.document.body.appendChild(script1);
  9643. _iframe.contentWindow.document.body.appendChild(script2);
  9644. // _iframe.contentWindow.document.body.appendChild(script3);
  9645. _iframe.contentWindow.document.body.appendChild(script4);
  9646. })
  9647. if (onloadListener) {
  9648. _iframe.contentDocument.location.reload()
  9649. } else {
  9650. _iframe.contentDocument.location.reload()
  9651. }
  9652. } else if (str == 'courseDesign') {
  9653. U.UF.DL.iframeLoad(_iframe, function () {
  9654. // _iframe.contentWindow.U.MD.O.W.load();
  9655. // _iframe.contentWindow.document.body.appendChild(script1);
  9656. _iframe.contentWindow.document.body.appendChild(script2);
  9657. _iframe.contentWindow.document.body.appendChild(script4);
  9658. })
  9659. } else if (str == 'mind') {
  9660. _iframe = _formdiv.querySelector('iframe')
  9661. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9662. //
  9663. _iframe.contentWindow.document.body.appendChild(script1);
  9664. _iframe.contentWindow.document.body.appendChild(script2);
  9665. _iframe.contentWindow.document.body.appendChild(script4);
  9666. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9667. })
  9668. if (onloadListener) {
  9669. _iframe.contentDocument.location.reload()
  9670. } else {
  9671. _iframe.contentDocument.location.reload()
  9672. }
  9673. } else if (str == 'whiteboard') {
  9674. _iframe = _formdiv.querySelector('iframe')
  9675. let onloadListener = _iframe.onload = () => {
  9676. _iframe.contentWindow.document.body.appendChild(script1);
  9677. _iframe.contentWindow.document.body.appendChild(script2);
  9678. _iframe.contentWindow.document.body.appendChild(script4);
  9679. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9680. };
  9681. // if (onloadListener) {
  9682. // try {
  9683. // _iframe.src += "?cocorobo="+new Date().getTime()
  9684. // _iframe.contentWindow.document.location.reload()
  9685. // } catch (error) {
  9686. // }
  9687. // } else {
  9688. // _iframe.contentDocument.location.reload()
  9689. // }
  9690. } else {
  9691. _iframe.onload = () => {
  9692. _iframe.contentWindow.document.body.appendChild(script1);
  9693. _iframe.contentWindow.document.body.appendChild(script2);
  9694. // _iframe.contentWindow.document.body.appendChild(script3);
  9695. _iframe.contentWindow.document.body.appendChild(script4);
  9696. };
  9697. }
  9698. _jie.onclick = async () => {
  9699. let text = ''
  9700. if (aTool == 1) {
  9701. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9702. } else if (aTool == 6) {
  9703. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9704. } else if (aTool == 3) {
  9705. text = await U.MD.D.I.getEditorContent(_iframe);
  9706. }
  9707. _loading.style.display = 'flex'
  9708. console.log(_loading);
  9709. var _ajs = _iframe.contentWindow.document.createElement("script");
  9710. _ajs.type = "text/javascript";
  9711. _ajs.innerHTML =
  9712. // 'console.log(' + _loading + ');\n' +
  9713. 'var _js = document.createElement("script");\n' +
  9714. '_js.type="text/javascript";\n' +
  9715. '_js.charset="UTF-8";\n' +
  9716. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9717. "_js.onload = function(){\n" +
  9718. ' var a = document.getElementsByTagName("img")\n' +
  9719. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9720. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9721. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9722. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9723. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9724. "beforeUpload_shishi(file," +
  9725. "'" +
  9726. _userid +
  9727. "'" +
  9728. ", " +
  9729. "'" +
  9730. _cid +
  9731. "'" +
  9732. ", " +
  9733. "'" +
  9734. _stage +
  9735. "'" +
  9736. ", " +
  9737. "'" +
  9738. _task +
  9739. "'" +
  9740. ", " +
  9741. "'" +
  9742. _tool +
  9743. "'" +
  9744. ", " +
  9745. "'" +
  9746. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9747. "'" +
  9748. ", " +
  9749. "'" +
  9750. aTool +
  9751. "'" +
  9752. ", " +
  9753. "`" +
  9754. text +
  9755. "`" +
  9756. ")\n" +
  9757. " });\n" +
  9758. "}\n" +
  9759. "document.head.appendChild(_js);\n";
  9760. _iframe.contentWindow.document.head.appendChild(_ajs);
  9761. }
  9762. }
  9763. }
  9764. U.MD.D.I.getEditorContent = function (iframe) {
  9765. return new Promise((resolve, reject) => {
  9766. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9767. console.log(content);
  9768. resolve(content)
  9769. });
  9770. });
  9771. }
  9772. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9773. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9774. // if (res.value[0].length > 0) {
  9775. // // resolve(res.value[0][0].text);
  9776. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9777. // $(fileInput).val('');
  9778. // });
  9779. // }
  9780. // }, [], { "type": "GET", "withCredentials": true });
  9781. var xmlhttp;
  9782. var Mac, Sn, DeviceId
  9783. if (window.XMLHttpRequest) {
  9784. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9785. xmlhttp = new XMLHttpRequest();
  9786. } else {
  9787. // IE6, IE5 浏览器执行代码
  9788. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9789. }
  9790. xmlhttp.onreadystatechange = function () {
  9791. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9792. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9793. // resolve(res.value[0][0].text);
  9794. if (type == '2') {
  9795. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9796. } else if (type == '3') {
  9797. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9798. }
  9799. } else {
  9800. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9801. }
  9802. }
  9803. }
  9804. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9805. xmlhttp.send();
  9806. }
  9807. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9808. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9809. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9810. _userinfo = US.userInfo, //登录用户信息
  9811. _userid = US.userInfo.userid //登录用户id
  9812. let _iframe;
  9813. let _cid = cid,
  9814. _stage = stage,
  9815. _task = task,
  9816. _tool = tool;
  9817. var _jie = $$("div", {
  9818. "style": {
  9819. "position": "absolute",
  9820. "bottom": "50px",
  9821. "right": "50px",
  9822. "zIndex": "9999",
  9823. "backgroundColor": "#2268bc",
  9824. "color": "#fff",
  9825. "padding": "12px 20px",
  9826. "cursor": "pointer",
  9827. "borderRadius": "4px",
  9828. },
  9829. "innerHTML": "确认并提交"
  9830. })
  9831. let aTool = ''
  9832. let _loading = document.createElement('div')
  9833. _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;"
  9834. // _loading.id = "";
  9835. let _lchild = document.createElement('div')
  9836. let _limg = document.createElement('img')
  9837. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9838. _limg.style = "width: 26px;margin-right: 10px;"
  9839. _lchild.appendChild(_limg)
  9840. let _lspan = document.createElement('span')
  9841. _lspan.innerHTML = "上传中..."
  9842. _lchild.appendChild(_lspan)
  9843. _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%);"
  9844. _loading.appendChild(_lchild)
  9845. var _box = $$('div', {
  9846. "style": {
  9847. "position": "relative",
  9848. "width": "100%",
  9849. "height": "100%",
  9850. },
  9851. })
  9852. _box.appendChild(_loading)
  9853. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9854. switch (str) {
  9855. case "whiteboard":
  9856. aTool = 1;
  9857. _iframe = $$("iframe", {
  9858. "frameborder": "no",
  9859. "border": "0",
  9860. "scrolling ": "no",
  9861. "style": {
  9862. "cssText": "border:0;width:100%;height:100%"
  9863. },
  9864. "src": "https://beta.iwb.cocorobo.cn/"
  9865. })
  9866. _box.appendChild(_iframe);
  9867. _box.appendChild(_jie);
  9868. _formdiv = new U.UF.UI.form(
  9869. "电子白板",
  9870. _box, {
  9871. "id": "whiteboards" + cid + stage + task + tool,
  9872. "style": {
  9873. "width": "90%",
  9874. "height": "90%",
  9875. "overflow": 'hidden'
  9876. },
  9877. "onresize": function () { }
  9878. }, {
  9879. closecallback: function () { }
  9880. }, {
  9881. "style": {
  9882. "height": "36px"
  9883. }
  9884. }).form; //创建窗体
  9885. _taskbar = {
  9886. "id": str + _formdiv.id,
  9887. "style": {
  9888. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9889. },
  9890. "name": "电子白板",
  9891. "forms": _formdiv,
  9892. "click": function () {
  9893. U.MD.D.I.openApplication(str, obj, info);
  9894. }
  9895. }
  9896. break;
  9897. case "mind":
  9898. aTool = 3;
  9899. _iframe = $$("iframe", {
  9900. "frameborder": "no",
  9901. "border": "0",
  9902. "scrolling ": "no",
  9903. "style": {
  9904. "cssText": "border:0;width:100%;height:100%"
  9905. },
  9906. "src": "/kityminder-editor/dist/index.html"
  9907. });
  9908. _box.appendChild(_iframe);
  9909. _box.appendChild(_jie);
  9910. _formdiv = new U.UF.UI.form(
  9911. "思维导图",
  9912. _box, { //"/jsmind/example/demo.html"
  9913. "id": "minds" + cid + stage + task + tool,
  9914. "style": {
  9915. "width": "90%",
  9916. "height": "90%",
  9917. "overflow": 'hidden'
  9918. },
  9919. "onresize": function () { }
  9920. }, {
  9921. closecallback: function () { }
  9922. }, {
  9923. "style": {
  9924. "height": "36px"
  9925. }
  9926. }).form; //创建窗体
  9927. _taskbar = {
  9928. "id": str + _formdiv.id,
  9929. "style": {
  9930. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9931. },
  9932. "name": "思维导图",
  9933. "forms": _formdiv,
  9934. "click": function () {
  9935. U.MD.D.I.openApplication(str, obj, info);
  9936. }
  9937. }
  9938. break;
  9939. case "doc":
  9940. aTool = 6;
  9941. _iframe = $$("iframe", {
  9942. "frameborder": "no",
  9943. "border": "0",
  9944. "scrolling ": "no",
  9945. "style": {
  9946. "cssText": "border:0;width:100%;height:100%"
  9947. },
  9948. "src": "/Office/Word/WordEditArea.htm"
  9949. })
  9950. _box.appendChild(_iframe);
  9951. _box.appendChild(_jie);
  9952. _formdiv = new U.UF.UI.form(
  9953. "协同文档",
  9954. _box, {
  9955. "id": "docs" + cid + stage + task + tool,
  9956. "style": {
  9957. "width": "90%",
  9958. "height": "90%",
  9959. "overflow": 'hidden'
  9960. },
  9961. "onresize": function () { }
  9962. }, {
  9963. closecallback: function () { }
  9964. }, {
  9965. "style": {
  9966. "height": "36px"
  9967. }
  9968. }).form; //创建窗体
  9969. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9970. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9971. })
  9972. _taskbar = {
  9973. "id": str + _formdiv.id,
  9974. "style": {
  9975. "backgroundImage": "url(/img/icon/doc.png)"
  9976. },
  9977. "name": "协同文档",
  9978. "forms": _formdiv,
  9979. "click": function () {
  9980. U.MD.D.I.openApplication(str, obj, info);
  9981. }
  9982. }
  9983. break;
  9984. }
  9985. const script1 = document.createElement("script");
  9986. script1.type = "text/javascript";
  9987. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9988. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9989. const script2 = document.createElement("script");
  9990. script2.type = "text/javascript";
  9991. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9992. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9993. const script3 = document.createElement("script");
  9994. script3.type = "text/javascript";
  9995. script3.charset = "UTF-8";
  9996. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9997. const script4 = document.createElement("script");
  9998. script4.type = "text/javascript";
  9999. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10000. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10001. if (_iframe) {
  10002. if (str == 'doc') {
  10003. _iframe = _formdiv.querySelector('iframe')
  10004. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10005. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10006. _iframe.contentWindow.document.body.appendChild(script1);
  10007. _iframe.contentWindow.document.body.appendChild(script2);
  10008. // _iframe.contentWindow.document.body.appendChild(script3);
  10009. _iframe.contentWindow.document.body.appendChild(script4);
  10010. })
  10011. if (onloadListener) {
  10012. _iframe.contentDocument.location.reload()
  10013. } else {
  10014. _iframe.contentDocument.location.reload()
  10015. }
  10016. } else if (str == 'mind') {
  10017. _iframe = _formdiv.querySelector('iframe')
  10018. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10019. _iframe.contentWindow.document.body.appendChild(script1);
  10020. _iframe.contentWindow.document.body.appendChild(script2);
  10021. _iframe.contentWindow.document.body.appendChild(script4);
  10022. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10023. })
  10024. if (onloadListener) {
  10025. _iframe.contentDocument.location.reload()
  10026. } else {
  10027. _iframe.contentDocument.location.reload()
  10028. }
  10029. } else {
  10030. _iframe.onload = () => {
  10031. _iframe.contentWindow.document.body.appendChild(script1);
  10032. _iframe.contentWindow.document.body.appendChild(script2);
  10033. // _iframe.contentWindow.document.body.appendChild(script3);
  10034. _iframe.contentWindow.document.body.appendChild(script4);
  10035. };
  10036. }
  10037. _jie.onclick = async () => {
  10038. let text = ''
  10039. if (aTool == 6) {
  10040. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10041. } else if (aTool == 3) {
  10042. text = await U.MD.D.I.getEditorContent(_iframe);
  10043. }
  10044. _loading.style.display = 'flex'
  10045. console.log(_loading);
  10046. var _ajs = _iframe.contentWindow.document.createElement("script");
  10047. _ajs.type = "text/javascript";
  10048. _ajs.innerHTML =
  10049. // 'console.log(' + _loading + ');\n' +
  10050. 'var _js = document.createElement("script");\n' +
  10051. '_js.type="text/javascript";\n' +
  10052. '_js.charset="UTF-8";\n' +
  10053. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10054. "_js.onload = function(){\n" +
  10055. ' var a = document.getElementsByTagName("img")\n' +
  10056. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10057. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10058. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10059. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10060. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10061. "beforeUpload_shishi(file," +
  10062. "'" +
  10063. _userid +
  10064. "'" +
  10065. ", " +
  10066. "'" +
  10067. _cid +
  10068. "'" +
  10069. ", " +
  10070. "'" +
  10071. _stage +
  10072. "'" +
  10073. ", " +
  10074. "'" +
  10075. _task +
  10076. "'" +
  10077. ", " +
  10078. "'" +
  10079. _tool +
  10080. "'" +
  10081. ", " +
  10082. "'" +
  10083. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10084. "'" +
  10085. ", " +
  10086. "'" +
  10087. aTool +
  10088. "'" +
  10089. ", " +
  10090. "`" +
  10091. text +
  10092. "`" +
  10093. ")\n" +
  10094. " });\n" +
  10095. "}\n" +
  10096. "document.head.appendChild(_js);\n";
  10097. _iframe.contentWindow.document.head.appendChild(_ajs);
  10098. }
  10099. }
  10100. //U.MD.D.I.openClick(str);
  10101. //如果有任务栏信息
  10102. // if (_taskbar) {
  10103. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10104. // }
  10105. }
  10106. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10107. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10108. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10109. _userinfo = US.userInfo, //登录用户信息
  10110. _userid = US.userInfo.userid //登录用户id
  10111. let _iframe;
  10112. let _cid = cid,
  10113. _stage = stage,
  10114. _task = task,
  10115. _tool = tool;
  10116. var _jie = $$("div", {
  10117. "style": {
  10118. "position": "absolute",
  10119. "bottom": "50px",
  10120. "right": "50px",
  10121. "zIndex": "9999",
  10122. "backgroundColor": "#2268bc",
  10123. "color": "#fff",
  10124. "padding": "12px 20px",
  10125. "cursor": "pointer",
  10126. "borderRadius": "4px",
  10127. },
  10128. "innerHTML": "确认并提交"
  10129. })
  10130. let aTool = ''
  10131. let _loading = document.createElement('div')
  10132. _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;"
  10133. // _loading.id = "";
  10134. let _lchild = document.createElement('div')
  10135. let _limg = document.createElement('img')
  10136. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10137. _limg.style = "width: 26px;margin-right: 10px;"
  10138. _lchild.appendChild(_limg)
  10139. let _lspan = document.createElement('span')
  10140. _lspan.innerHTML = "上传中..."
  10141. _lchild.appendChild(_lspan)
  10142. _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%);"
  10143. _loading.appendChild(_lchild)
  10144. var _box = $$('div', {
  10145. "style": {
  10146. "position": "relative",
  10147. "width": "100%",
  10148. "height": "100%",
  10149. },
  10150. })
  10151. _box.appendChild(_loading)
  10152. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10153. switch (str) {
  10154. case "whiteboard":
  10155. aTool = 1;
  10156. _iframe = $$("iframe", {
  10157. "frameborder": "no",
  10158. "border": "0",
  10159. "scrolling ": "no",
  10160. "style": {
  10161. "cssText": "border:0;width:100%;height:100%"
  10162. },
  10163. "src": "https://beta.iwb.cocorobo.cn/"
  10164. })
  10165. _box.appendChild(_iframe);
  10166. _box.appendChild(_jie);
  10167. _formdiv = new U.UF.UI.form(
  10168. "电子白板",
  10169. _box, {
  10170. "id": "whiteboards" + cid + stage + task + tool,
  10171. "style": {
  10172. "width": "90%",
  10173. "height": "90%",
  10174. "overflow": 'hidden'
  10175. },
  10176. "onresize": function () { }
  10177. }, {
  10178. closecallback: function () { }
  10179. }, {
  10180. "style": {
  10181. "height": "36px"
  10182. }
  10183. }).form; //创建窗体
  10184. _taskbar = {
  10185. "id": str + _formdiv.id,
  10186. "style": {
  10187. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10188. },
  10189. "name": "电子白板",
  10190. "forms": _formdiv,
  10191. "click": function () {
  10192. U.MD.D.I.openApplication(str, obj, info);
  10193. }
  10194. }
  10195. break;
  10196. case "mind":
  10197. aTool = 3;
  10198. _iframe = $$("iframe", {
  10199. "frameborder": "no",
  10200. "border": "0",
  10201. "scrolling ": "no",
  10202. "style": {
  10203. "cssText": "border:0;width:100%;height:100%"
  10204. },
  10205. "src": "/kityminder-editor/dist/index.html"
  10206. });
  10207. _box.appendChild(_iframe);
  10208. _box.appendChild(_jie);
  10209. _formdiv = new U.UF.UI.form(
  10210. "思维导图",
  10211. _box, { //"/jsmind/example/demo.html"
  10212. "id": "minds" + cid + stage + task + tool,
  10213. "style": {
  10214. "width": "90%",
  10215. "height": "90%",
  10216. "overflow": 'hidden'
  10217. },
  10218. "onresize": function () { }
  10219. }, {
  10220. closecallback: function () { }
  10221. }, {
  10222. "style": {
  10223. "height": "36px"
  10224. }
  10225. }).form; //创建窗体
  10226. _taskbar = {
  10227. "id": str + _formdiv.id,
  10228. "style": {
  10229. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10230. },
  10231. "name": "思维导图",
  10232. "forms": _formdiv,
  10233. "click": function () {
  10234. U.MD.D.I.openApplication(str, obj, info);
  10235. }
  10236. }
  10237. break;
  10238. case "doc":
  10239. aTool = 6;
  10240. _iframe = $$("iframe", {
  10241. "frameborder": "no",
  10242. "border": "0",
  10243. "scrolling ": "no",
  10244. "style": {
  10245. "cssText": "border:0;width:100%;height:100%"
  10246. },
  10247. "src": "/Office/Word/WordEditArea.htm"
  10248. })
  10249. _box.appendChild(_iframe);
  10250. _box.appendChild(_jie);
  10251. _formdiv = new U.UF.UI.form(
  10252. "协同文档",
  10253. _box, {
  10254. "id": "docs" + cid + stage + task + tool,
  10255. "style": {
  10256. "width": "90%",
  10257. "height": "90%",
  10258. "overflow": 'hidden'
  10259. },
  10260. "onresize": function () { }
  10261. }, {
  10262. closecallback: function () { }
  10263. }, {
  10264. "style": {
  10265. "height": "36px"
  10266. }
  10267. }).form; //创建窗体
  10268. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10269. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10270. })
  10271. _taskbar = {
  10272. "id": str + _formdiv.id,
  10273. "style": {
  10274. "backgroundImage": "url(/img/icon/doc.png)"
  10275. },
  10276. "name": "协同文档",
  10277. "forms": _formdiv,
  10278. "click": function () {
  10279. U.MD.D.I.openApplication(str, obj, info);
  10280. }
  10281. }
  10282. break;
  10283. }
  10284. const script1 = document.createElement("script");
  10285. script1.type = "text/javascript";
  10286. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10287. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10288. const script2 = document.createElement("script");
  10289. script2.type = "text/javascript";
  10290. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10291. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10292. const script3 = document.createElement("script");
  10293. script3.type = "text/javascript";
  10294. script3.charset = "UTF-8";
  10295. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10296. const script4 = document.createElement("script");
  10297. script4.type = "text/javascript";
  10298. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10299. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10300. if (_iframe) {
  10301. if (str == 'doc') {
  10302. _iframe = _formdiv.querySelector('iframe')
  10303. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10304. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10305. _iframe.contentWindow.document.body.appendChild(script1);
  10306. _iframe.contentWindow.document.body.appendChild(script2);
  10307. // _iframe.contentWindow.document.body.appendChild(script3);
  10308. _iframe.contentWindow.document.body.appendChild(script4);
  10309. })
  10310. if (onloadListener) {
  10311. _iframe.contentDocument.location.reload()
  10312. } else {
  10313. _iframe.contentDocument.location.reload()
  10314. }
  10315. } else if (str == 'mind') {
  10316. _iframe = _formdiv.querySelector('iframe')
  10317. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10318. _iframe.contentWindow.document.body.appendChild(script1);
  10319. _iframe.contentWindow.document.body.appendChild(script2);
  10320. _iframe.contentWindow.document.body.appendChild(script4);
  10321. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10322. })
  10323. if (onloadListener) {
  10324. _iframe.contentDocument.location.reload()
  10325. } else {
  10326. _iframe.contentDocument.location.reload()
  10327. }
  10328. } else {
  10329. _iframe.onload = () => {
  10330. _iframe.contentWindow.document.body.appendChild(script1);
  10331. _iframe.contentWindow.document.body.appendChild(script2);
  10332. // _iframe.contentWindow.document.body.appendChild(script3);
  10333. _iframe.contentWindow.document.body.appendChild(script4);
  10334. };
  10335. }
  10336. _jie.onclick = async () => {
  10337. let text = ''
  10338. if (aTool == 6) {
  10339. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10340. } else if (aTool == 3) {
  10341. text = await U.MD.D.I.getEditorContent(_iframe);
  10342. }
  10343. _loading.style.display = 'flex'
  10344. console.log(_loading);
  10345. var _ajs = _iframe.contentWindow.document.createElement("script");
  10346. _ajs.type = "text/javascript";
  10347. _ajs.innerHTML =
  10348. // 'console.log(' + _loading + ');\n' +
  10349. 'var _js = document.createElement("script");\n' +
  10350. '_js.type="text/javascript";\n' +
  10351. '_js.charset="UTF-8";\n' +
  10352. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10353. "_js.onload = function(){\n" +
  10354. ' var a = document.getElementsByTagName("img")\n' +
  10355. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10356. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10357. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10358. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10359. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10360. "beforeUpload_shishi(file," +
  10361. "'" +
  10362. _userid +
  10363. "'" +
  10364. ", " +
  10365. "'" +
  10366. _cid +
  10367. "'" +
  10368. ", " +
  10369. "'" +
  10370. _stage +
  10371. "'" +
  10372. ", " +
  10373. "'" +
  10374. _task +
  10375. "'" +
  10376. ", " +
  10377. "'" +
  10378. _tool +
  10379. "'" +
  10380. ", " +
  10381. "'" +
  10382. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10383. "'" +
  10384. ", " +
  10385. "'" +
  10386. aTool +
  10387. "'" +
  10388. ", " +
  10389. "`" +
  10390. text +
  10391. "`" +
  10392. ")\n" +
  10393. " });\n" +
  10394. "}\n" +
  10395. "document.head.appendChild(_js);\n";
  10396. _iframe.contentWindow.document.head.appendChild(_ajs);
  10397. }
  10398. }
  10399. //U.MD.D.I.openClick(str);
  10400. //如果有任务栏信息
  10401. // if (_taskbar) {
  10402. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10403. // }
  10404. }
  10405. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10406. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10407. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10408. _userinfo = US.userInfo, //登录用户信息
  10409. _userid = US.userInfo.userid //登录用户id
  10410. let _iframe;
  10411. let _cid = cid,
  10412. _stage = stage,
  10413. _task = task,
  10414. _tool = tool;
  10415. var _jie = $$("div", {
  10416. "style": {
  10417. "position": "absolute",
  10418. "bottom": "50px",
  10419. "right": "50px",
  10420. "zIndex": "9999",
  10421. "backgroundColor": "#2268bc",
  10422. "color": "#fff",
  10423. "padding": "12px 20px",
  10424. "cursor": "pointer",
  10425. "borderRadius": "4px",
  10426. },
  10427. "innerHTML": "上传模板"
  10428. })
  10429. let aTool = ''
  10430. let _loading = document.createElement('div')
  10431. _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;"
  10432. // _loading.id = "";
  10433. let _lchild = document.createElement('div')
  10434. let _limg = document.createElement('img')
  10435. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10436. _limg.style = "width: 26px;margin-right: 10px;"
  10437. _lchild.appendChild(_limg)
  10438. let _lspan = document.createElement('span')
  10439. _lspan.innerHTML = "上传中..."
  10440. _lchild.appendChild(_lspan)
  10441. _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%);"
  10442. _loading.appendChild(_lchild)
  10443. var _box = $$('div', {
  10444. "style": {
  10445. "position": "relative",
  10446. "width": "100%",
  10447. "height": "100%",
  10448. },
  10449. })
  10450. _box.appendChild(_loading)
  10451. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10452. switch (str) {
  10453. case "whiteboard":
  10454. aTool = 1;
  10455. _iframe = $$("iframe", {
  10456. "frameborder": "no",
  10457. "border": "0",
  10458. "scrolling ": "no",
  10459. "style": {
  10460. "cssText": "border:0;width:100%;height:100%"
  10461. },
  10462. "src": "https://beta.iwb.cocorobo.cn/"
  10463. })
  10464. _box.appendChild(_iframe);
  10465. _box.appendChild(_jie);
  10466. _formdiv = new U.UF.UI.form(
  10467. "电子白板",
  10468. _box, {
  10469. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10470. "style": {
  10471. "width": "90%",
  10472. "height": "90%",
  10473. "overflow": 'hidden'
  10474. },
  10475. "onresize": function () { }
  10476. }, {
  10477. closecallback: function () { }
  10478. }, {
  10479. "style": {
  10480. "height": "36px"
  10481. }
  10482. }).form; //创建窗体
  10483. _taskbar = {
  10484. "id": str + _formdiv.id,
  10485. "style": {
  10486. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10487. },
  10488. "name": "电子白板",
  10489. "forms": _formdiv,
  10490. "click": function () {
  10491. U.MD.D.I.openApplication(str, obj, info);
  10492. }
  10493. }
  10494. break;
  10495. case "mind":
  10496. aTool = 3;
  10497. _iframe = $$("iframe", {
  10498. "frameborder": "no",
  10499. "border": "0",
  10500. "scrolling ": "no",
  10501. "style": {
  10502. "cssText": "border:0;width:100%;height:100%"
  10503. },
  10504. "src": "/kityminder-editor/dist/index.html"
  10505. });
  10506. _box.appendChild(_iframe);
  10507. _box.appendChild(_jie);
  10508. _formdiv = new U.UF.UI.form(
  10509. "思维导图",
  10510. _box, { //"/jsmind/example/demo.html"
  10511. "id": "minds_Yu" + cid + stage + task + tool,
  10512. "style": {
  10513. "width": "90%",
  10514. "height": "90%",
  10515. "overflow": 'hidden'
  10516. },
  10517. "onresize": function () { }
  10518. }, {
  10519. closecallback: function () { }
  10520. }, {
  10521. "style": {
  10522. "height": "36px"
  10523. }
  10524. }).form; //创建窗体
  10525. _taskbar = {
  10526. "id": str + _formdiv.id,
  10527. "style": {
  10528. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10529. },
  10530. "name": "思维导图",
  10531. "forms": _formdiv,
  10532. "click": function () {
  10533. U.MD.D.I.openApplication(str, obj, info);
  10534. }
  10535. }
  10536. break;
  10537. case "doc":
  10538. aTool = 6;
  10539. _iframe = $$("iframe", {
  10540. "frameborder": "no",
  10541. "border": "0",
  10542. "scrolling ": "no",
  10543. "style": {
  10544. "cssText": "border:0;width:100%;height:100%"
  10545. },
  10546. "src": "/Office/Word/WordEditArea.htm"
  10547. })
  10548. _box.appendChild(_iframe);
  10549. _box.appendChild(_jie);
  10550. _formdiv = new U.UF.UI.form(
  10551. "协同文档",
  10552. _box, {
  10553. "id": "docs_Yu" + cid + stage + task + tool,
  10554. "style": {
  10555. "width": "90%",
  10556. "height": "90%",
  10557. "overflow": 'hidden'
  10558. },
  10559. "onresize": function () { }
  10560. }, {
  10561. closecallback: function () { }
  10562. }, {
  10563. "style": {
  10564. "height": "36px"
  10565. }
  10566. }).form; //创建窗体
  10567. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10568. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10569. })
  10570. _taskbar = {
  10571. "id": str + _formdiv.id,
  10572. "style": {
  10573. "backgroundImage": "url(/img/icon/doc.png)"
  10574. },
  10575. "name": "协同文档",
  10576. "forms": _formdiv,
  10577. "click": function () {
  10578. U.MD.D.I.openApplication(str, obj, info);
  10579. }
  10580. }
  10581. break;
  10582. case "CocoPi":
  10583. aTool = 57;
  10584. _iframe = $$("iframe", {
  10585. "allowpaymentrequest": "allowpaymentrequest",
  10586. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10587. "webkitallowfullscreen": "",
  10588. "mozallowfullscreen": "",
  10589. "frameborder": "no",
  10590. "border": "0",
  10591. "scrolling ": "no",
  10592. "style": {
  10593. "cssText": "border:0;width:100%;height:100%"
  10594. },
  10595. "src": "https://pi.cocorobo.cn/"
  10596. })
  10597. _box.appendChild(_iframe);
  10598. _box.appendChild(_jie);
  10599. _formdiv = new U.UF.UI.form(
  10600. "CocoPi",
  10601. _box, {
  10602. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10603. "style": {
  10604. "width": "90%",
  10605. "height": "90%",
  10606. "overflow": 'hidden'
  10607. },
  10608. "onresize": function () { }
  10609. }, {
  10610. closecallback: function () { }
  10611. }, {
  10612. "style": {
  10613. "height": "36px"
  10614. }
  10615. }).form; //创建窗体
  10616. _taskbar = {
  10617. "id": str + _formdiv.id,
  10618. "style": {
  10619. "backgroundImage": "url(/img/icon/cocopi.png)"
  10620. },
  10621. "name": "CocoPi",
  10622. "forms": _formdiv,
  10623. "click": function () {
  10624. U.MD.D.I.openApplication(str, obj, info);
  10625. }
  10626. }
  10627. break;
  10628. }
  10629. if (_iframe) {
  10630. if (str == 'doc') {
  10631. _iframe = _formdiv.querySelector('iframe')
  10632. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10633. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10634. })
  10635. if (onloadListener) {
  10636. _iframe.contentDocument.location.reload()
  10637. } else {
  10638. _iframe.contentDocument.location.reload()
  10639. }
  10640. } else if (str == 'mind') {
  10641. _iframe = _formdiv.querySelector('iframe')
  10642. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10643. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10644. })
  10645. if (onloadListener) {
  10646. _iframe.contentDocument.location.reload()
  10647. } else {
  10648. _iframe.contentDocument.location.reload()
  10649. }
  10650. } else if (str == 'whiteboard') {
  10651. _iframe = _formdiv.querySelector('iframe')
  10652. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10653. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10654. })
  10655. // if (onloadListener) {
  10656. // try {
  10657. // _iframe.src += "?cocorobo="+new Date().getTime()
  10658. // _iframe.contentWindow.document.location.reload()
  10659. // } catch (error) {
  10660. // }
  10661. // } else {
  10662. // _iframe.contentDocument.location.reload()
  10663. // }
  10664. } else if (str == 'CocoPi') {
  10665. _iframe = _formdiv.querySelector('iframe')
  10666. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10667. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10668. })
  10669. if (onloadListener) {
  10670. _iframe.contentDocument.location.reload()
  10671. } else {
  10672. _iframe.contentDocument.location.reload()
  10673. }
  10674. } else {
  10675. _iframe.onload = () => { };
  10676. }
  10677. _jie.onclick = async () => {
  10678. let text = ''
  10679. let type = '2'
  10680. if (aTool == 1) {
  10681. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10682. type = '3'
  10683. } else if (aTool == 6) {
  10684. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10685. type = '1'
  10686. } else if (aTool == 3) {
  10687. text = await U.MD.D.I.getEditorContent(_iframe);
  10688. type = '2'
  10689. } else if (aTool == 57) {
  10690. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10691. type = '4'
  10692. }
  10693. _loading.style.display = 'flex'
  10694. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10695. }
  10696. }
  10697. //U.MD.D.I.openClick(str);
  10698. //如果有任务栏信息
  10699. // if (_taskbar) {
  10700. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10701. // }
  10702. }
  10703. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10704. var xmlhttp;
  10705. var Mac, Sn, DeviceId
  10706. if (window.XMLHttpRequest) {
  10707. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10708. xmlhttp = new XMLHttpRequest();
  10709. } else {
  10710. // IE6, IE5 浏览器执行代码
  10711. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10712. }
  10713. xmlhttp.onreadystatechange = function () {
  10714. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10715. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10716. // resolve(res.value[0][0].text);
  10717. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10718. }
  10719. }
  10720. }
  10721. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10722. xmlhttp.send();
  10723. }
  10724. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10725. var xmlhttp;
  10726. var Mac, Sn, DeviceId
  10727. if (window.XMLHttpRequest) {
  10728. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10729. xmlhttp = new XMLHttpRequest();
  10730. } else {
  10731. // IE6, IE5 浏览器执行代码
  10732. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10733. }
  10734. xmlhttp.onreadystatechange = function () {
  10735. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10736. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10737. // resolve(res.value[0][0].text);
  10738. if (type == '2') {
  10739. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10740. } else if (type == '3') {
  10741. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10742. } else if (type == '4') {
  10743. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10744. }
  10745. } else {
  10746. if (type == '2') {
  10747. iframe.contentWindow.editor.minder.importData('json', '')
  10748. } else if (type == '3') {
  10749. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10750. } else if (type == '4') {
  10751. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10752. }
  10753. }
  10754. }
  10755. }
  10756. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10757. xmlhttp.send();
  10758. }
  10759. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10760. var xmlhttp;
  10761. var Mac, Sn, DeviceId
  10762. if (window.XMLHttpRequest) {
  10763. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10764. xmlhttp = new XMLHttpRequest();
  10765. } else {
  10766. // IE6, IE5 浏览器执行代码
  10767. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10768. }
  10769. xmlhttp.onreadystatechange = function () {
  10770. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10771. if (xmlhttp.response) {
  10772. // resolve(res.value[0][0].text);
  10773. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10774. // $(fileInput).val('');
  10775. // });
  10776. span.innerHTML = '上传成功'
  10777. setTimeout(() => {
  10778. loading.style.display = 'none'
  10779. }, 1000);
  10780. }
  10781. }
  10782. }
  10783. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10784. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10785. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10786. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10787. // 设置请求头,表示请求体的编码格式
  10788. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10789. // 设置请求体,使用url-encoded格式的数据
  10790. }
  10791. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10792. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10793. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10794. _userinfo = US.userInfo, //登录用户信息
  10795. _userid = US.userInfo.userid //登录用户id
  10796. let _iframe;
  10797. let _cid = cid,
  10798. _stage = stage,
  10799. _task = task,
  10800. _tool = tool;
  10801. var _jie = $$("div", {
  10802. "style": {
  10803. "position": "absolute",
  10804. "bottom": "50px",
  10805. "right": "50px",
  10806. "zIndex": "9999",
  10807. "backgroundColor": "#2268bc",
  10808. "color": "#fff",
  10809. "padding": "12px 20px",
  10810. "cursor": "pointer",
  10811. "borderRadius": "4px",
  10812. },
  10813. "innerHTML": "提交作业"
  10814. })
  10815. let aTool = ''
  10816. let _loading = document.createElement('div')
  10817. _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;"
  10818. // _loading.id = "";
  10819. let _lchild = document.createElement('div')
  10820. let _limg = document.createElement('img')
  10821. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10822. _limg.style = "width: 26px;margin-right: 10px;"
  10823. _lchild.appendChild(_limg)
  10824. let _lspan = document.createElement('span')
  10825. _lspan.innerHTML = "上传中..."
  10826. _lchild.appendChild(_lspan)
  10827. _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%);"
  10828. _loading.appendChild(_lchild)
  10829. var _box = $$('div', {
  10830. "style": {
  10831. "position": "relative",
  10832. "width": "100%",
  10833. "height": "100%",
  10834. },
  10835. })
  10836. _box.appendChild(_loading)
  10837. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10838. switch (str) {
  10839. case "CocoPi":
  10840. aTool = 57;
  10841. _iframe = $$("iframe", {
  10842. "allowpaymentrequest": "allowpaymentrequest",
  10843. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10844. "webkitallowfullscreen": "",
  10845. "mozallowfullscreen": "",
  10846. "frameborder": "no",
  10847. "border": "0",
  10848. "scrolling ": "no",
  10849. "style": {
  10850. "cssText": "border:0;width:100%;height:100%"
  10851. },
  10852. "src": "https://pi.cocorobo.cn/"
  10853. })
  10854. _box.appendChild(_iframe);
  10855. _box.appendChild(_jie);
  10856. _formdiv = new U.UF.UI.form(
  10857. "CocoPi",
  10858. _box, {
  10859. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10860. "style": {
  10861. "width": "90%",
  10862. "height": "90%",
  10863. "overflow": 'hidden'
  10864. },
  10865. "onresize": function () { }
  10866. }, {
  10867. closecallback: function () { }
  10868. }, {
  10869. "style": {
  10870. "height": "36px"
  10871. }
  10872. }).form; //创建窗体
  10873. _taskbar = {
  10874. "id": str + _formdiv.id,
  10875. "style": {
  10876. "backgroundImage": "url(/img/icon/cocopi.png)"
  10877. },
  10878. "name": "CocoPi",
  10879. "forms": _formdiv,
  10880. "click": function () {
  10881. U.MD.D.I.openApplication(str, obj, info);
  10882. }
  10883. }
  10884. break;
  10885. }
  10886. if (_iframe) {
  10887. if (str == 'CocoPi') {
  10888. _iframe = _formdiv.querySelector('iframe')
  10889. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10890. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10891. })
  10892. if (onloadListener) {
  10893. _iframe.contentDocument.location.reload()
  10894. } else {
  10895. _iframe.contentDocument.location.reload()
  10896. }
  10897. }
  10898. _jie.onclick = async () => {
  10899. let text = ''
  10900. if (aTool == 57) {
  10901. text = _iframe.contentWindow.getLoadXmlStr()
  10902. }
  10903. _loading.style.display = 'flex'
  10904. console.log(_loading);
  10905. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10906. _loading.style.display = 'none'
  10907. let _div = document.createElement('div')
  10908. _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;"
  10909. let _inner = document.createElement('div')
  10910. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10911. _inner.innerHTML = "上传成功"
  10912. _div.appendChild(_inner)
  10913. _iframe.contentWindow.window.document.body.appendChild(_div)
  10914. _div.onclick = () => {
  10915. _iframe.contentWindow.window.document.body.removeChild(_div)
  10916. }
  10917. setTimeout(() => {
  10918. _iframe.contentWindow.window.document.body.removeChild(_div)
  10919. }, 1000);
  10920. }, [], { "type": "POST", "withCredentials": true });
  10921. }
  10922. }
  10923. }
  10924. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10925. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10926. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10927. _userid = student.userid, //登录用户id
  10928. _username = student.student //用户名字
  10929. let _iframe;
  10930. let _cid = cid,
  10931. _stage = stage,
  10932. _task = task,
  10933. _tool = tool;
  10934. var _jie = $$("div", {
  10935. "style": {
  10936. "position": "absolute",
  10937. "bottom": "50px",
  10938. "right": "50px",
  10939. "zIndex": "9999",
  10940. "backgroundColor": "#2268bc",
  10941. "color": "#fff",
  10942. "padding": "12px 20px",
  10943. "cursor": "pointer",
  10944. "borderRadius": "4px",
  10945. },
  10946. "innerHTML": "提交作业"
  10947. })
  10948. let aTool = ''
  10949. let _loading = document.createElement('div')
  10950. _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;"
  10951. // _loading.id = "";
  10952. let _lchild = document.createElement('div')
  10953. let _limg = document.createElement('img')
  10954. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10955. _limg.style = "width: 26px;margin-right: 10px;"
  10956. _lchild.appendChild(_limg)
  10957. let _lspan = document.createElement('span')
  10958. _lspan.innerHTML = "上传中..."
  10959. _lchild.appendChild(_lspan)
  10960. _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%);"
  10961. _loading.appendChild(_lchild)
  10962. var _box = $$('div', {
  10963. "style": {
  10964. "position": "relative",
  10965. "width": "100%",
  10966. "height": "100%",
  10967. },
  10968. })
  10969. _box.appendChild(_loading)
  10970. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10971. switch (str) {
  10972. case "CocoPi":
  10973. aTool = 57;
  10974. _iframe = $$("iframe", {
  10975. "allowpaymentrequest": "allowpaymentrequest",
  10976. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10977. "webkitallowfullscreen": "",
  10978. "mozallowfullscreen": "",
  10979. "frameborder": "no",
  10980. "border": "0",
  10981. "scrolling ": "no",
  10982. "style": {
  10983. "cssText": "border:0;width:100%;height:100%"
  10984. },
  10985. "src": "https://pi.cocorobo.cn/"
  10986. })
  10987. _box.appendChild(_iframe);
  10988. _box.appendChild(_jie);
  10989. _formdiv = new U.UF.UI.form(
  10990. "CocoPi-" + _username,
  10991. _box, {
  10992. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10993. "style": {
  10994. "width": "90%",
  10995. "height": "90%",
  10996. "overflow": 'hidden'
  10997. },
  10998. "onresize": function () { }
  10999. }, {
  11000. closecallback: function () { }
  11001. }, {
  11002. "style": {
  11003. "height": "36px"
  11004. }
  11005. }).form; //创建窗体
  11006. _taskbar = {
  11007. "id": str + _formdiv.id,
  11008. "style": {
  11009. "backgroundImage": "url(/img/icon/cocopi.png)"
  11010. },
  11011. "name": "CocoPi",
  11012. "forms": _formdiv,
  11013. "click": function () {
  11014. U.MD.D.I.openApplication(str, obj, info);
  11015. }
  11016. }
  11017. break;
  11018. }
  11019. if (_iframe) {
  11020. if (str == 'CocoPi') {
  11021. _iframe = _formdiv.querySelector('iframe')
  11022. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11023. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11024. })
  11025. if (onloadListener) {
  11026. _iframe.contentDocument.location.reload()
  11027. } else {
  11028. _iframe.contentDocument.location.reload()
  11029. }
  11030. }
  11031. _jie.onclick = async () => {
  11032. let text = ''
  11033. if (aTool == 57) {
  11034. text = _iframe.contentWindow.getLoadXmlStr()
  11035. }
  11036. _loading.style.display = 'flex'
  11037. console.log(_loading);
  11038. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11039. _loading.style.display = 'none'
  11040. let _div = document.createElement('div')
  11041. _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;"
  11042. let _inner = document.createElement('div')
  11043. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11044. _inner.innerHTML = "上传成功"
  11045. _div.appendChild(_inner)
  11046. _iframe.contentWindow.window.document.body.appendChild(_div)
  11047. _div.onclick = () => {
  11048. _iframe.contentWindow.window.document.body.removeChild(_div)
  11049. }
  11050. setTimeout(() => {
  11051. _iframe.contentWindow.window.document.body.removeChild(_div)
  11052. }, 1000);
  11053. }, [], { "type": "POST", "withCredentials": true });
  11054. }
  11055. }
  11056. }
  11057. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11058. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11059. if (res.value[0].length > 0) {
  11060. if (atool == 57) {
  11061. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11062. }
  11063. } else {
  11064. if (atool == 57) {
  11065. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11066. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11067. }
  11068. }
  11069. }, [], { "type": "POST", "withCredentials": true });
  11070. }
  11071. U.MD.D.addOp = function(text,type,time){
  11072. var userInfo = US.userInfo;
  11073. if(Object.keys(userInfo).length !== 0){
  11074. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11075. }, [], { "type": "POST", "withCredentials": true });
  11076. }
  11077. }